ubuntu使用chrony同步时间
时间: 2024-08-01 10:00:39 浏览: 164
ubuntu使用笔记
Ubuntu 使用 chrony 进行时间同步是一种常见的做法,因为 chrony 是一款更现代且精度更高的 NTP (Network Time Protocol) 替代品。以下是安装和配置 chrony 的步骤:
1. **安装 chrony**:
打开终端并运行命令:
```sh
sudo apt update && sudo apt install chrony
```
2. **启动服务**:
安装完成后,启用 chrony 服务并在系统启动时自动运行:
```sh
sudo systemctl enable chronyd
sudo systemctl start chronyd
```
3. **配置 chrony**:
需要编辑 chrony 的主配置文件 `/etc/chrony/chrony.conf`。添加服务器列表,例如 Google 的公共时间服务器 `pool.ntp.org` 或者你自己选择的其他可用服务器:
```
server ntp.pool.org iburst
```
你可以通过 `ntpq -p` 查看当前活跃的时间服务器。
4. **验证设置**:
使用 `chronyc sourcestats` 检查同步状态,如果一切正常,应该能看到它正在成功接收和更新时间。
5. **手动同步时间**:
如果需要立即同步时间,可以运行:
```sh
sudo chronyc settime $(date +%s)
```
阅读全文