如何在ubuntu 14.04上安装utorrent其他说明似乎特定于旧版本的操作系统

我已经尝试过遵循一些分步说明,但我认为需要输入终端窗口的一些代码和指令可能专门针对旧版本的Ubuntu操作系统

μTorrent团队尚未提供14.04套餐。

相反,你必须使用13.04包,你可以从这里下载。

确保安装了libssl:

sudo apt-get -y install libssl0.9.8 

将下载的tarball解压缩到/usr/local

 cd /usr/local && sudo tar -xzf /path/to/utserver.tar.gz 

符号链接到位:

 sudo ln -s /usr/local/utorrent-server-alpha-v3_3/ /usr/local/utorrent/ 

解压缩webUI并设置必要的子目录:

 cd /usr/local/utorrent sudo unzip webgui.zip sudo mkdir maint torrents.queue torrents.active 

使用您选择的编辑器(例如vimnanogedit )将此示例配置文件复制并粘贴到/usr/local/utorrent/utserver.conf

 dir_root: /usr/local/utorrent/ ut_webui_dir: /usr/local/utorrent/webui/ dir_active: /usr/local/utorrent/torrents.active/ dir_completed: /home//Downloads/ dir_temp_files: /usr/local/utorrent/tmp dir_autoload: /usr/local/utorrent/torrents.queue/ dir_request: /usr/local/utorrent/maint 

您现在可以像这样启动μTorrent:

 sudo utorrent -settingspath /usr/local/utorrent/ 

并使用admin和无密码连接到localhost:8080/gui的webUI(立即更改)。

编辑:201405241343Z:替换optusr/local为debian / ubuntu更加惯用

当前webui.zip提取到文件夹./web/和./mobile/

ut_webui_dir: /usr/local/utorrent/webui/

不管用。 你必须unzip webui.zip && mv web webui

并将您的配置更新为ut_webui_dir: /usr/local/utorrent/

指向父目录。 这就是我开始工作的方式。

执行add -daemon-logfile /usr/local/utorrent/utorrent.log选项时也-daemon

感谢howto,无论干杯,

创建一个upstart以运行该进程的脚本,所以你只需要做一个sudo service utorrent start

`cat << EOF> /etc/init/utorrent.conf

描述“启动utorrent服务器进程”

在启动时启动停止关闭

exec / usr / local / utorrent / utserver -settingspath / usr / local / utorrent / \ -logfile /usr/local/utorrent/utserver.log \ -pidfile /usr/local/utorrent/utserver.pid EOF`