Sponsored Content
Full Discussion: Time In Ubuntu
Operating Systems Linux Ubuntu Time In Ubuntu Post 302421484 by gwallace on Friday 14th of May 2010 11:32:23 AM
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)
 

6 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. 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

6. 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
CLOCK(3)						     Linux Programmer's Manual							  CLOCK(3)

NAME
clock - determine processor time SYNOPSIS
#include <time.h> clock_t clock(void); DESCRIPTION
The clock() function returns an approximation of processor time used by the program. RETURN VALUE
The value returned is the CPU time used so far as a clock_t; to get the number of seconds used, divide by CLOCKS_PER_SEC. If the processor time used is not available or its value cannot be represented, the function returns the value (clock_t) -1. CONFORMING TO
C89, C99, POSIX.1-2001. POSIX requires that CLOCKS_PER_SEC equals 1000000 independent of the actual resolution. NOTES
The C standard allows for arbitrary values at the start of the program; subtract the value returned from a call to clock() at the start of the program to get maximum portability. Note that the time can wrap around. On a 32-bit system where CLOCKS_PER_SEC equals 1000000 this function will return the same value approximately every 72 minutes. On several other implementations, the value returned by clock() also includes the times of any children whose status has been collected via wait(2) (or another wait-type call). Linux does not include the times of waited-for children in the value returned by clock(). The times(2) function, which explicitly returns (separate) information about the caller and its children, may be preferable. SEE ALSO
clock_gettime(2), getrusage(2), times(2) COLOPHON
This page is part of release 3.44 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. GNU
2008-08-28 CLOCK(3)
All times are GMT -4. The time now is 10:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy