有人可以幫我在 15.10 上運行洪水嗎?我能找到的所有指南都是針對 init.d 而不是 systemd。
deluged 軟體包不會安裝 init.d(可在相容模式下工作)或 systemd 的啟動腳本。那你需要做什麼才能讓 systemd 開始氾濫呢?
答案1
init.d
- 初始化系統“死了” - 但是腳本本身仍然存在於/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