安装 utorrent 时,localhost 出现问题。

安装 utorrent 时,localhost 出现问题。

我已正确安装所有内容,但无法在 Web 浏览器中连接到本地主机。请帮助我。谢谢。

答案1

在 Linux 系统中,uTorrent 作为 Web 服务器运行。必须启动服务器,并且您需要 Web 浏览器来连接它。我会推荐其他适用于 Ubuntu 的 torrent 客户端。

按下键盘上的Ctrl++打开终端。粘贴以下代码并按 Enter。AltT

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 或任何其他 error.so 包丢失的错误,请运行以下命令进行安装,然后尝试重新启动它。

sudo apt-get install libssl0.9.8:i386

打开你的网络浏览器(Firefox)并输入:

localhost:8080/gui/

用户名是 admin,密码字段留空。

希望它能解决你的问题...

答案2

如果你已经正确安装了所有东西,但 utorrent 没有运行,那么请尝试

utserver -settingspath /opt/utorrent-server-alpha-v3_3/ &

这是系统重启后尝试运行 utorrent 时最常见的问题。

然后转到https:<your_ip_adress>:8080/gui

可以通过以下方式获取 ipaaddressifconfig

如果ifConfig尚未安装则运行sudo apt install net-tools

相关内容