Click to See Complete Forum and Search --> : x-penguins?


S.D.Willie
11-20-2001, 09:36 PM
x-penguins.
me? think theyre kinda funny.
girlfriend? loves 'em
me?? getting real angry that i cant figure out how to turn them off!!!

any ideas?

SD

teeitup
11-21-2001, 02:13 PM
ps -ef | grep penguins
kill #### (PID)

That should do it.

Of course it has to be done as the user who started the penguins or as root.

Good Luck,

heylee
10-28-2002, 01:22 AM
or ps aux and kill the pid of "xpenguins"

ex: [lisa@heylee lisa]$ ps aux
root 13832 0.0 0.2 2868 1304 ? S Oct27 0:00 xpenguins

kill -9 13832

;)

demian
10-28-2002, 01:47 AM
Come on, we can do that with a one-liner:
kill `pidof xpenguins`

And please don't use the -9 unless it's neccessary. You don't wanna hurt them, do you? ;)

edit:
Bad, heylee, bad! You're running X as root?