CentOS系统安装Transmission和FlexGet全自动刷PT流量
![]() | ![]() | ![]() | ![]() |
| 【性价之王】 | 【线路之王】 | 【价格之王】 | 【配置之王】 |
| 【免费之王】 | 【香港首推】 | 【梯子之王】 | 【独服之王】 |

手上有VPS的想刷PT的朋友可以看看,但是如果你的硬盘空间不到50G的话,很有可能会爆仓,今天给大家分享一个教程,可以自动刷PT流量的同时还可以自动删除种子。
Transmission安装
脚本:
wget http://github.itzmx.com/1265578519/transmission/master/2.84/transmissionbt.sh -O transmissionbt.shsh transmissionbt.sh| 12 | wget http://github.itzmx.com/1265578519/transmission/master/2.84/transmissionbt.sh -O transmissionbt.shsh transmissionbt.sh |
访问地址为http://IP:9091,默认用户名和密码均为itzmx.com,文件下载位置:/home/transmission/Downloads/
如需修改配置,需要先暂停服务,否则修改无效。
service transmissiond stopvi /home/transmission/.config/transmission/settings.json| 12 | service transmissiond stopvi /home/transmission/.config/transmission/settings.json |
rpc-username 帐号
rpc-password 密码
rpc-port 端口
rpc-authentication-required 是否开启使用账号密码加密访问
preallocation 需要设置为0,这是这个办法中不会爆盘的关键。
启动Transmission服务:
service transmissiond start| 1 | service transmissiond start |
如需卸载Transmission:
service transmissiond stoprm -rf /home/transmissionrm -rf /usr/share/transmission| 123 | service transmissiond stoprm -rf /home/transmissionrm -rf /usr/share/transmission |
FlexGet安装
这是一个扩展工具,可以令Transmission具备RSS下载的功能,其实也能自动删除种子(但是我的情况比较特殊,VPS硬盘比较小,用FlexGet的clean_transmission和free_space插件会有问题)。
安装编译环境:
yum install -y gcc make zlib zlib-devel readline-devel sqlite sqlite-devel openssl-devel mysql-devel gd-devel| 1 | yum install -y gcc make zlib zlib-devel readline-devel sqlite sqlite-devel openssl-devel mysql-devel gd-devel |
安装 Python(一般的VPS系统都自带,有能力自行修改后面代码的可以不安装):
wget https://www.python.org/ftp/python/2.7.13/Python-2.7.13.tgztar zxf Python-2.7.13.tgzpushd Python-2.7.13./configure --pix=/root/python && \make && \make install && \ln -s /root/python/bin/python2.7 /usr/local/bin/pythonsource ~/.bash_profilepopd| 123456789 | wget https://www.python.org/ftp/python/2.7.13/Python-2.7.13.tgztar zxf Python-2.7.13.tgzpushd Python-2.7.13./configure --pix=/root/python && \make && \make install && \ln -s /root/python/bin/python2.7 /usr/local/bin/pythonsource ~/.bash_profilepopd |
安装 pip:
wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate/usr/local/bin/python get-pip.pyln -s /root/python/bin/pip /usr/local/bin/pip| 123 | wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate/usr/local/bin/python get-pip.pyln -s /root/python/bin/pip /usr/local/bin/pip |
安装 virtualenv:
/usr/local/bin/pip install virtualenvln -s /root/python/bin/virtualenv /usr/local/bin/virtualenv| 12 | /usr/local/bin/pip install virtualenvln -s /root/python/bin/virtualenv /usr/local/bin/virtualenv |
安装 FlexGet:
cd /root/virtualenv /root/flexget//root/flexget/bin/pip install flexget/root/flexget/bin/pip install transmissionrpc| 1234 | cd /root/virtualenv /root/flexget//root/flexget/bin/pip install flexget/root/flexget/bin/pip install transmissionrpc |
添加FlexGet配置文件:
vi /root/flexget/config.yml| 1 | vi /root/flexget/config.yml |
配置文件示例:
tasks: mt: rss: https://tp.m-team.cc/torrentrss.php?https=1&rows=10&cat410=1&cat429=1&cat424=1&cat430=1&icat=1&isize=1&iuplder=1&linktype=dl&passkey=***** accept_all: yes content_size: min: 256 max: 3072 download: /home/transmission/torrent transmission: host: 127.0.0.1 port: 9091 username: user password: password| 12345678910111213 | tasks: mt: rss: https://tp.m-team.cc/torrentrss.php?https=1&rows=10&cat410=1&cat429=1&cat424=1&cat430=1&icat=1&isize=1&iuplder=1&linktype=dl&passkey=***** accept_all: yes content_size: min: 256 max: 3072 download: /home/transmission/torrent transmission: host: 127.0.0.1 port: 9091 username: user password: password |
这个示例是我看到的教程中给的,其原文还给了clean_transmission和free_space两个插件的配置,附在上面的配置后面即可。
clean_transmission: host: 127.0.0.1 port: 9091 username: user password: password finished_for: 6 hours tracker: tp.m-team.cc delete_files: Yes free_space: path: /home/transmission/Downloads space: 3072| 1234567891011 | clean_transmission: host: 127.0.0.1 port: 9091 username: user password: password finished_for: 6 hours tracker: tp.m-team.cc delete_files: Yes free_space: path: /home/transmission/Downloads space: 3072 |
但是我并没有使用这两个插件,原作者可能没有我这样小硬盘的VPS。这两个插件的意思是,种子下载完成以后6个小时自动删除,当硬盘剩余空间小于3G时,不再自动添加种子。但是我的使用中,当剩余空间不足3G时,确实不会添加新的种子了,但是这个时候“6小时自动删除”的设置却也无效了,因为free_space的优先级很高,检测到空间不足时,就会退出任务,clean_transmission插件的任务不再执行了。所以用这个办法还是得偶尔查看一下Transmission,当然如果你的硬盘足够大,应该是不需要考虑这个问题的,这个配置可以使用。
注意:使用这个的话,Transmission的preallocation需要设置为1。
先创建torrent下载的目录:
mkdir /home/transmission/torrent| 1 | mkdir /home/transmission/torrent |
执行FlexGet:
/root/flexget/bin/flexget -c /root/flexget/config.yml execute| 1 | /root/flexget/bin/flexget -c /root/flexget/config.yml execute |
可以添加一个定时任务:
crontab -e| 1 | crontab -e |
在其中加入:
*/5 * * * * /root/flexget/bin/flexget -c /root/flexget/config.yml execute| 1 | */5 * * * * /root/flexget/bin/flexget -c /root/flexget/config.yml execute |
意思是,每5分钟执行一次。
自动清理种子脚本
自动清理种子的任务我交给了另外一个脚本来执行。
新建脚本文件:
vi /root/trans_cleanup.sh| 1 | vi /root/trans_cleanup.sh |
脚本文件内容:
#! /bin/bash#====================================================================# trans_cleanup.sh## Copyright (c) 2011, WangYan <webmaster@wangyan.org># All rights reserved.# Distributed under the GNU General Public License, version 3.0.## Monitor disk space, If the Over, delete some files.## See: http://wangyan.org/blog/trans_cleanup.html## V0.2, since 2012-10-29#==================================================================== # The transmission remote login usernameUSERNAME="username" # The transmission remote login passwordPASSWORD="password" # The transmission download dirDLDIR="/home/transmission/Downloads" # The maximum allowed disk (%)DISK_USED_MAX="90" # Enable auto shutdown support (Disable=0, Enable=1)ENABLE_AUTO_SHUTDOWN="0" # Log path settingsLOG_PATH="/var/log/trans_cleanup.log" # Date time format settingDATA_TIME=$(date +"%y-%m-%d %H:%M:%S") #==================================================================== dist_check(){ DISK_USED=`df -h $DLDIR | grep -v Mounted | awk '{print $5}' | cut -d '%' -f 1` DISK_OVER=`awk 'BEGIN{print('$DISK_USED'>'$DISK_USED_MAX')}'`} dist_check if [ "$DISK_OVER" = "1" ];then for i in `transmission-remote --auth $USERNAME:$PASSWORD -l | grep 100% | grep Done | awk '{print $1}' | grep -v ID` do [ "$i" -gt "0" ] && echo -n "$DATA_TIME [Done] " >> $LOG_PATH transmission-remote --auth $USERNAME:$PASSWORD -t $i --remove-and-delete >> $LOG_PATH 2>&1 [ "$i" -gt "0" ] && sleep 10 && dist_check [ "$DISK_OVER" = "0" ] && break donefi if [ "$DISK_OVER" = "1" ];then for ii in `transmission-remote --auth $USERNAME:$PASSWORD -l | grep Stopped | awk '{print $1}' | grep -v ID` do [ "$ii" -gt "0" ] && echo -n "$DATA_TIME [Stopped] " >> $LOG_PATH transmission-remote --auth $USERNAME:$PASSWORD -t $ii --remove-and-delete >> $LOG_PATH 2>&1 [ "$ii" -gt "0" ] && sleep 10 && dist_check [ "$DISK_OVER" = "0" ] && break donefi if [ "$DISK_OVER" = "1" ];then for iii in `transmission-remote --auth $USERNAME:$PASSWORD -l | grep -v Sum | awk '{print $1}' | grep -v ID` do [ "$iii" -gt "0" ] && echo -n "$DATA_TIME [Up or Down] " >> $LOG_PATH transmission-remote --auth $USERNAME:$PASSWORD -t $iii --remove-and-delete >> $LOG_PATH 2>&1 [ "$iii" -gt "0" ] && sleep 10 && dist_check [ "$DISK_OVER" = "0" ] && break donefi if [ "$DISK_OVER" = "1" ];then rm -rf $DLDIR1 * * * * /bin/bash /root/trans_cleanup.sh| 1 | */1 * * * * /bin/bash /root/trans_cleanup.sh |
每分钟执行一次。
注意事项
1、因为Transmission下载时,没有预分配磁盘空间,因此硬盘是一点一点占用的,只要达到了设置的阈值(比如90%),这个脚本就会清理已经完成的种子,如果空间还不够,就会清理正在下载的种子。因为脚本是每分钟执行的,所以没有硬盘塞满的风险。
2、硬盘总空间太小,就会经常需要删除旧的种子,这样一个种子的分享率可能就不高,长久下来,PT网站的总分享率也就不高了,可以通过调节接收种子的最大体积来影响(FlexGet配置文件中的3072表示最大接受3G的种子,超过就会被过滤,不会添加到Transmission中)。
3、Debian和Ubuntu应该也是可以使用的,只需要自己安装好Transmission和FlexGet就行。
4、如果重启后,transmission web ui无法连接,可能是centos默认的firewall防火墙的问题,关闭即可。
#停止firewallsystemctl stop firewalld.service#禁止firewall开机启动systemctl disable firewalld.service| 1234 | #停止firewallsystemctl stop firewalld.service#禁止firewall开机启动systemctl disable firewalld.service |
猜你可能想看的VPS
- binarylane→$4 月 1GB 20GB SSD 空间 1TB 虚拟空间(主机)
- ThinkPHP5 扩展配置目录 extra 中自定义配置文件的管理方法全球[VPS测评]
- Directory Listing Denied全球[VPS测评]
- 2019 阿里云双 11 活动→云服务器 86 元 年 2 核 4G 内全球[VPS测评]
- 疯狂猜成语 图猜成语用小人摆成的则字是什么成语?全球[VPS测评]
- Oplink→$59 月 E3-1270v3 32GB 内存 1TB S全球[VPS测评]
- EUserv→免费 月 1GB 内存 10GB 空间 1TB 流量 1G虚拟空间(主机)
- TmhHost→100 元 季 512MB 内存 20GB SSD 空间虚拟空间(主机)
- 嘟牛云双十一特惠活动 续费或新购年付及以上可享受内存翻倍 买 2 年送 全球[VPS测评]
- MySql 多个关键字 like 查询结果按照匹配最多排序全球[VPS测评]
- 阿里云 - 轻量应用服务器香港新加坡多机房可选 最低 24 元 月香港VPS[主机]
- 疯狂猜成语 图猜成语一个黑色的人拎着一个写着道字的袋子还有一个感叹号是什全球[VPS测评]
- MySQL 修改字段类型或长度全球[VPS测评]
- 云霸天下 IDC 香港双向 CIA 服务器,40M 独享带宽,CN2 回香港VPS[主机]
- 促销 TmhHost→香港独立服务器 电信双向 CN2 联通移动直连 月独立服务器[U]
- 纯代码实现WordPress评论显示访客UA和地理信息全球[VPS测评]
- WordPress 插件:wpjam collection图片集对Wor全球[VPS测评]
- 2023年 IDC市场结构和方向的深度分析全球[VPS测评]
- 1分钟快速读懂云计算全球[VPS测评]
- 企鹅小屋:香港VPS限时3折优惠,香港沙田CN2,原生IP,年付486.香港VPS[主机]
- 什么是云服务器?云服务器怎么登陆?全球[VPS测评]
- YYYHost:4核4G香港cn2vps,20G SSD/3Mbps不限香港VPS[主机]
- 深圳市城市交通规划设计研究中心股份有限公司关于与腾讯云计算(北京)有限责全球[VPS测评]
- 兼容移动和PC的loading加载和toast消息插件全球[VPS测评]
- 因搜包耽误员工下班,苹果将支付3050万美元赔款全球[VPS测评]
- uuuvps:香港VPS低至97元/年,CN2+bgp网络,香港机房VP香港VPS[主机]
- 双翼鸟数据:香港cn2云服务器低至28元/月起;美国高防vps仅56元/美国VPS[主机]
- 56云服务器怎么样?56云服务器价格和优势是什么?全球[VPS测评]
- UCloud全球大促活动:香港2核4G2M仅485元/年(台湾437元/美国VPS[主机]
- UCloud优刻得云服务器建站教程:香港云服务器购买优惠方法香港VPS[主机]
转载请注明原文地址:http://140.238.13.167:12355/read-21437.html











