- 论坛徽章:
- 0
|
系统为CentOS5.3,,BT服务器软件为:BitTorrent
首先升级一下python
yum install python -y
再下载BitTorrent
wget
http://download.bittorrent.com/dl/archive/BitTorrent-3.9.1.tar.gz
tar -zxvf BitTorrent-3.9.1.tar.gz
cd BitTorrent-3.9.1
python setup.py install (安装)
[root@localhost ~]# cat bt.sh
#!/bin/bash
cd /usr/bin;python bttrack.py --port 6969 --dfile dfile.log& (运行脚本)
再打开网页
http://ip:6969/
就可以显示:
BitTorrent download info
- tracker version: 3.9.1
- server time: 2009-06-19 05:44 UTC
not tracking any files yet...
种子制作:
[root@localhost ~]# btmaketorrent.py
http://10.88.12.89:6969/announce
/root/mysql-5.1.31.tar.gz
对mysql创建一个种子
[root@localhost ~]# ls -al mysql-5.1.31.tar.gz*
-rw-r--r-- 1 root root 30842205 06-16 11:28 mysql-5.1.31.tar.gz
-rw-r--r-- 1 root root 2525 06-19 13:49 mysql-5.1.31.tar.gz.torrent
发布种子:
[root@localhost ~]# btdownloadheadless.py /root/mysql-5.1.31.tar.gz.torrent --save_as /root/mysql-5.1.31.tar.gz
再打开
http://ip:6969/
BitTorrent download info
- tracker version: 3.9.1
- server time: 2009-06-19 06:26 UTC
info hash
complete
downloading
downloaded
1edf185c68c921a0ad84ae8dd68495a7fe49f328
2
0
1
0 files
2
0
1/1
- info hash: SHA1 hash of the "info" section of the metainfo (*.torrent)
- complete: number of connected clients with the complete file
- downloading: number of connected clients still downloading
- downloaded: reported complete downloads (total: current/all)
- transferred: torrent size * total downloaded (does not include partial transfers)
已经在下载了,和和
相关资料
http://zh.wikipedia.org/wiki/BitTorrent
http://linux.chinaunix.net/bbs/viewthread.php?tid=376709
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/103318/showart_2102541.html |
|