LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 09-29-2003, 10:43 PM   #1
linksocc
Member
 
Registered: Jul 2003
Location: US
Distribution: Mandrake 9.0 1st/9.1 2nd/Gentoo 1.4 now
Posts: 313

Rep: Reputation: 30
Angry Clock keeps going out of time


I'm getting tired of this thing, whenever I restart my box the clock just gets to other year and a completely different hour. The funny thing is that it used to work right with Mandrake 9.1 and Windows XP but now that I unistalled Mandrake and installed Gentoo 1.4 from stage 2 , following all the instructions including the symlink from /etc/localtime to /usr/share/zoneinfo/US/Central and it keeps doing the same thing. I've changed the time in the Bios and it keeps doing the same thing, I've changed the time from windows and it keeps doing the same thing, and finally I did set the time with gentoo and just do it again. I even erased the symlink and its the same thing Does anyone see anything something I'm doing wrong or anything I forget to do??
 
Old 09-30-2003, 02:22 AM   #2
Antimatter
Member
 
Registered: Jul 2003
Posts: 37

Rep: Reputation: 15
i ditto but what i personaly do is setup an NTP thing which connects to a time server and updates your pc time, it works great, my clock is right on target 3:20 accounting to redhat clock server 1 & 2

works great and it might be a solution to your problem but anyway usualy when clocks start to fuck up in the bios that means the bios battery is beguning to die and u gotta to put in new one.

this only happen on like when u shut down and start up the machine or is it on 24/7 if its 24/7 then i ditto but that connecting to clock server might be a good idea.
 
Old 09-30-2003, 08:32 AM   #3
linksocc
Member
 
Registered: Jul 2003
Location: US
Distribution: Mandrake 9.0 1st/9.1 2nd/Gentoo 1.4 now
Posts: 313

Original Poster
Rep: Reputation: 30
I aready installed the ntp daemon but still is not working in my computer I hae tried to conect to a server but It never works the time never gets updated. Can you show me you configuration file??
 
Old 09-30-2003, 11:27 AM   #4
mylo2003
Member
 
Registered: Jul 2003
Posts: 113

Rep: Reputation: 15
Hm. It might actually be that the bios battery has gone on the system board. If the time doesn't stick in the bios, (if I can interperet what you are saying correctly) it is prolly the battery needs replacement..
 
Old 09-30-2003, 10:00 PM   #5
bruce1271
Member
 
Registered: Apr 2003
Location: Dallas, TX
Posts: 122

Rep: Reputation: 15
Battery sounds suspect to me..

I wrote a simple perl script to update my system time and bios time from within linux.

Grabs the time from the US Naval observatory atomic clock.

need perl and lynx installed.

#!/usr/bin/perl -w


##This program fetches the time from the USNO and sets my linux machine to it.
##################################################################
@q = `lynx "http://tycho.usno.navy.mil/cgi-bin/timer.pl" -dump `;

$time = $q[4];
print $time;
$time =~ s/\,//g;
$time =~ s/\.//g;
$time =~ s/Eastern daylight time//i;
$time =~ s/Eastern standard time//i;

#Set Linux time
`date -s \"$time\"`;
#Set BIOS time
`hwclock --systohc`;
 
Old 09-30-2003, 10:35 PM   #6
linksocc
Member
 
Registered: Jul 2003
Location: US
Distribution: Mandrake 9.0 1st/9.1 2nd/Gentoo 1.4 now
Posts: 313

Original Poster
Rep: Reputation: 30
will this work if I use the US central time?
 
Old 09-30-2003, 10:45 PM   #7
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
Is it always off by the same amount?

you need to set the hardware clock for the time to be saved, I'm not sure if gentoo does this or not.


hwclock --set --date=9/30/03 22:45:00
 
Old 09-30-2003, 11:13 PM   #8
linksocc
Member
 
Registered: Jul 2003
Location: US
Distribution: Mandrake 9.0 1st/9.1 2nd/Gentoo 1.4 now
Posts: 313

Original Poster
Rep: Reputation: 30
No sometimes is just some minutes, them some years, and all by itself just goes to other time without any pattern. Yes Gentoo does save the time to the bios by default
but thanks for the reply
 
Old 10-01-2003, 01:04 AM   #9
maestro52
Member
 
Registered: Aug 2003
Location: Texas
Distribution: Fedora 9
Posts: 177

Rep: Reputation: 30
I am not an expert, however, I had an almost exact experience over the past 10 months and my only problem was not affording a qualified computer specialist to thoroughly examine my computer. As such, my computer seemed to totally shut down 3 times (once every 2 to 3 months) and then after a day or two it would function again. However, it happened again 3 weeks ago and would not work at all anymore.

Here is the interesting and still somewhat strange part that has to do with the time. For a couple weeks to 3 days (in that descending order) my computer would start to have the wrong time which also varied from hours to years (it never really seemed to have a pattern).

I am most certainly not saying the problem I had is exactly what your computer is suffering from, but if you are able to have the motherboard examined by a qualified computer specialist you should do so. In the end, I was still not able to find anyone who was qualified to do any kind of actual work on the motherboard (at least not for very little money). I was able to find out that my processor, bios and the bios battery were perfectly fine for free, but the motherboard was not functioning anymore.

As I said, I am not really an expert, but from this years experience it sounds like your motherboard is giving you warning signals of an impending death if whatever the probem is is not fixed (if it is at all affordably fixable).
 
Old 10-01-2003, 06:57 AM   #10
bruce1271
Member
 
Registered: Apr 2003
Location: Dallas, TX
Posts: 122

Rep: Reputation: 15
Try this..
Go into your BIOs and "load failsafe defaults". See what happens.

The perl script could work for central time, just modify the script to subtract 1 hour from the hour variable before setting your clock to it. If you need help, let me know.
 
Old 10-01-2003, 08:05 AM   #11
linksocc
Member
 
Registered: Jul 2003
Location: US
Distribution: Mandrake 9.0 1st/9.1 2nd/Gentoo 1.4 now
Posts: 313

Original Poster
Rep: Reputation: 30
I think I solve it just by deleting the file /etc/adjtime, I don't know what this file is for but when I deleted it started working right after a reboot. I just have to wait untile I get out of school to see if it will still working. Can someone explain to me what the this file is for???
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Various clock issues: Clock shows wrong time only in Knoppmyth, & CMOS time change ? davidbix General 1 04-05-2006 09:58 PM
Time Zone, Clock, Nothing is Right pzorn Linux - General 1 10-31-2003 02:31 AM
Clock not keeping time Culbert Linux - Software 3 03-15-2003 06:15 PM
Mandrake time clock descentx13 Linux - General 2 05-27-2002 07:42 PM
time clock jimval7 Linux - Distributions 2 03-21-2002 03:04 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 08:57 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration