Page 1 of 1

net-misc/aria 似乎不能啟動???

Posted: Mon May 26, 2003 11:40 pm
by breaking
不知道有人試過net-misc/aria麼???

因為我執行aria後,似乎都不會動.... :?

用top看看,而aria的%CPU卻一直跑在99%的說.

我也試過rm -rf ~/.aria,可是重新執行aria後,結果還是一樣的說....

p.s.有人可以成功執行aria麼???

p.s.不過#aria -h,還是正常的....怪....

Posted: Tue May 27, 2003 12:58 am
by 【Palatis】
沒用過. 我都用 wget + shell script.

Posted: Sat May 31, 2003 7:17 am
by breaking
【Palatis】 wrote:沒用過. 我都用 wget + shell script.
突然很想看看Palatis兄的script<---可以借我看看麼....:oops:

因為我最近用了一些p2p的gui軟體....都不是很滿意的說.... :(

Posted: Sat May 31, 2003 2:11 pm
by 【Palatis】
breaking wrote:
【Palatis】 wrote:沒用過. 我都用 wget + shell script.
突然很想看看Palatis兄的script<---可以借我看看麼....:oops:
因為我最近用了一些p2p的gui軟體....都不是很滿意的說.... :(
隨便先弄個文字檔...
  • list.txt

Code: Select all

http://somewhere/path/to/something.jpg
http://somewhere/path/to/something2.jpg
http://somewhere/path/to/something3.jpg
http://somewhere/path/to/something4.jpg
然後直接

Code: Select all

$ wget -i ./list.txt
如果要排程, 就丟進 atd 裡面. 如果丟進 atd, path 要用絕對路徑 (比較保險).

Posted: Sat May 31, 2003 5:51 pm
by breaking
【Palatis】 wrote: 隨便先弄個文字檔...
  • list.txt

Code: Select all

http://somewhere/path/to/something.jpg
http://somewhere/path/to/something2.jpg
http://somewhere/path/to/something3.jpg
http://somewhere/path/to/something4.jpg
然後直接

Code: Select all

$ wget -i ./list.txt
如果要排程, 就丟進 atd 裡面. 如果丟進 atd, path 要用絕對路徑 (比較保險).
唔.... 8)

感謝Palatis兄的分享啦

不過,上面的方法我試過,不過每次都要編list.txt檔<--要一直貼來貼去的,很麻煩的說....指路徑啦

所以後來我就改成用下面的script

那我也分享我的script好囉

Code: Select all

#/bin/sh
getpath=""
filename="ABC"
bn=1
fn=3
until [ "$fn" -lt "$bn" ] 
do
    wget ${getpath}${filename}${fn}
    fn=$(( $fn - 1 )) 
done
參數說明如下
${getpath}--->路徑
${filename}--->檔名的固定部份
${bn}--->檔名的變動部份之起始值
${fn}--->檔名的變動部份之最終值

以Palatis兄的list.txt為例
EX:
${getpath}-->http://somewhere/path/to/
${filename}-->something[/color=green]
${bn}-->2[/color=green]
${fn}-->4[/color=green]

p.s.不過something.jpg<--這個要手動加入的說.... :oops:

看看有沒有那位有愛心的人兄幫我改的更漂亮一點.... :)

或者有沒有人願意提供更好的script的說....期待中....嘿嘿

Posted: Sat May 31, 2003 9:18 pm
by 【Palatis】
你不會要抓那種連接檔吧 = =
somefile.r00 somefile.r01..... somefile.r99?

如果是這樣的話, 我就直接用 for 了...

Posted: Sat May 31, 2003 9:53 pm
by breaking
【Palatis】 wrote:你不會要抓那種連接檔吧 = =
somefile.r00 somefile.r01..... somefile.r99?

如果是這樣的話, 我就直接用 for 了...
哇....被發現囉.... :oops:

題外話,剛剛裝上Getleft.tcl,可是發現中文的介面出不來的說..... :?

要如何設定在tcl/tk的預設中文字型呢???

p.s.找了半天還是找不到,只找到一個/usr/lib/tcl8.3/encoding/big5.enc檔

Posted: Sun Jun 01, 2003 12:46 am
by paar
ㄟ..請問一下..
不是在說 p2p 嗎?
用 wget 可以抓 p2p 的分享軟體嗎?
請教請教..

Posted: Sun Jun 01, 2003 1:53 am
by 【Palatis】
paar wrote:ㄟ..請問一下..
不是在說 p2p 嗎?
用 wget 可以抓 p2p 的分享軟體嗎?
請教請教..
wget 應該不能抓 p2p 吧... aria 也不是 p2p 軟體.

Posted: Sun Jun 01, 2003 1:59 am
by paar
【Palatis】 wrote:wget 應該不能抓 p2p 吧... aria 也不是 p2p 軟體.
那我是被這些話誤導了..
【Palatis】 寫到:
沒用過. 我都用 wget + shell script.

突然很想看看Palatis兄的script<---可以借我看看麼....

因為我最近用了一些p2p的gui軟體....都不是很滿意的說....

Posted: Sun Jun 01, 2003 3:46 am
by breaking
抱歉囉....不小心就離題離得遠了些.... :oops:

不過,說實在的,這些p2p的gui軟體都好像很容易掛

不知道有沒有在console下可用的p2p軟體呢?

Posted: Sun Jun 01, 2003 10:51 pm
by paar
breaking wrote:抱歉囉....不小心就離題離得遠了些.... :oops:

不過,說實在的,這些p2p的gui軟體都好像很容易掛

不知道有沒有在console下可用的p2p軟體呢?
我也是這麼想.. gui 的實在太容易 crash 了..
有時還會拖垮系統..
等有時間來試試 palatis 兄推薦的 mldonkey 看看有沒有好一點..

Posted: Thu Jun 05, 2003 7:24 am
by 【Palatis】
paar wrote:
breaking wrote:抱歉囉....不小心就離題離得遠了些.... :oops:

不過,說實在的,這些p2p的gui軟體都好像很容易掛

不知道有沒有在console下可用的p2p軟體呢?
我也是這麼想.. gui 的實在太容易 crash 了..
有時還會拖垮系統..
等有時間來試試 palatis 兄推薦的 mldonkey 看看有沒有好一點..
mldonkey 很吃 ram.
跑一跑吃掉兩三百.

Posted: Thu Jun 05, 2003 8:34 am
by breaking
【Palatis】 wrote:mldonkey 很吃 ram.
跑一跑吃掉兩三百.
嗚~~我的 ram 只有 128 的說 .... :cry: