7

Я использую aria2 с этими псевдонимами:

cat .bashrc
alias download='while true; do timeout -s 9 1260 aria2c -j 10 *.torrent --bt-require-crypto=true --lowest-speed-limit=1024 --disable-ipv6=true --seed-time=0 --enable-rpc=false; sleep 5; done'
alias seed='while true; do timeout -s 9 1260 aria2c --bt-require-crypto=true --check-integrity=false --bt-seed-unverified=true --disable-ipv6=true -d . *.torrent --seed-time=99999 --seed-ratio=100.0; sleep 5; done'

Я использую "download" для загрузки .torrent-файлов в dir, а "seed" для заполнения.

ВОПРОС: Как я могу оптимизировать псевдоним посева? Использую ли я "лучшие" параметры для посева? (напр .: у меня есть несколько сотен файлов .torrent в директории "seed")

0