自从gentoo2006.1版本安装gentoo后,配好时钟为本地时间后,启重/etc/init.d/clock 出现问题,解决办法:
1,可能是/etc/conf.d/clock文件没有配置正确,内容如下:
CLOCK="local"
TIMEZONE="Asia/Shanghai"
CLOCK_OPTS=""
CLOCK_SYSTOHC="yes"
SRM="no"
ARC="no"
2,/etc/init.d/clock restart 还出现问题,可能是系统文件的时间比当时系统时间要早,解决办法:
find /etc -name "*" -exec touch {} \;
或
find /etc -exec touch {} \;