![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX Desktop for Dummies Questions & Answers Discuss UNIX and Linux user interfaces like GNOME, KDE, CDE, and Open Office here. All UNIX and Linux Newbies Welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| script to monitor process running on server and posting a mail if any process is dead | pradeepmacha | Shell Programming and Scripting | 13 | 03-06-2009 07:33 AM |
| Stopping A process | gopsman | Shell Programming and Scripting | 4 | 12-05-2007 09:37 AM |
| How to create a dummy process of a process already running? | shambhu | UNIX for Advanced & Expert Users | 3 | 08-31-2007 10:22 AM |
| I can't resume a process after stopping it! | Nene | Shell Programming and Scripting | 0 | 08-09-2006 01:37 PM |
| Stopping multiple process on AIX | soulfactory2002 | AIX | 3 | 05-20-2005 01:25 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
stopping running process
hi all,
I am using red hat AS 4 linux enterprise,i need to run my application such that while its running no other process shuld run all the remaining process should be suspended ,i need to use whole of the process only for that application to run ,can anyone suggest me how to do this. thanks u all, lakshmi |
|
||||
|
That's a bit extreme. Why not just reschedule your app to maximum priority?
Try running your app like: Code:
nice -n -20 youapp To kill every process do Code:
kill -9 -1 |
|
||||
|
You cannot do that safely. Some filesystems have daemons and will not work if the daemon is stopped, for example.
In general do not stop all processes, period. redoubtable gave you good advice. Run your app at higher priority. What the heck are you trying to do? |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|