Linux学习|Gentoo/Arch/FreeBSD

rtorrent

2015-12-18  本文已影响1900人  孤逐王

rtorrent介绍

rtorrent是Linux下的bt下载软件,由于支持DHT网络,可以很好的于迅雷和Bitcomet的用户进行资源共享,所以很适合国内网络环境,下载速度极快.

配置:

因安装过程不自动生成配置文件,要手动在用户根目录新建~/.rtorrent.rc文件。
其内容大体如下:

#最小允许peer数
min_peers = 3
#最大允许peer数
max_peers = 500
#最大同时上传用户数
max_uploads = 10
#最大下载950k/s  光纤用户使用,adsl请酌情修改
download_rate = 950
#最大上传200k/s  光纤用户使用,adsl请酌情修改
upload_rate = 200

#下载目录
directory = ~/Downloads
#下载历史目录(此目录中包括下载进度信息和DHT节点缓存)
session = ~/Downloads/session
#(配置自动监视,把bt种子扔进~/Downloads/torrents目录就自动下载)
schedule = watch_directory,5,5,load_start=~/Downloads/torrents/*.torrent
#(配置自动监视,把bt种子从~/Downloads/torrents目录拿走就自动停止下载) 
schedule = untied_directory,5,5,stop_untied=
#硬盘空间低于100M就自动停止一切下载)
schedule = low_diskspace,5,60,close_low_diskspace=100M
#(在总上传量达到200M的情况下上传/下载率达到200%,或者在总上传量不足200M情况下上传/下载率达到2000%,则停止上传)
# schedule = ratio,60,60,"stop_on_ratio=200,200M,2000"

#bt监听端口
port_range = 9400-9500
#随机从上面范围内选择端口
port_random = yes
######开启DHT######
dht = on
#DHT所用的UDP端口
dht_port = 9501   
#种子交换功能
peer_exchange = yes

#(上传缓存,每个种子10M,小内存用户请酌情修改)
send_buffer_size = 10M 
#(下载缓存,每个种子20M,小内存用户请酌情修改)
receive_buffer_size = 20M
#(修改编码以避免中文乱码)
encoding_list=UTF-8

使用:

命令行输入rtorrent 即可

gentoo ~ # rtorrent 

rtorrent就会自动下载~/Downloads/torrents目录下面的所有bt种子
退出下载 CTRL+q

注意: ^s 和 ^q 在 shell 里面经常用来控制屏幕的暂停,这会和 rTorrent 发生冲突,用 stty -a 来检查是否已经被使用,删除的办法是:
stty stop undef
stty start undef
before running rTorrent (or reattaching to screen) to leave them undefined. You could also replace undef with some other code — ^p, say. ^d also usually sends end-of-file but ncurses passes this through to rTorrent. stty eof undef if you are worried.
To fix this, you may also toggle the flow control in screen with ^a ^f until screen displays “-flow” in the bottom left corner.

Global Keys

上一篇下一篇

猜你喜欢

热点阅读