在树莓派上,打date命令可以看到系统的日期时间:
(后面的CST表示中国标准时间)
树莓派没有电池,断电后无法保存时间。树莓派默认安装了NTP(Network Time Protocol)服务来获取互联网上ntp服务器提供的时间。如果这个时间不准,可以用这个命令校准一下。
sudo ntpd -s -d
如果还是不准,就用这个命令强制设置
sudo date --s="2014-08-31 14:42:00"
最后,添加一些国内可用的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服务器。第一行最后的prefer表示优先使用此服务器,也就是复旦大学的ntp服务器。添加之后按Ctrl+X保存退出。
server ntp.fudan.edu.cn iburst prefer 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
当然也可以使用 crotab 建立定时任务来更新时间
按照说明操作了, 没有成功,强制设置时间提示 cannot set date:operation not permitted
按后面的操作后restart ok,但是时间还是不对。
我之前通过 sudo raspi-config 设置了时区为system V timezones。
后面设置为亚洲的上海后正常,请问system V timezones是什么用途,
为何不直接
0.cn.pool.ntp.org
1.cn.pool.ntp.org
2.cn.pool.ntp.org
3.cn.pool.ntp.org
希望你转载的都标注好吗,我是看着这个论坛起来的,收集资料转载初心很好,但删掉原链接就可耻了
你好,可能你没有看到发表时文末已经增加了来源链接 —— ctrl+f 关键词“via”
除了本身已经被多次转载找不到初始来源的文章,我们都会加上原文链接的,感谢一路关注。
更新过了 树莓派2b还是不行。。
单词拼写有误……
修改/etc/ntp.conf时,添加的ntp服务器后面,prefer 不是 perfer
@Neddos
已更正,多谢指正。
这个也挺详细的,群主可以考虑转载下https://blog.csdn.net/zhangpeterx/article/details/84134141
非常好用,感谢楼主分享!!