获取正确的本地时间
要使用 ntpdate 功能,那么要在menuconfig中编译ntpdate 否则板子是找不到这个功能的。
1、进入 menuconfig
然后找到 Network ,然后是 时间同步
*号模块 ntpclient 和 ntpdate
2、进入终端连上wifi,同步时间
执行
ntpdate 0.pool.ntp.org
ntpdate ntp.aliyun.com
检查获取到的时间 date
此时会发现获取到的时间与北京时间相差8小时。
3、添加模块zoneinfo,然后修改时区
1、
2、
此时再进入终端,会发现zoneinfo已经出来了。
3、设定为当地时间:
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
最终按照此教程,成功更新时间。