|
在Linux系统中,修改NTP服务所使用的服务器地址通常涉及编辑NTP配置文件,然后重启NTP服务。以下是一个基于Debian系的示例(如Ubuntu)和基于Red Hat系的示例(如CentOS)。
对于Debian/Ubuntu系统:
1.编辑NTP配置文件:
- sudo nano(/vim) /etc/ntp.conf
复制代码 2.找到“server”行,并修改为新的NTP服务器地址。例如:- server 0.pool.ntp.org
- server 1.pool.ntp.org
- server 2.pool.ntp.org
- server 3.pool.ntp.org
复制代码- sudo systemctl restart ntp
复制代码
|
|