Linux时间同步gps
时间: 2023-11-30 18:40:54 浏览: 178
linux时间同步方法
5星 · 资源好评率100%
为了将Linux服务器的时间与基于GPS的NTP设备同步,可以按照以下步骤进行操作:
1. 重启chronyd服务:
```shell
systemctl restart chronyd
```
2. 启用NTP时间自动同步:
```shell
timedatectl set-ntp yes
```
3. 手动同步系统时间:
```shell
chronyc -a makestep
```
4. 查看同步源:
```shell
chronyc sources -v
```
5. 查看同步源状态:
```shell
chronyc sourcestats -v
```
6. 设置硬件时间,硬件时间默认为UTC:
```shell
hwclock --systohc --utc
```
需要注意的是,为了确保时间同步的准确性,需要保证服务器与NTP设备之间的网络连接稳定,并且需要确保服务器的防火墙不会阻止NTP流量。
阅读全文