有人能帮我在十点一十分的时候被洪水淹没吗?我能找到的每一种方法都是为了我,而不是系统。
泛滥的包不为init.d (将在兼容性模式下工作)或systemd安装启动脚本。那么,你需要做些什么才能让系统开始泛滥呢?
发布于 2015-10-26 14:17:00
init.d --Init--系统是“死的”,但是脚本本身仍然存在于/etc/init.d/deluged中。
从Ubuntu存储库安装的deluged不包含本机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 https://askubuntu.com/questions/690157
复制相似问题