我有一个问题,因为某些程序和功能无法像 Debian 7 中那样工作。
例如:
- 重新启动不发送广播消息,
- service [something] [start|stop] 不回显任何内容,
而且我不知道,为什么会这样......
答案1
Debian 8 默认systemd
使用sysVinit
.因此,您需要使用不同的方式来重新启动服务。
使用systemctl [start|stop|whatever] something
,不使用service
。
重新启动应该仍会发送消息。请尝试改用shutdown -r
(该reboot
命令是 systemd 的遗留兼容性命令,将来可能会消失)。