Time In Ubuntu


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu Time In Ubuntu
# 1  
Old 05-14-2010
Time In Ubuntu

Seem that I am having an issue with the time display in Ubuntu 10.4

Ever so often the clock will stop. What I have figured out is that a zombie process will show up in the TOP display. When I kill the PPID, I get a message asking if I want to restart CLOCK. When I restart, the time and temp reappear on my task bar and are correct. However; a few hours later (unsure of actually how long) the same thing will happen again.


Any ideas on what may be causing this? Also was wondering if there was a way to track down the parent that launches CLOCK, may be that there is an error in that program that is causing CLOCK to stop.

Thanks for the help

EDIT: Some additional information. I was able to determine what script was causing the problem with HTOP.
Code:
/usr/llib/gnome-panel/clock-applet --oaf-active-iid=OAFIID:GNOME Clockapplet Factory --oaf-ior-fd=19

Not sure if that will help, but I thought i would add this as well.

Last edited by Scott; 05-14-2010 at 07:34 PM.. Reason: Additional information. (sn: and code tags)
# 2  
Old 05-14-2010
Sounds like a bug. The clock applet may have missed the SIGCHLD signal somehow, so isn't aware the process it spawned has finished and waits forever. Or it's just frozen entirely.

Running that applet with strace so it saves a file of what system calls it runs may help track down what it's freezing on or what have you, but if it really takes hours to manifest itself that file could get enormous very quickly.
# 3  
Old 05-14-2010
I ran the strace, and didn't see anything odd.

Decided to just do a reboot and see if that will fix the problem.

I'll keep an eye on it and update here if it happens again.

Thank you for the help.

---------- Post updated at 02:17 PM ---------- Previous update was at 01:43 PM ----------

Well, after the reboot, CLOCK stopped on me again.

May need to post this as a bug, or at least look into and see if anyone else has reported this.
# 4  
Old 05-14-2010
Quote:
Originally Posted by gwallace
I ran the strace, and didn't see anything odd.
Not looking for odd things, looking for what system call the clock program was freezing on, i.e. the very last one.
# 5  
Old 05-14-2010
These are the last few lines of the strace:

Code:
open("/usr/lib/gconv/gconv-modules.cache", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=26048, ...}) = 0
mmap2(NULL, 26048, PROT_READ, MAP_SHARED, 3, 0) = 0xb779e000
close(3)                                = 0
futex(0x759a8c, FUTEX_WAKE_PRIVATE, 2147483647) = 0
write(2, "Cannot parse arguments: Unknown "..., 70) = 70
exit_group(1)

I have also attached the strace file.

Last edited by Scott; 05-14-2010 at 07:34 PM.. Reason: Please use code tags
# 6  
Old 05-14-2010
Try the following command
Code:
touch /etc/ld.so.nohwcap

I think you get lost in linker lala land looking to load specialty hardware-optimized runtime libraries that are not there. You can undo it with
Code:
rm /etc/ld.so.nohwcap

Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Ubuntu

How to Get Started on Ubuntu Desktop for the first time

Hello Everyone, I have been using RHEL from quite a while now on server system, but now i also want to use Linux as my Desktop/Laptop OS on my personal computer. So i downloaded the Ubuntu 12.04 yeserday as i have read alot about it being the most popular Linux Desktop OS. So guys could you... (1 Reply)
Discussion started by: Rohit Bhanot
1 Replies

2. UNIX for Advanced & Expert Users

setting up ubuntu server as real time

0 down vote favorite share share share Let's solve my case please, it's urgent I have installed ubuntu server 11.04 on a machine with size 4GB. As, the ubuntu server 11.04 does not support real time kernel by default, I ... (0 Replies)
Discussion started by: dr_mabuse
0 Replies

3. Ubuntu

What time did Ubuntu installed on machine?

How can I learn what time OS installed time and release information. (4 Replies)
Discussion started by: getrue
4 Replies

4. Ubuntu

[UBUNTU] mount.nfs fails in Ubuntu / Works on Red Hat!!!

Gurus, I want log in locally to my Lucid (10.04) workstation and have my code saved over the network on my samba account At work, all developers have samba user ids and when we were running Red Hat, we went thru the following procedure to get setup. * open a shell session to NFS server... (2 Replies)
Discussion started by: alan
2 Replies

5. UNIX for Dummies Questions & Answers

First Time Linux(Ubuntu) user, Installing

I want to install ubuntu on a seperate hard drive. I have two 500gb sata drives with XP on sata 0,0 and like to install ubuntu on the other sata 1,1. A few questions: Will this work? Can I unplug the XP drive and boot up with ubuntu to 1,1? If that works, how can I boot to... (6 Replies)
Discussion started by: dwainbar
6 Replies

6. UNIX for Dummies Questions & Answers

Would like to install x86 desktop Ubuntu over AMD64 Ubuntu server

My intention was to build a dual boot XP Pro 64 and Ubuntu media server. I had installed the AMD64 version of Ubuntu 8.10 server and thought that I would be able to install Apache server. I need a GUI to work in. I tried to boot and install Mythbuntu 32 bit 8.10, but my machine now won't recognize... (0 Replies)
Discussion started by: docflyboy
0 Replies
Login or Register to Ask a Question