安装 uTorrent

安装 uTorrent

我遵循了以下两个教程:

逐步安装

如果你使用的是 x64 操作系统

好了,我完成了最后一步。我已经创建了符号链接,当我导航到文件夹时,.../opt/utorrent-server-v3_0我可以看到该utserver文件。但是当我运行命令时utserver -settingspath /opt/utorrent-server-v3_0/ 在此处输入图片描述

因此我无法打开localhost:8080/gui/...有什么想法可能是什么问题以及如何解决?

答案1

utserver尚未在您的 PATH 中。使用以下命令运行:

./utserver -settingspath /opt/utorrent-server-v3_0/ 

或者

/opt/utorrent-server-v3_0/utserver -settingspath /opt/utorrent-server-v3_0/

然后看看如何将可执行文件添加到我的搜索路径?

答案2

除了将安装路径添加到 之外$PATH,您还可以在替代系统中为 µTorrent 创建条目:

sudo update-alternatives --install usr/bin/utserver utorrent-server /opt/utorrent-server-v3_0/utserver 100

/opt/utorrent-server-v3_0/utserver这将创建指向in 的符号链接usr/bin。与将其添加到 $path 的区别在于:

  1. 适用于未设置自定义 PATH 的环境中
  2. 与用户无关(嗯,也可以为所有用户设置 PATH……)
  3. 查找二进制文件由系统管理,而不是由用户管理
    • 这对于 µTorrent 来说可能并不重要,但如果您安装了某个程序的多个版本(例如,一个是自己编译的,一个来自软件包,或者有多个 Java 版本),它可能会有所帮助。

一般update-alternatives安装语法是:

sudo update-alternatives --install <link/to/be/created> <name> <link to the binary> <priority, the higher, the more preferred>

要更改任何替代方案的默认值,请使用

sudo update-alternatives --config <name>

相关内容