windows 同步linux時(shí)間服務(wù)器
要在 Windows 上將時(shí)間同步到 Linux 時(shí)間服務(wù)器,請執行以下步驟:
在 Windows 上打開(kāi)命令提示符或 PowerShell 窗口。
使用以下命令檢查 Windows 上當前的時(shí)間設置:
css
Copy code
time /T
使用以下命令設置 Windows 上要使用的 NTP 服務(wù)器:
bash
Copy code
w32tm /config /manualpeerlist:"ntp-server-ip" /syncfromflags:manual /reliable:YES /update
將 "ntp-server-ip" 替換為您要使用的 Linux 時(shí)間服務(wù)器的 IP 地址。
使用以下命令重新啟動(dòng)時(shí)間服務(wù):
arduino
Copy code
net stop w32time && net start w32time
等待一些時(shí)間以確保時(shí)間同步成功。
要在 Linux 上將時(shí)間同步到 Windows 時(shí)間服務(wù)器,請執行以下步驟:
在 Linux 上打開(kāi)終端窗口。
安裝 NTP 服務(wù):使用包管理器安裝 NTP 服務(wù)。例如,在 Ubuntu 上使用以下命令安裝 NTP 服務(wù):
arduino
Copy code
sudo apt-get install ntp
打開(kāi) /etc/ntp.conf 文件,并添加以下行來(lái)指定要使用的 Windows 時(shí)間服務(wù)器:
css
Copy code
server windows-time-server-ip
將 "windows-time-server-ip" 替換為您要使用的 Windows 時(shí)間服務(wù)器的 IP 地址。
保存文件并重啟 NTP 服務(wù):使用以下命令重啟 NTP 服務(wù)以使更改生效:
Copy code
sudo service ntp restart
等待一些時(shí)間以確保時(shí)間同步成功。