我想停止 avahi-daemon (mDNS) 并使其保持停止状态。
午夜过后它似乎会重新启动。显然是某种周期性作业在重新启动它,但我不知道是什么。
切题:我尝试使用 systemctl 停止 avahi-daemon.service,但没有成功。只有旧式的“service stop”才能停止服务(尽管是暂时的)。
答案1
您需要停止套接字。您可以使用以下命令:
sudo systemctl stop avahi-daemon.socket avahi-daemon.service
您也可以永久禁用服务并重新启动系统:
sudo systemctl disable avahi-daemon.service
reboot
要恢复它,请运行:
sudo systemctl enable avahi-daemon.service