Losing Time


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Losing Time
# 15  
Old 05-28-2015
It's entirely possible a cheap consumer-grade PC would have issues running a specialized UNIX server OS, but considering they sold that unusual configuration to you in the first place, that ought to be their problem, not yours. You're right, I wouldn't trust them to not take advantage of you again.

In a way they're not exactly wrong. It sounds like your OS is having troubles with the motherboard or CPU not agreeing with it on how long a clock cycle is. I'm not sure how to tweak that in SCO.
This User Gave Thanks to Corona688 For This Post:
# 16  
Old 05-29-2015
Quote:
Originally Posted by Big Z
Right before I came into the business and these people charged my mother 7 grand to "upgrade" things and we had 2 new, but extremely low end computers.. Same stuff, just 7K for the trouble.. and now they want 5k for more of the same I think. maybe some cloud backup or something..
OK, let us start over.

We can spend all day commiserating about what a rip-off that (probably) was, but to get you any (constructive!) help on you need to describe your system better. Start with a high-level description of your system: what do you need the system for? What is its purpose? What are the "surroundings" (other systems depending on what the system does, etc.) like?

Maybe we can work out a suggestion on what you should do but we have to understand the problem first.

I hope this helps.

bakunin
This User Gave Thanks to bakunin For This Post:
# 17  
Old 05-29-2015
Made a good part of my living over the years putting SCO on some of the cheapest hardware parts available after seeing how the suppliers were over specifying the hardware. Based on that experience I wouldn't jump to the conclusion that the hardware is the issue.

If it was a customer of mine I would install another hard drive on a Friday afternoon, reload the OS, then check the time on Monday morning to see if it was in fact a hardware issue. Then restore the system. But that also ignores a more basic question, is this a new thing or has it been going on for a while?

If the time loss is within a reasonable amount you could set a crontab to reboot the system at a reasonable hour (system time) before real time for the backup. That would get the RTC transferred in to insure the backup was done at close to the proper time. This assuming, of course, that the reboot wouldn't crash something else that hadn't been shut down properly.

Last edited by edfair; 05-29-2015 at 10:49 AM.. Reason: add possible workaround
# 18  
Old 05-29-2015
Quote:
Originally Posted by bakunin
OK, let us start over.

We can spend all day commiserating about what a rip-off that (probably) was, but to get you any (constructive!) help on you need to describe your system better. Start with a high-level description of your system: what do you need the system for? What is its purpose? What are the "surroundings" (other systems depending on what the system does, etc.) like?

Maybe we can work out a suggestion on what you should do but we have to understand the problem first.

I hope this helps.

bakunin
Thank you bakunin, you are right.

As I can best describe, the system runs a program called Fuel server. TO me, it's a database that contains customer basic info and records of service calls, oil deliveries, and can run accounting reports. It is hooked up to a large printer for printing oil tickets, reports, etc.. The computer case has stickers for Windows XP.. But it boots up in Unix. That's about it.. It's has no gui, just hop around using numbers and tab, enter, etc...No Internet hookup, just a phone line we plug in when they need to access the system remotely. It's a dinosaur, but has been in place for a long time and works. Would love to upgrade to something else, but that's a different topic.

I was asking the company we work with about the database type (to attempt to import to another program) and they realized what I was going and stopped returning my calls.. I suppose that would be another question.. Seeing a way to find out what brand of database we are using..

---------- Post updated at 01:53 PM ---------- Previous update was at 12:37 PM ----------

I jsut ran the cat /dev/rtc command and it showed me that the rtc was good, but the sys clock is losing time.
# 19  
Old 05-29-2015
I faintly remember the adjtime system tool would cover exactly this, but I don't know if it's available on SCO.
# 20  
Old 05-29-2015
Is there a way to have the sys clock update itself to the RTC time automatically , say like every couple minutes? SCO 5.05
# 21  
Old 05-29-2015
Use the setclk command. setclock(ADM)In one post you mention 5.0.7, in another 5.0.5. Which is correct?
Step one would be to determine if the on board clock is maintaining the correct time, and if so, secondly write a script to maintain the time.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Forum Support Area for Unregistered Users & Account Problems

Losing the connection

Hi. Recently when I'm logged in to site after some seconds, for instance, I lose the connection and need sign in again. It happens on Firefox and Chrome. Or another example, when I'm logged in to site and click on my nick name (right up corner) I lose the connection to site. User: tiago ... (0 Replies)
Discussion started by: Unregistered
0 Replies

2. Programming

Losing signal problem

I'm newbie in UNIX programming, I have a problem with signals. I'm writing multithread program, where threads can die at any moment. When thread dies it generates signal SIGUSR1 to main thread and then thread dies. Main thread gets a signal and waits for thread dead. I wrote program like this: ... (5 Replies)
Discussion started by: DendyGamer
5 Replies

3. HP-UX

losing mail enroute

system is HP-UX B.11.23 U ia64 A standard feature of almost all of our cron jobs is to redirect output to a log file, then at the end of the script to embed the contents of that log file in the body of an email sent to the IT staff. Typical code to do this is $MAILER -s "$PROC: $SUBJECT"... (3 Replies)
Discussion started by: edstevens
3 Replies

4. Emergency UNIX and Linux Support

losing ESSID

Hey guys, facing a weird issue - hoping someone might be able to help. The wireless network on my laptop is configured with a static IP address. (not using nm) When i take the laptop out of the range (or i power the router down) the essid is becoming "off/any". When i'm back in range the... (6 Replies)
Discussion started by: moshe88
6 Replies

5. Shell Programming and Scripting

Losing quotes after redirection

Hello experts, Pleas I have written a shell script to build a parfile but I keep losing the quotes from query1 and query variables after the redirection.. How do I fix this ? PARFILE=${EXPDP_BASE}/expdp_${DAY}.par USERID=$(${ORACLE_BASE}/getpass.ksh SYSTEM opnlkp2.uk.ml.com)... (2 Replies)
Discussion started by: kamathg
2 Replies

6. Solaris

Losing my solaris virginity

So here's the scoop. I am working on a project to automate the building of spark based solaris servers. I've got a cursory amount of knowledge of how to use the os after some pretty heavy experience with Linux, and doing a similar project there. I have a few questions though... 1) how is... (5 Replies)
Discussion started by: msarro
5 Replies

7. Shell Programming and Scripting

Losing zero in while read

I'm using a while read statement to read in lines from a file, if a value (for example) is 1000.10 in a field, the last zero is removed leaving 1000.1 does anyone know a way to keep the field as it is in the original file? (1 Reply)
Discussion started by: gefa
1 Replies

8. UNIX for Dummies Questions & Answers

Losing ownership with gzip

I'm trying to sell the use of gzip instead of compress in our department. One issue I'm having (which is a showstopper) is that I lose the ownership when gzipping and gunzipping, though it's mentioned all over the web that files are supposed to keep ownership. Example: -rwxrwxrwx 1 ms32345 ... (3 Replies)
Discussion started by: superdelic
3 Replies

9. UNIX for Dummies Questions & Answers

losing time

Hi all, The server seems to be losing time, not a lot, but enough to be noticed. UNIX AIX 4.3.3 Any ideas, Kathy (9 Replies)
Discussion started by: kburrows
9 Replies

10. UNIX for Dummies Questions & Answers

Losing Time/Time cloclk

:confused: :confused: :confused: I have a voicemail system that runs on Unix, I am new to unix:rolleyes: . However the manual I have informs me that the unix clock loses three seconds every day, and I have to perform a sync at the end of the month. My questions are simple 1. Is this generic... (4 Replies)
Discussion started by: azdauk
4 Replies
Login or Register to Ask a Question