让NAS实现远程BT下载
LInux下BT的软件有不少,之前试过torrentflux和bittornado,但不太好用,对中文的种子支持也不好,后来找到utorrent也除了Linux版本,正好是daemon的版本,通过web来控制,主页为 http://www.utorrent.com 。
目前的utorrent仅支持32bit的系统,64位的需要安装 ia32-libs包才能运行(http://forum.utorrent.com/viewtopic.php?id=105620)
安装非常方便,下载.tar.gz包,解压到home目录,直接运行
就可以了,全中文的界面。
为了使bt开机启动,可以进行如下设置(http://forum.utorrent.com/viewtopic.php?id=84120)
假定utorrent在/home/name/.utorrent 目录
文件中内容为
author “Alanw”
start on (local-filesystems and started dbus and stopped udevtrigger)
stop on runlevel [016]
script
cd /home/yourusername/.utorrent
exec su yourusername -c “/home/yourusername/.utorrent/utserver”
end script
现在可以开启或关闭服务
sudo stop utorrent
sudo ln -s /lib/init/upstart-job /etc/init.d/utorren
