赞
踩
必须有python2.*以上的环境
1、安装bittorrent
BitTorrentg下载
tar zxvf BitTorrent-3.4.2.tar.gz cd BitTorrent-3.4.2 python setup.py install
2、启动Bit服务
./bttrack.py --port 6969 --dfile dstate >>/var/log/bttrack.log #表示打开6969并记录log
3、制作BT发布文件
./btmakemetafile.py /data/www/client/myfile.exe http://xx.xx.xx:6969/announce #btmakemetafile.py 目录或者文件 track服务器地址和端口
4、启动原始下载服务(seed)
nohup ./btdownloadheadless.py --max_allow_in 20 --max_upload_rate 500 --minport 6888 --maxport 6888 /data/www/client/myfile.exe.torrent --saveas /data/www/client/myfile.exe >/dev/null &
/data/www/client/myfile.exe.torrent 发布文件的位置
/data/www/client/myfile.exe 实际位置
--maxallow 20 指这个种子最多可以接受20个连接
--maxupload_rate 500 指这个种子最大的可以接受下载的带宽 500 KB(byte)/s,这样可以控制下载带宽。
--minport 6888 --maxport 6888 最大最小监听端口,这样写就是说种子只监听6888端口,这样方便在防火墙上开端口。
原文:https://blog.imdst.com/linux-xia-btfu-wu-qi-da-jian/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。