![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | 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 !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| kill process help | thms_sum | Shell Programming and Scripting | 5 | 02-03-2008 09:27 AM |
| how to start a process and make it sleep for 5 mins and then kill that process | shrao | Shell Programming and Scripting | 6 | 03-27-2007 01:54 PM |
| When kill doesnt work, how to kill a process ? | VijayHegde | UNIX for Advanced & Expert Users | 3 | 05-12-2006 05:24 PM |
| HP UX How to kill Process | prakashpichika | HP-UX | 5 | 02-10-2006 01:40 AM |
| who -uH, kill the process at different pts/tb | yls177 | UNIX for Dummies Questions & Answers | 3 | 12-11-2002 09:32 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
How to kill a process and get process id
I'm just new to this unix world
I need to kill a process I started using telnet, I tought that the process will be immediately terminated when I closed the telnet window but it didnt. I opened a new telnet window and the jobs where still there!, how can I kill them, and If I need a job id or something how can I get it? My best regards to all of you Jose Diaz |
|
||||
|
To kill the process...log on with a telnet session L
$ps -ef | grep (process name) The line will look as follows : $ (userid) (process id) (process id2) (time) (terminal) ......... $kill -9 (process name or process id) Hope this helps Regards Wolf |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|