标签 rutorrent 下的文章

修改rutorrent密码的方法

首先需要安装二个软件:

apt-get install apache2-utils mini-httpd

然后需要找到rutorrent密码管理的文件:

find / -name rutorrent_passwd

这是在整个系统中查找 rutorrent_passwd 文件。我这里查找到的路径是:

/etc/apache2/rutorrent_passwd

然后执行修改密码命令:

htpasswd /etc/apache2/rutorrent_passwd 2dan

上面的 2dan 就是你登录rutorrent的用户名
根据提示输入新密码并确认新密码,然后就可以了。

ruTorrent RSS订阅自动下载教程

首先登录PT站点,在右上角找到RSS图标,点击获取RSS链接,以CHD为例:
1.jpg
看上图,你可以只订阅部分内容,然后选择你感兴趣的内容打勾;也可以全站订阅,只需要保持默认的选项就可以了。然后点击生成RSS链接。见下图:
2.jpg

- 阅读剩余部分 -

为rutorrent 安装 filemanager 插件

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

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

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

/etc/init.d/autodl_2dan restart

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