To monitor background jobs on UNIX, you can use the following commands : jobs ps jobs command jobs command will list all the jobs running in the background as follows: [1] – 12427 Running test.pl [2] + 12540 Stopped myprog.pl The value within “[]” is the job number. By this number you can control our [...]
Published by Paresh Sarma //
UNIX job monitoring and control facilities allows you to monitor the jobs executed on background and bring the jobs on foreground . Here I like to described different command used to control your jobs on background as well as foreground. Commands to control your jobs on UNIX systems jobs - This command check the status [...]
Published by Paresh Sarma //
Is your background jobs on Unix impact on System Performance? Yes, but it depends upon the priority of the job and how much RAM they require to run. Large jobs like you are downloading a huge file from the web, can consume immense amount of RAM which can be very painful for your system performance [...]
Published by Paresh Sarma //