树莓派(Raspberry Pi)日期时间不准的修正方法

树莓派(Raspberry Pi)日期时间不准的修正方法_第1张图片

sudo ntpd -s -d

 树莓派(Raspberry Pi)日期时间不准的修正方法_第2张图片

sudo date  --s="2023-4-11 14:37:30"

设置后的结果如下:

树莓派(Raspberry Pi)日期时间不准的修正方法_第3张图片

 

最后,添加一些国内可用的ntp服务器,如果你的时间正常,可以不做这些设置。

打开ntp服务的配置文件

sudo nano /etc/ntp.conf

找到这两行

# You do need to talk to an NTP server or two (or three).
# server ntp.your-provider.example

在下面添加以下内容,是一些亲测可用的ntp服务器

第一行最后的perfer表示优先使用此服务器,也就是复旦大学的ntp服务器

添加之后按Ctrl+X保存退出

server ntp.fudan.edu.cn iburst perfer
server time.asia.apple.com iburst
server asia.pool.ntp.org iburst
server ntp.nict.jp iburst
server time.nist.gov iburst

 重启ntp服务

sudo /etc/init.d/ntp restart

 树莓派(Raspberry Pi)日期时间不准的修正方法

你可能感兴趣的:(服务器,linux,servlet)