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

Linode VPS流量免费提升10倍

在原来的基础上,提升了10倍,例如原来512M内存的,流量为200G,现在提升为2TB,价格不变。更有年付9折,两年付8.5折的优惠。
01311217121296187.jpg
Linode VPS VPS中的极品,Linode.com 成立于2003年,是一家技术型创业公司,仅有19名员工(美国佬真是高效率啊!),凭借其过硬的技术实力和优质的服务,在2011年入选美国 Inc 500 之一(美国增长最快的500家公司),排名298。多机房可选,到中国的速度快,运行稳定,Xen VPS不超卖。Linode VPS后台是自主开发的,功能强大。
官方网站:www.linode.com

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