You are not logged in.
Pages: 1
My time zone configuration in my rc.conf is way off. First it stood at Canada/Pacific, which was off by about an hour. So than I changed it to Europe//Brussels and that one is off by about 8 hours.
My rc.conf is
HARDWARECLOCK="Localtime"
TIMEZONE="Europe/Brussels"
Now did I forget something or do I need to synch with a time-server?
Offline
Change 'localtime' to 'UTC' and that should fix it. If I remember correctly, you shouldn't do this if you have XP installed aswell as XP doesn't support UTC or something.
flack 2.0.6: menu-driven BASH script to easily tag FLAC files (AUR)
knock-once 1.2: BASH script to easily create/send one-time sequences for knockd (forum/AUR)
Offline
Change 'localtime' to 'UTC' and that should fix it. If I remember correctly, you shouldn't do this if you have XP installed aswell as XP doesn't support UTC or something.
Don't have XP installed any more and certainly not vista.
And shamely enough it's not working. I changed localtime into UTC and activated "use UTC" with the clock options of gnome.
Last edited by Xinkill (2008-02-03 14:53:54)
Offline
Offline
I tried everything and the only way i get it to work is to create a symbolic link from my timezone to my localtime file.
Last edited by neodreams (2008-02-03 15:41:42)
Offline
If your clock is correct to UTC, add your timezone to /etc/profile like this (assuming Brussels):
TZ='Europe/Brussels'; export TZ
You'll need to log out and back in again for the changes to take effect.
Welcome to the forums.
Last edited by skottish (2008-02-03 16:26:30)
Offline
If your clock is correct to UTC, add your timezone to /etc/profile like this (assuming Brussels):
TZ='Europe/Brussels'; export TZ
You'll need to log out and back in again for the changes to take effect.
Welcome to the forums.
Thanks, but i did added that piece of code to my profile but still no luck.
Offline
mv /etc/localtime /etc/localtime.old
cp -s /usr/share/zoneinfo/Europe/Brussels /etc/localtime
Then sync your time with NTP, should work.
Offline
Then sync your time with NTP, should work.
Sorry Xinkill, I didn't take into account that I'm running openntpd when I posted. Thanks neodreams.
Offline
openntpd works great. recommended.
Offline
Well i installed Openntpd but I can't really figure out how to use it or which server to connect to to synch my time.
Offline
Offline
Wow, I just always thought there was just NTP by itself. If you are having trouble getting it to work, just straight NTP is always nice as well and not really all that hard to set up.
This tutorial isn't for Arch, it's for Gentoo, but if you need it, it might come in handy:
http://gentoo-wiki.com/HOWTO_NTP
and here's another thorough guide to openntp if the first doesn't help:
http://gentoo-wiki.com/HOWTO_NTP
Good luck!
"You can't just ask to borrow somebody else's lampshade. It's AWKWARD!"
Offline
Well i installed Openntpd but I can't really figure out how to use it or which server to connect to to synch my time.
It comes pre-configured out of the box. You can edit its settings, but it just works. You do need to put it in your daemons array in rc.conf.
Last edited by skottish (2008-02-03 20:11:48)
Offline
Pages: 1