Re: cpu used too much

1999-04-08 Thread Michele Bini
On Mon, Mar 01, 1999 at 04:49:52PM -0800, Paul Nathan Puri wrote:
> My laptop wmcpu type applets show the cpu running at full speed all the
> time.  I this a problem?  What should I do about it...?

It may be a serious problem.
What are the first lines of the program 'top' ?

-Michele


RE: cpu used too much

1999-03-05 Thread Lewis, James M.
zombie processes are the remains of a process that exited.  The reason
they hang around is that the parent process didn't do a "wait" on them.
As soon as the parent process exits, the zombie should be inherited by
init and init will clean them up.  Zombie's don't use any cpu and they
don't use any memory.  The only thing left is the entry in the process
table.  They don't hurt you except if you fill up the process table with
them (in which case you start seeing "cannot fork" errors).  I suppose
there could be circumstances where you would expect zombies but it is
usually considered a bug in the parent process.

jim

>--
>From:  D'jinnie[SMTP:[EMAIL PROTECTED]
>Sent:  Thursday, March 04, 1999 9:35 PM
>To:Debian User List
>Cc:    The recipient's address is unknown.
>Subject:   Re: cpu used too much
>
>speaking of things going into infinite loops and eating up CPU, is there
>any way to get rid of zombie processes? Good ol' kill -9 doesn't cut
>it...I don't want to reboot just to get rid of them :(
>
>---
>The good thing about standards is that there are so many to choose from.
>-- Andrew S. Tanenbaum
>
>D'jinnie/Jinn, encountered on IRC and select MU**. ([EMAIL PROTECTED])
>finger [EMAIL PROTECTED] for PGP public key
>
>
>-- 
>Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED] <
>/dev/null
>
>


Re: cpu used too much

1999-03-05 Thread D'jinnie
speaking of things going into infinite loops and eating up CPU, is there
any way to get rid of zombie processes? Good ol' kill -9 doesn't cut
it...I don't want to reboot just to get rid of them :(

---
The good thing about standards is that there are so many to choose from.
-- Andrew S. Tanenbaum

D'jinnie/Jinn, encountered on IRC and select MU**. ([EMAIL PROTECTED])
finger [EMAIL PROTECTED] for PGP public key


Re: cpu used too much

1999-03-02 Thread Steve Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, 1 Mar 1999 18:45:10 -0600 (CST), Andrei Ivanov wrote:

>example, starting Netscape. For example, on my computer CPU load is 5-8%
>at most, when I'm not doing any compilations/etc.
>If a process eats up 95% of CPU it means it's crashed. Some processes just
>don't die quietly when they crash, but go into loop instead, therefor
>eating all the CPU.

2:00pm  up 20 days, 12:57,  3 users,  load average: 1.06, 1.04, 1.00
47 processes: 43 sleeping, 4 running, 0 zombie, 0 stopped
CPU states: 85.7% user, 14.2% system, 84.9% nice,  0.0% idle
Mem:   63444K av,  60292K used,   3152K free,  12492K shrd,   7196K buff
Swap: 132072K av,   3312K used, 128760K free 11448K cached

PID USER PRI  NI  SIZE  RSS SHARE STAT  LIB %CPU %MEM   TIME COMMAND
12974 rc5   20  19   440  412   344 R N 0 84.9  0.6 26620m rc5des

Ah, so many cycles wasted.  *sigh*

>What are consequences of that? Anyone?
>I'd figure heat that builds up will eventually become a problem
>overheating your CPU, which will result in errors and crashes.

No consiquences.  As you can see, my machine has happily run for 20 (so
far), the whole time processing rc5 keys for www.distributed.net.  Happy as
a clam and the room it is in doesn't have the best ventilation.

- -- 
 Steve C. Lamb | I'm your priest, I'm your shrink, I'm your
 ICQ: 5107343  | main connection to the switchboard of souls.
- ---+-
-BEGIN PGP SIGNATURE-
Version: PGPsdk version 1.0 (C) 1997 Pretty Good Privacy, Inc

iQA/AwUBNtxhYnpf7K2LbpnFEQJC0ACg8Lz3iLMVolwbnGQ8W+oA8ZBCxdUAoIfK
NAxat+5TBpeXMSEwMrR2u0B8
=h0Zy
-END PGP SIGNATURE-



Re: cpu used too much

1999-03-02 Thread Paul Nathan Puri
OK.  It was xosview eating up 87% of my cpu.  Now, everthing is back to
normal... Thanks.

NatePuri
Certified Law Student
& Debian GNU/Linux Monk
McGeorge School of Law
[EMAIL PROTECTED]
http://ompages.com

On Mon, 1 Mar 1999, Andrei Ivanov wrote:

> 
> > My laptop wmcpu type applets show the cpu running at full speed all the
> > time.  I this a problem?  What should I do about it...?
> 
> Try top and see what is the process that eats up all the CPU.
> Naturally you should not see CPU working a lot, unless you are, for
> example, starting Netscape. For example, on my computer CPU load is 5-8%
> at most, when I'm not doing any compilations/etc.
> If a process eats up 95% of CPU it means it's crashed. Some processes just
> don't die quietly when they crash, but go into loop instead, therefor
> eating all the CPU.
> 
> What are consequences of that? Anyone?
> I'd figure heat that builds up will eventually become a problem
> overheating your CPU, which will result in errors and crashes.
> 
> So 'top' and see whats causing the problem. THen kill the process, if
> needed.
> 
> Andrew
> ---
>  Andrei S. Ivanov  
>  [EMAIL PROTECTED]   
>  UIN 12402354  
>  http://members.tripod.com/AnSIv   <--Little things for Linux.
> 
> 


Re: cpu used too much

1999-03-02 Thread Mark Brown
On Mon, Mar 01, 1999 at 06:45:10PM -0600, Andrei Ivanov wrote:

[Dead processes eating CPU]
> What are consequences of that? Anyone?
> I'd figure heat that builds up will eventually become a problem
> overheating your CPU, which will result in errors and crashes.

It's not going to overheat your CPU unless things are broken anyway -
your CPU should be able to handle 100% utilisation quite happily.  It
will keep things warm, but hardworking processors (usually) run hot.

What it does do is take resources away from processes that are actually
doing useful work, and indcates that something down the line is broken.

-- 
Mark Brown  mailto:[EMAIL PROTECTED]   (Trying to avoid grumpiness)
http://www.tardis.ed.ac.uk/~broonie/
EUFShttp://www.eusa.ed.ac.uk/societies/filmsoc/


cpu used too much...

1999-03-02 Thread Brant Wells
Howdy Y'all

I'm a VB Programmer trying to pick up on Linux & C++...  When a program goes
into a loop, like when a program crashes, the computer will act strange...
Things will be extremely slow, or will not work, etc...  If you check with 'top'
& see what's eating up your cpu, like Andrei suggested, make sure you know what
the process is that is eating up the cpu time... If you are not familiar with
it, see what others may know

Hope This Helps,

Brant Wells


Re: cpu used too much

1999-03-02 Thread Andrei Ivanov

> My laptop wmcpu type applets show the cpu running at full speed all the
> time.  I this a problem?  What should I do about it...?

Try top and see what is the process that eats up all the CPU.
Naturally you should not see CPU working a lot, unless you are, for
example, starting Netscape. For example, on my computer CPU load is 5-8%
at most, when I'm not doing any compilations/etc.
If a process eats up 95% of CPU it means it's crashed. Some processes just
don't die quietly when they crash, but go into loop instead, therefor
eating all the CPU.

What are consequences of that? Anyone?
I'd figure heat that builds up will eventually become a problem
overheating your CPU, which will result in errors and crashes.

So 'top' and see whats causing the problem. THen kill the process, if
needed.

Andrew
---
 Andrei S. Ivanov  
 [EMAIL PROTECTED]   
 UIN 12402354  
 http://members.tripod.com/AnSIv   <--Little things for Linux.


cpu used too much

1999-03-02 Thread Paul Nathan Puri
My laptop wmcpu type applets show the cpu running at full speed all the
time.  I this a problem?  What should I do about it...?

NatePuri
Certified Law Student
& Debian GNU/Linux Monk
McGeorge School of Law
[EMAIL PROTECTED]
http://ompages.com