Getting the timezone correct
Up to now I've been ignoring the fact that when I boot Knoppix 3.4 (2004/.5.17) the local timezone is assumed to be EDT America/NewYork. But I'm trying to get a satellite prediction program working and my timezone has to be correct.
I have determined that my hardware clock is set to local time.
When I boot with the cheatcode:
it makes no difference to the displayed timezone. It's still EDT but should be CST and the /etc/localtime file is also EDT.
I've put some debugging in knoppix.sh and the TZ variable is being set to the correct zone from the tz= cheatcode but it makes no difference.
If I do the following as superuser:
Code:
TZ=America/Regina
export TZ
hwclock -s
the monitor goes weird until I hit a key but then the timezone has been set correctly.
Why doesn't specifying the correct tz= cheatcode set the correct time at boot up and how do I fix it?
Best Wishes
Pete
Found the problem (was - Getting the timezone correct)
There is a bug in the way that the /etc/knoppix-autoconfig script handles the tz cheatcode.
It does not read that cheatcode, and set TZ from it, until after the system clock has been set with the hwclock command.
This block of code:
Code:
KTZ="$(getbootparam tz 2>/dev/null)"
[ -f "/usr/share/zoneinfo/$KTZ" ] && TZ="$KTZ"
rm -f /etc/localtime
cp "/usr/share/zoneinfo/$TZ" /etc/localtime
should be moved before this block of code:
Code:
# hwclock uses the TZ variable
export TZ
hwclock $UTC -s
so that the tz= cheatcode will override whatever timezone default was set by the lang= cheatcode.
Best Wishes
Pete (now definitely on CST :-)