|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | 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 !! |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
How do i kill -9 multiple processors at once
Hi There
How do i kill multiple processors on unix version 5.05, I know how to kill a single processors individually (e.g kill -9 process number),but i need to do it daily as some users dont log off the systems and keeps processor's running, and when the night jobstream executes it falls over showing processors in use. Your response will be highly appreciated. Many Thks Esh |
| Sponsored Links | ||
|
|
#2
|
||||
|
||||
|
kill -9 pid pid pid pid
|
| Sponsored Links | ||
|
|
#3
|
|||
|
|||
|
have you tried using
kill -9 pid1 pid2 pid3 ..... |
|
#4
|
|||
|
|||
|
Thanks for below , but however I want to place same in a script to execute automatically b4 the jobstream kicks in.Instead of me typing in (kill -9 1021 1022 1023 etc)
|
| Sponsored Links | |
|
|
#5
|
||||
|
||||
|
What does the process name associated with each pid look like ? You can use something like this. Code:
/bin/kill -p "processname" . It will give you the pid of the corresponding processname. |
| Sponsored Links | |
|
|
#7
|
|||
|
|||
|
Hi Vino
Thanks , still not working |
| Sponsored Links | ||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| kill multiple processes by name | catalinawinemxr | Shell Programming and Scripting | 2 | 11-07-2011 07:41 PM |
| Java Process to use Multiple Processors | us_pokiri | Linux | 2 | 07-28-2011 01:02 PM |
| kill multiple instances of the same program | ipzig | Shell Programming and Scripting | 12 | 12-17-2007 01:42 AM |
| No: of processors | bishweshwar | UNIX for Advanced & Expert Users | 3 | 11-14-2006 05:38 AM |
| When kill doesnt work, how to kill a process ? | VijayHegde | UNIX for Advanced & Expert Users | 3 | 05-12-2006 04:24 PM |
|
|