分类 PT 下的文章

为rutorrent 安装 filemanager 插件

进入 rutorrent 插件目录,默认位置 /var/rutorrent/rutorrent/plugins/

svn co http://svn.rutorrent.org/svn/filemanager/trunk/filemanager

这样就可以了,然后重启一下:

/etc/init.d/autodl_2dan restart

transmission常见错误和解决方法

1、编译安装时的错误

make[1]: *** [blocklist-test] Error 1 make[1]: Leaving directory `/root/transmission-2.5.0/libtransmission’ make: *** [all-recursive] Error 1

解决方法:

./configure --prefix=/usr

修改为:

./configure --prefix=/usr CFLAGS=-liconv

ubuntu安装transmission

只需一条命令即可:

apt-get install transmission-daemon

安装完后,需要修改/var/lib/transmission-daemon/info/settings.json文件

"download-dir": "/home/2dan/downloads", 
# 下载目录

"incomplete-dir": "/home/2dan/incomplete", 
# 临时文件目录

"rpc-enabled": true, 

"rpc-password": "2dan", 
# 密码

"rpc-port": 9091, 
# 端口号

"rpc-username": "2dan",
#用户名

"rpc-whitelist": "127.0.0.1", 

"rpc-whitelist-enabled": false, 

"watch-dir": "/home/2dan/trrss",
# rss目录

修改之后需要执行:

service transmission-daemon reload
service transmission-daemon restart

然后就可以打开http://IP:9091/transmission/web/访问了
也可以本地安装客户端远程控制:http://transmisson-remote-gui.googlecode.com/files/transgui-4.1-setup.exe

rtorrent+rutorrent使用中的常见问题及解决方法

1、rutorrent硬盘使用量不准确的解决方法

vi /var/rutorrent/rutorrent/conf/config.php

$topDirectory = '/';

修改为

$topDirectory = '/home/';

2、rtorrent频繁崩溃的原因和解决方法
错误日志

No connection to rTorrent. Check if it is really running. Check
$scgi_port and $scgi_host settings in config.php and scgi_port in
rTorrent configuration file

出现这种情况是“最大可用内存”这个参数设置过大造成的,解决方法很简单,比如把“最大可用内存”设置为1G,那么就在 .rtorrent.rc 文件里增加一行 max_memory_usage = 1024M 就可以了。
.rtorrent.rc 文件路径在 /home/用户名/.rtorrent.rc
比如你的用户名是2dan 那么路径就是 /home/2dan/.rtorrent.rc
然后删除 rtorrent.lock 文件并重启 rutorrent 即可

rm -rf /home/2dan/rtorrent/session/rtorrent.lock
/etc/init.d/autodl_2dan restart