执行如下命令即可:
# echo rtclocaltime=YES >> /etc/rc.conf
# sh /etc/rc.d/rtclocaltime restart
很多使用虚拟机的朋友,由于平时不使用时可能直接把系统挂起,这样可能就导致时间出问题,所以正常情况下,还是建议关闭虚拟机下面的bsd系统。这样一般情况下时间就不会出错。如果不小心时间出了问题,我们可以通过以下方式来调整:
# gdb --write /netbsd GNU gdb 4.17 Copyright 1998 Free Software Foundation, Inc. ... This GDB was configured as "i386--netbsd"...(no debugging symbols found)... (gdb) set rtc_offset=-60 (gdb) quit
The value supplied (-60) is the number of minutes west of UTC. 设定值 (-60) 是 UTC 以西的分钟数。
要展示目前的 rtc_offset 设定值:
# sysctl kern.rtc_offset kern.rtc_offset = -60
现在核心已经知道如何转换 PC 时钟的时间为 UTC 系统时间,但是 你仍必须将系统设定为你区域性的时间(你可以在 /usr/share/zoneinfo/ 发现他们。) 如果你已经在安装过程中完成这项步骤,你可以略过(虽然最好检查 设定是否正确。) 例如,对义大利而言:
# rm -f /etc/localtime # ln -s /usr/share/zoneinfo/Europe/Rome /etc/localtime
在做了正确的设定之后,你可以使用以下的指令来更改时间:
# date [[[[[cc]yy]mm]dd]hh]mm