Linux【工具 01】NTP时间服务器搭建及Linux+Windows客户端使用(一篇学会使用NTP服务)
在Linux上搭建NTP服务器:
- 安装NTP软件包:
sudo apt-get update
sudo apt-get install ntp
- 编辑NTP配置文件:
sudo nano /etc/ntp.conf
- 确保有服务器条目,比如:
server 0.pool.ntp.org
server 1.pool.ntp.org
server 2.pool.ntp.org
server 3.pool.ntp.org
- 保存并关闭配置文件。
- 重启NTP服务:
sudo systemctl restart ntp
- 确保NTP服务开机启动:
sudo systemctl enable ntp
在Linux客户端同步时间:
- 安装ntpdate:
sudo apt-get install ntpdate
- 使用ntpdate同步时间:
ntpdate <NTP服务器的IP或域名>
在Windows客户端同步时间:
- 打开控制面板。
- 选择“日期和时间”。
- 在打开的对话框中,切换到“Internet 时间”标签。
- 点击“更改设置...”。
- 在服务器栏中输入NTP服务器的IP或域名。
- 点击“立即更新”或确定保存。
以上步骤可能略有不同,取决于Windows版本。在Windows 10中,可以直接通过设置来配置时间同步。
评论已关闭