rocky linux9.3同步时间
时间: 2024-09-19 12:11:55 浏览: 74
Rocky Linux 9.3是一款基于CentOS的开源Linux发行版,它提供了稳定性和社区支持。要同步系统时间,你可以使用 chronyd 或 ntpd 这两个常见的网络时间协议(NTP)客户端。
1. **chronyd**:
- 安装 chrony:
```
sudo dnf install chrony
```
- 启动并设置为开机启动:
```
sudo systemctl start chronyd
sudo systemctl enable chronyd
```
- 配置chrony.conf文件(通常位于/etc/chrony/chrony.conf),如果需要自动同步,可以加入类似这样的行:
```
server [ntp服务器地址]
```
2. **ntpd** (Network Time Protocol Daemon):
- 安装 ntpd:
```
sudo dnf install ntp
```
- 启动服务:
```
sudo systemctl start ntpd
```
- 设置为开机启动:
```
sudo systemctl enable ntpd
```
- 添加npt服务器到配置文件(/etc/ntp.conf),例如:
```
server [ntp服务器地址]
```
完成上述步骤后,你的Rocky Linux 9.3系统应该会定期从指定的NTP服务器同步时间了。若想立即检查时间同步状态,可以用:
```
sudo timedatectl status
```
阅读全文