在Ubuntu17.10上,安装ebtables包时挂起以下内容:
Preparing to unpack .../ebtables_2.0.10.4-3.5ubuntu2_amd64.deb ...
Unpacking ebtables (2.0.10.4-3.5ubuntu2) ...
Processing triggers for ureadahead (0.100.0-20) ...
Processing triggers for systemd (234-2ubuntu12.1) ...
Setting up ebtables (2.0.10.4-3.5ubuntu2) ...
Created symlink /etc/systemd/system/multi-user.target.wants/ebtables.service → /lib/systemd/system/ebtables.service.
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults ps的输出:
root 4432 0.0 0.0 4592 840 pts/4 S+ 10:37 0:00 /bin/sh /var/lib/dpkg/info/ebtables.postinst configure脚本看起来不可能完成吗?
如何进一步排除故障?
这是安装退潮的另一种方式吗?
发布于 2019-02-17 02:26:28
他们彻底改变了整个服务引导方法,这意味着如果你使用‘老式’服务控制,你会得到这个奇怪的消息。
这实际上相当简单,至少在拉斯宾是这样做的:
sudo systemctl start|stop <service>您也可以使用其他命令,但是当您收到这条错误消息时,您可能会遵循一篇旧的博客文章,上面写着输入如下内容:
sudo update-rc.d <service> stop你犯了那个错误。例如,解决办法是:
sudo systemctl stop isc-dhcp-server发布于 2019-02-15 21:09:57
请参阅:https://lists.debian.org/debian-devel/2013/05/msg01109.html
引用:
所有这些都不应该影响到任何人,因为在实践中,除了添加警告之外,如果使用开始或停止操作,就不会有明显的区别。我只是提出来,以防这会引起任何人的问题-在这种情况下,现在喊在它改变!
https://unix.stackexchange.com/questions/432779
复制相似问题