![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| killing the process | arthi | UNIX for Dummies Questions & Answers | 3 | 06-03-2008 05:57 AM |
| Killing of a process and send a mail if the process doesnot come up within 2 minutes | Prince89 | Shell Programming and Scripting | 1 | 02-15-2008 03:10 PM |
| Reg process of killing | shanshine | SUN Solaris | 6 | 12-05-2007 10:50 AM |
| killing a process | bbhayana | UNIX for Dummies Questions & Answers | 6 | 06-02-2007 04:58 AM |
| killing a process pid | jo calamine | UNIX for Advanced & Expert Users | 16 | 12-04-2006 03:43 AM |
|
|
LinkBack | Thread Tools | Display Modes |
| Forum Sponsor | ||
|
|
|
||||
|
Try this.
Do a ps -aef|grep (your PID#) # ps -aef |grep 13647 # ps -aef |grep (parent PID#) To find the process that possibly spawned your process "gzip -c". If it has a parent PID. a process that spawned this process, then you should try to kill that process. Keep trying to find the parent in this manner until you find the true parent. Then you should be able to kill this PID as well.
__________________
My brain is your brain |
|
||||
|
Bummer, dude.
Quote:
The PPID? It is 1. Yeah. I think I am gonna let the gzip -c sit for a while until I absolutely have to reboot the machine (probably sometime in March). It isn't using any more memory and isn't using any CPU so it is really not a problem. Thanks for the responses! I wonder what job spawned the gzip with the -c option. I took a look at my cronjob entries and they do not use the -c option. I use gzip --best for my scripts. I need to do some more investigating. There doesn't seem to be any problem with the system over-all. Weird.
__________________
Not quite as cool as all the other Kids... |
|
||||
|
root user?
Are you the "root" user when you are trying to Kill this process?
I see that your directory is /home/joeuser. Do an "id" to see if you are root. If you aren't the Admin, get to root have your Unix Admin try to remove it. Just a thought...
__________________
My brain is your brain |
|
||||
|
Re: root user?
Quote:
It's strange that the `gzip -c` has hung the way it has. Sometime in March I am bringing up the 23 rack from the garage to my office and I will have to power down the machine at that point. I reckon it will not be a problem after that.
__________________
Not quite as cool as all the other Kids... |
||||
| Google UNIX.COM |