首页 > NAS > 让NAS实现远程BT下载

让NAS实现远程BT下载

2011年12月17日 发表评论 阅读评论

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目录,直接运行

./utserver就开始了服务,浏览器打开http://IP:8080/gui/

就可以了,全中文的界面。

为了使bt开机启动,可以进行如下设置(http://forum.utorrent.com/viewtopic.php?id=84120)

假定utorrent在/home/name/.utorrent 目录

sudo vim /etc/init/utorrent.conf

文件中内容为

description “utorrent startup script”
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 start utorrent
sudo stop utorrent

sudo ln -s /lib/init/upstart-job /etc/init.d/utorren

分类: NAS 标签: ,
  1. 本文目前尚无任何评论.
  1. 2012年1月15日14:39 | #1
您必须在 登录 后才能发布评论.