我正在尝试安装utorrent而不是使用torrent应用程序,我刚从windows 7上出来,有人能帮我吗?
发布于 2012-02-14 12:12:57
这个简短的教程向您展示了如何在Ubuntu11.10中安装和使用uTorrent。
cd Downloads
wget http://download.utorrent.com/linux/utorrent-server-3.0-25053.tar.gz接下来,运行下面的命令将uTorrent文件解压缩到/opt目录。
sudo tar xvzf utorrent-server-3.0-25053.tar.gz -C /opt/然后运行下面的命令以更改uTorrent-server文件夹的权限。
sudo chmod -R 777 /opt/utorrent-server-v3_0/接下来,运行下面的命令将uTorrent服务器链接到/user/bin目录。
sudo ln -s /opt/utorrent-server-v3_0/utserver /usr/bin/utserver最后,运行下面的命令来启动uTorrent。
utserver -settingspath /opt/utorrent-server-v3_0/如果您发现libssl.so包丢失了一个错误,请运行下面的命令来安装它,然后再试着启动它。
sudo apt-get install libssl0.9.8:i386现在uTorrent服务器已经启动,打开您的web浏览器(Firefox)并键入下面的地址。
http://localhost:8080/gui/用户名为admin,密码字段为空。

您要做的第一件事是指定下载文件夹。为此,请单击“设置”按钮。

然后向下滚动到“目录”并指定下载文件夹。

这是经过核实和检查的。正常工作

发布于 2012-10-10 08:10:08
uTorrent不是为Linux而设计的,我已经读过了,或者它不受良好的支持,安装起来也不简单,但是你可以用红酒来导入它。如果您没有葡萄酒,您可以通过将以下命令复制和粘贴到终端来安装它:
sudo apt-get install wine
wget http://www.utorrent.com/downloads/complete/os/windows然后转到/home/username/,然后单击可执行窗口文件,然后用红酒打开。然而,老实说,由于葡萄酒倾向于使用相当数量的RAM,我只想坚持传输。
发布于 2012-06-14 07:47:41
跑
sudo tar -xvf utorrent-server-3.0-25053.tar.gz -C /opt/没有-z函数。
如果-C函数不能工作,您可以直接使用它,
sudo mkdir /opt/utorrent-server-v3_0/然后
sudo mv /where-ever-you-tar'd-the-file/ /opt/utorrent-server-3_0/当您不知道什么命令时,始终可以检查help函数。例:
mkdir --help
mv --helphttps://askubuntu.com/questions/104094
复制相似问题