linux下BT制作(测试)

以下操作是在一台机器上做的
 
1.安装python
rpm -qa | grep python    //我这里用系统自带的python
2.安装BitTorrent
tar zxvf /home/aa/BitTorrent-3.4.2.tar.gz -C /usr/src/
cd /usr/src/BitTorrent-3.4.2/
python setup.py install
3.启动一个tracker
mkdir -p /bt/log/
bttrack.py --port 6969 --dfile dstate > /bt/log/bt.log &
4.制作一个bt发布文件
btmakemetafile.py /aa/aa.exe http://IP:6969/announce      //IP为tracker服务器IP,我这里是本机
5.生成第一个种子
btdownloadheadless.py /aa/aa.exe.torrent --saveas /aa/aa.exe &     //后台执行,不要关闭

(如果要发布多个种子,可以把种子和原文件放在同一目录下,然后使用btaunchmany.py命令,例如:btaunchmany.py /aa/ > /dev/null &)

OK~

你可能感兴趣的:(linux,职场,休闲,BitTorrent,linuxBT)