user12075 Asked: 2011-03-10 07:00:36 +0800 CST2011-03-10 07:00:36 +0800 CST 2011-03-10 07:00:36 +0800 CST 如何禁用 ntpd? 772 我在虚拟机中运行 Ubuntu。如何禁用 ntpd? ntp 3 个回答 Voted Daniele Santi 2011-03-10T07:42:48+08:002011-03-10T07:42:48+08:00 要停止 ntpd: sudo /etc/init.d/ntp stop 或者 sudo service ntp stop 为了防止它在启动时启动: sudo update-rc.d -f ntp remove knb 2017-03-30T23:20:09+08:002017-03-30T23:20:09+08:00 使用 systemd,两个命令是: sudo systemctl stop ntp sudo systemctl disable ntp 输出(我认为可以忽略警告) ntp.service is not a native service, redirecting to systemd-sysv-install Executing /lib/systemd/systemd-sysv-install disable ntp insserv: warning: current start runlevel(s) (empty) of script `ntp' overrides LSB defaults (2 3 4 5). insserv: warning: current stop runlevel(s) (1 2 3 4 5) of script `ntp' overrides LSB defaults (1). insserv: warning: current start runlevel(s) (empty) of script `ntp' overrides LSB defaults (2 3 4 5). insserv: warning: current stop runlevel(s) (1 2 3 4 5) of script `ntp' overrides LSB defaults (1). 查看: systemctl is-enabled ntp 输出 ntp.service is not a native service, redirecting to systemd-sysv-install Executing /lib/systemd/systemd-sysv-install is-enabled ntp disabled BillThor 2011-03-10T08:57:23+08:002011-03-10T08:57:23+08:00 如果已安装 ntpd,请卸载它。您仍将安装 ntpdate。(很难删除。)通过添加exit 0来防止它执行/etc/default/ntpdate。 更新:这是一个旧答案。大多数系统现在用于systemctl运行命令。要禁用 ntp 和 ntpdate,请发出以下命令: systemctl disable ntp.service systemctl disable ntpdate.service 您可以使用以下命令检查 ntp 相关单元的状态: systemctl list-unit-files | grep ntp
要停止 ntpd:
或者
为了防止它在启动时启动:
使用 systemd,两个命令是:
输出(我认为可以忽略警告)
查看:
输出
如果已安装 ntpd,请卸载它。您仍将安装 ntpdate。(很难删除。)通过添加
exit 0
来防止它执行/etc/default/ntpdate
。更新:这是一个旧答案。大多数系统现在用于
systemctl
运行命令。要禁用 ntp 和 ntpdate,请发出以下命令:您可以使用以下命令检查 ntp 相关单元的状态: