有人能帮我在 15.10 上运行 deluged 吗?我能找到的所有操作指南都是针对 init.d 而不是 systemd。
deluged 软件包不安装 init.d(兼容模式下可运行)或 systemd 的启动脚本。那么,您需要做什么才能让 systemd 启动 deluged?
答案1
init.d
- Init-System 已“死亡” - 但脚本本身仍然存在于/etc/init.d/deluged
。
deluged
- 从 Ubuntu 存储库安装 -不包含本机 systemd 服务!
它会重定向到systemd-sysv-install
。
您可以通过执行来验证这一点sudo systemctl disable deluged.service
。
输出显示当前不存在本机脚本:
deluged.service is not a native service, redirecting to systemd-sysv-install
Executing /lib/systemd/systemd-sysv-install disable deluged
insserv: warning: current start runlevel(s) (empty) of script `deluged' overrides LSB defaults (2 3 4 5).
insserv: warning: current stop runlevel(s) (0 1 2 3 4 5 6) of script `deluged' overrides LSB defaults (0 1 6).
无论如何你都应该使用systemctl
。
安装
sudo apt-get install deluged
开始/停止/重启…
sudo systemctl start deluged.service
sudo systemctl stop deluged.service
sudo systemctl restart deluged.service