rtorrent 附種子與下載

rtorrent 附種子與下載

我使用 rtorrent 已經很久了。我是粉絲。這是有史以​​來最偉大的控制台 torrent 管理員之一。

但是,我找不到繼續播種的好方法。

我的下載分為兩個目錄,DownloadsSeeds.有時我會同時保留兩個 rtorrent 實例,一個用於Downloads另一個Seeds.

任何 torrent 用戶端都會非常嚴重地佔用磁碟操作。我有一些防止磁碟卡住的技巧:

nice -n 20 chrt -i 0 ionice -c3 /usr/bin/rtorrent -o upload_rate=25000,download_rate=50000,max_uploads_global=100,max_peers=50,max_memory_usage=805306368

透過這種方式prio,rtorrent 是系統中最低的一種。無論如何,兩個實例競爭並時不時地非常邪惡地佔用我的磁碟。我的 bash shell 會因為列出大目錄、開啟檔案進行編輯等而掛起...

我正在嘗試找到一種方法來僅保留一個 rtorrent 實例並按目錄DownloadsSeeds.

我怎麼能以這樣的方式啟動 rtorrent,使其不會打亂我的下載和種子?

答案1

我找到了答案:

schedule = tied_directory,10,10,start_tied=
schedule = untied_directory,10,10,close_untied=
schedule = watch_directory_1,10,10,"load_start=/Downloads/torrents/*.torrent,d.set_directory=/Downloads/"
schedule = watch_directory_2,10,10,"load_start=/Downloads/Seed/torrents/*.torrent,d.set_directory=/Downloads/Seed/"

相關內容