PDA

View Full Version : saving time zone?



westcoast
11-08-2010, 09:00 PM
I find that the time zone I set will not survive a reboot. I set the correct system time and time zone by typing 'sudo time-admin' in the lxterm. Then I type 'sudo hwclock -w' which I thought would save the settings after rebooting. However after booting I always have to reset the correct timezone again. This is necessary because I use Tor and it requires the correct time and timezone to work properly.
Any advice so I don't have to keep resetting?

Werner P. Schulz
11-08-2010, 10:13 PM
... if you are using Knoppix 6.2 there is a mistake in /etc/init.d/knoppix-autostart. Have a look at
http://www.wp-schulz.de/knoppix/uhrzeit.html
for more information (in german language written).

Greetings
Werner

westcoast
11-08-2010, 10:55 PM
I am using 6.3 which I got from a magazine. Unfortunately I don't understand German.

Werner P. Schulz
11-08-2010, 11:49 PM
# part of /etc/init.d/knoppix-autostart:
#
# Set timezone
KTZ="$(getbootparam tz)"
[ -n "$KTZ" ] || KTZ="$(getbootparam timezone)"
[ -n "$KTZ" -a "$KTZ" != "auto" ] && TZ="$KTZ"
if [ -n "$TZ" ]; then
echo "$TZ" > /etc/timezone
# this will remove /etc/localtime
rm -f /etc/localtime
# /usr/share/zoneinfo/localtime is a symlink to /etc/localtime
# but /etc/localtime doesn't exist any more.
# Therefore the second part of the if-loop will not work
[ -r /usr/share/zoneinfo/"$TZ" ] \
&& { cp -f /usr/share/zoneinfo/"$TZ" /etc/localtime; }
fi

If this mistake is also in Knoppix 6.3 you must uncomment the lines of the if-loop

Greetings
Werner

BoDiddley
11-09-2010, 03:12 PM
I have been fighting this for a week. Just found a solution: from root: 1)dpkg-reconfigure tzdata 2)date MMDDHHmmCCYY 3)hwclock --localtime 4)hwclock --systohc It survived a reboot. Take care.

westcoast
11-09-2010, 10:05 PM
I have been fighting this for a week. Just found a solution: from root: 1)dpkg-reconfigure tzdata 2)date MMDDHHmmCCYY 3)hwclock --localtime 4)hwclock --systohc It survived a reboot. Take care.

I did as you suggested but when I reboot my hardware clock is set to UTC time.

BoDiddley
11-09-2010, 11:39 PM
I did as you suggested but when I reboot my hardware clock is set to UTC time.

I do believe you are trying to change your time using Live CD. I did hd install from 6.2.1 menu and then copied Knoppix from CD to desktop. You need to be a little more specific.

krishna.murphy
11-10-2010, 03:30 PM
I do believe you are trying to change your time using Live CD. I did hd install from 6.2.1 menu and then copied Knoppix from CD to desktop. You need to be a little more specific.

"HD install" is for a few specific purposes (mostly re-mastering), but it isn't really that good for use as a "Linux system." Better to use the "Flash install", which avoids the "chroot'd environment" that causes so many anomalous characteristics not suitable for a working system. Clock changes as described should work better, too!

Cheers!
Krishna :mrgreen:

BoDiddley
11-10-2010, 08:12 PM
"HD install" is for a few specific purposes (mostly re-mastering), but it isn't really that good for use as a "Linux system." Better to use the "Flash install", which avoids the "chroot'd environment" that causes so many anomalous characteristics not suitable for a working system. Clock changes as described should work better, too!

Cheers!
Krishna :mrgreen:

I am definitely finding that to be the case, Krishna. I am a newbie. I have loaded Debian full, and PCLinuxOS. Since I am not in any real need for usage, just learning and playing around. I decided to stick with the HD install a bit longer. Hard to get around losing your word processor on a full upgrade.... still I think I will poke and prod a bit longer.