Published on 2020-10-18, by Javed Shaikh
If you are new to Linux operating system and you start a command or process using terminal/session, you must have noticed that you need to wait till a process or command get finished before starting another command. This is because when you run a command using session or terminal, the process starts in the foreground by default. What should you do to run another command without opening a new terminal? In this post I am going to show how you can manage background and foreground process in Linux.
But before that lets understand what is foreground process and what is background process.
Foreground process is the process or job that is currently running on the terminal. So there will be only one foreground process per terminal.You need to wait till the current foreground process finishes before starting a new foreground process. Example: Any command or process you start in the current session
Background process is the process or job running on the background and doesn't require interaction from the user. There can be more than one background process obviously. Example: most common example is your web server.
For this example I am going to start command VMSTAT 1
1shaikh@shaikhu-com:~$ vmstat 5
2procs -----------memory---------- ---swap-- -----io---- -system-- ------cpu-----
3 r b swpd free buff cache si so bi bo in cs us sy id wa st
4 0 0 0 3045156 167484 2449380 0 0 80 56 469 1138 19 5 76 0 0
5 1 0 0 3044644 167492 2450152 0 0 0 92 299 604 2 1 98 0 0
6
vmstat is command that displays real time memory usage and cpu utillization. If you want to know more about it visit my previous post here
In the above command Things to note here is that above command will print CPU stats every five second on the terminal until you interrupt it. If you want to terminate it just press CTL + C or if you want to pause or stop, press CTL + Z
If you want to move a job that is already started to background so that you can access the terminal press CTL + Z and then bg
lets start a job in the foreground using below command. Here we are writing CPU stats on a text file. As you can see , we cannot start a new command as this is running on the foreground.
1shaikh@shaikhu-com:~$ vmstat 5 >> vmstat.txt
2
Lets do CTL + Z to pause this job and then do bg
1shaikh@shaikhu-com:~$ vmstat 5 >> vmstat.txt
2^Z
3[1]+ Stopped vmstat 5 >> vmstat.txt
4shaikh@shaikhu-com:~$ bg
5[1]+ vmstat 5 >> vmstat.txt &
6shaikh@shaikhu-com:~$
7
Now the job running in the background and we got the terminal
To start a command and run it in the background use & as shown below
1command &
2
example:
1shaikh@shaikhucom:~$ sleep 400 &
2[2] 11122
3shaikh@shaikhucom:~$
4
This command displays all the jobs running in the current terminal
1shaikh@shaikhucom:~$ jobs
2[1]- Running vmstat 5 >> vmstat.txt &
3[2]+ Running sleep 400 &
4shaikh@shaikhucom:~$
5
Here number withing bracket is [n] is job id or job number and + indicates most recent command or job whereas - indicates previous job. If you want to see the process id use -l option
1shaikh@shaikhucom:~$ jobs -l
2[1]- 10216 Running vmstat 5 >> vmstat.txt &
3[2]+ 11122 Running sleep 400 &
4shaikh@shaikhucom:~$
5
The number 10216 and 11122 are process id
Different options for jobs
Kill command is used to kill a job. Note that % will be used to indicate job id or job number
1haikh@shaikhu-com:~$ jobs
2[1]- Running vmstat 5 >> vmstat.txt &
3[2]+ Running sleep 400 &
4shaikh@shaikhucom:~$ kill %2
5shaikh@shaikhucom:~$ jobs
6[1]+ Running vmstat 5 >> vmstat.txt &
7shaikh@shaikhucom:~$
8
As you can see now we have only one job running in the background and notice the + sign which indicates the job id 1 becomes the most recent job 🙂
Use fg command to move a job to foreground. By default it will bring most recent background job to foreground
1shaikh@shaikhucom:~$ jobs
2[1] Running vmstat 5 >> vmstat.txt &
3[2]- Running sleep 400 &
4[3]+ Running sleep 500 &
5shaikh@shaikhucom:~$ fg
6sleep 500
7[2] Done sleep 400
8shaikh@shaikhucom:~$
9
If you have more than one jobs running in the background then use %n to move a specific job to the foreground
1shaikh@shaikhucom:~$ fg %2
2
Use ps command to see active processes. Use below options
ps ax : to see all the process currently active in the system (Use my previous post to check the commands for real time process). It will be a very long list, so use less/more parameters
ps T: list all processes running on current terminal
1shaikh@shaikhucom:~$ ps T
2 PID TTY STAT TIME COMMAND
3 5786 pts/0 Ss 0:00 bash
4 10216 pts/0 S 0:00 vmstat 5
5 12983 pts/0 R+ 0:00 ps T
6shaikh@shaikhucom:~$
7
So in this post we learned different commands to manage background and foreground process. We learned
- bg and fg to move a job to the background and foreground ##### respectively.
- jobs command to list all the jobs active in the current terminal.
- kill command to kill a job
- ps command to see list of all the active and running processes
We also learned how to start a job in the background using &. If you want to know real time memory and cpu usage and control all the processes running on your system please check my last post https://shaikhu.com/how-to-monitor-cpu-utilization-in-linux-ckgcp9gex07g8pas1ees0hz7t
Monitoring CPU utilization is one of the very important tasks of a back-end system engineer. CPU utilization is nothing but the total works or tasks being processed by your central processing unit or CPU
2020-10-16
Crontab is short form of cron table. The cron is a utility available on all Linux and Unix operating system that runs a task or process at a given date and time.
2020-10-15