阅读量:2
要在Linux上自动校准时间,可以使用NTP(Network Time Protocol)服务。可以按照以下步骤进行配置:
- 安装NTP服务。在终端中运行以下命令:
sudo apt-get install ntp
- 打开NTP配置文件。使用文本编辑器打开
/etc/ntp.conf
文件。
sudo nano /etc/ntp.conf
- 配置NTP服务器。找到文件中的
server
行,将其注释或删除,然后添加以下行来配置要使用的NTP服务器:
server ntp1.aliyun.com server ntp2.aliyun.com
保存并关闭文件。
重启NTP服务。在终端中运行以下命令:
sudo systemctl restart ntp
现在,你的Linux系统将自动从指定的NTP服务器校准时间。你可以通过运行date
命令来验证时间是否正确。