You are not logged in.
Hello,
Since a few days ago (maybe because of the kernel upgrade? - package upgrade, not the version of the kernel, or because of the init scripts upgrade?) the clock goes an hour backwards on reboot (well, because I adjust it to the correct time, if I did not, maybe the clock would stay the same after reboot, I do not know). On /etc/rc.conf I have:
LOCALE="en_GB.utf8"
HARDWARECLOCK="local"
USEDIRECTISA="no"
TIMEZONE="Europe/London"
Writing the time to the hardware is OK, because hwclock --systohc gives no output text and, when shutting down, "writing time to hardware" ends with "OK".
Thank you.
Offline
/etc/rc.sysinit checks for "localtime", not "local":
HWCLOCK_PARAMS="--hctosys"
if [ "$HARDWARECLOCK" = "UTC" ]; then
HWCLOCK_PARAMS="$HWCLOCK_PARAMS --utc"
elif [ "$HARDWARECLOCK" = "localtime" ]; then
HWCLOCK_PARAMS="$HWCLOCK_PARAMS --localtime"
else
HWCLOCK_PARAMS=""
fi
Offline
/etc/rc.sysinit checks for "localtime", not "local":
HWCLOCK_PARAMS="--hctosys"
if [ "$HARDWARECLOCK" = "UTC" ]; then
HWCLOCK_PARAMS="$HWCLOCK_PARAMS --utc"
elif [ "$HARDWARECLOCK" = "localtime" ]; then
HWCLOCK_PARAMS="$HWCLOCK_PARAMS --localtime"
else
HWCLOCK_PARAMS=""
fi
Nice, this definitely needs a bugreport.
"I'm Winston Wolfe. I solve problems."
~ Need moar games? [arch-games] ~ [aurcheck] AUR haz updates? ~
Offline
Had the same problem, "localtime" worked for me.
When did they changed that?
Offline
Thanks, localtime fixed the problem here.
All your base are belong to us
Offline
Yep same here, while i was at it i installed openntpd too.
Offline
Had Arch installed (6 months?) entered localtime then.
Setting Up a Scripting Environment | Proud donor to wikipedia - link
Offline
Well, When looking at the wiki, ntp seam to require more configuration then openntp. And i just want to sync time once in a while. Openntp seem to be more lightweight and do the job well enough.
And please try to keep in mind that whats better for you might be crap to others.
Offline
Mine was 7 hours off and this was after doing the tzdata update. I am glad to see a way around this problem.
Offline