PVE NTP时间同步, 为客户机提供RTC时钟。
设置时区 🔗︎
1
2
3
4
|
# 查看可用时区
timedatectl list-timezones
timedatectl set-timezone "Asia/Shanghai"
|
同步时间 🔗︎
1
|
apt install systemd-timesyncd
|
指定服务器 🔗︎
vi /etc/systemd/timesyncd.conf
1
|
NTP=ntp.aliyun.com ntp1.aliyun.com ntp2.aliyun.com ntp3.aliyun.com pool.ntp.org 0.asia.pool.ntp.org
|
1
2
3
4
5
|
timedatectl set-ntp true
systemctl restart systemd-timesyncd
#查看状态使用
timedatectl timesync-status
|
Windows 客户机生效 🔗︎
NT5 (XP及更老的系统) 🔗︎
在 boot.ini 启动项后添加 /usepmtimer
NT6+ (Vista及更新的系统) 🔗︎
1
|
bcdedit /set {default} USEPLATFORMCLOCK on
|