Normally, when you run a command in the terminal, you have to wait for the current command to finish before you can start typing another command. This is called running the command in the foreground, or the foreground process. When a process is running in the foreground, it occupies your shell and you can interact with it through your input devices. So what should you do when a command takes a long time to run and you want to run other commands at the same time? There are several options to choose from. The most obvious and direct option is to start a new shell session and run the command from there. Another option is to run the command in the background. A background process is a process/command that runs in the background after the terminal is started and does not interact with the user. In this article, we will discuss background processes in Linux. We will show you how to start a command in the background and keep the process running until the session ends. Run a Linux command in the background To run a command in the background, add an ampersand ( command & The shell's task id (the content enclosed in brackets) and process ID will be printed to the terminal:
You can run many processes in the background at the same time. The background process will continue to write information to the terminal. To suppress command > /dev/null 2>&1 & Use the jobs -l The output includes the task id, process id, task status, and the command that started the task: [1]+ 25177 Running ping google.com & If you want to bring the background process to the foreground, use the
If you have multiple tasks in the background, add fg %1 To stop a background process, add the process ID after the kill -9 25177 Move the foreground process to the background To move a foreground process to the background: 01. Stop the current process by pressing Ctrl+Z 02. Move the stopped process to the background by typing bg Keep the background process running until the shell exits If you lose the connection, or if you exit the shell session, the background process will be terminated. There are a number of ways to ensure that a process runs until the interactive shell terminates. One way is to remove the task from Shell task control, using disown If you have many background tasks, add disown %1 Verify that the job has been removed from the job list by using Another way to ensure that the process runs until the shell exits is to use The To use the nohup command & The command output will be redirected to the nohup: ignoring input and appending output to 'nohup.out' If you log out or close the terminal, the process will not be terminated. Alternatives Some programs allow you to have multiple non-interactive sessions at the same time. Screen Screen or GNU Screen is a terminal multiplexer that allows you to open a screen session and open any number of windows (virtual terminals) within that session. Processes running in Screen will continue to run even if the window is not visible or you lose connection. Tmux Tmux is a modern GNU screen interaction program. With Tmux, you can create a session and then open multiple windows in that session. Tmux sessions are persistent, which means that even if you close the terminal, the programs running on Tmux will still be running. Summarize To run a command in the background, add the When you run a command in the background, you can run another command without waiting for it to finish. The above is the detailed content of how to run Linux commands in the background. For more information about running Linux commands in the background, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: MySQL common backup commands and shell backup scripts sharing
>>: In-depth discussion of memory principles: Are variables stored in the heap or stack in JS?
Learning Linux commands is the biggest obstacle f...
1. Problems encountered In the process of distrib...
Today I will take you through the history of ext4...
This article uses an example to describe how to i...
Table of contents Phenomenon Root Cause Analysis ...
border-radius:10px; /* All corners are rounded wi...
Table of contents Introduction What does an itera...
Install using the MSI installation package Downlo...
Preface I believe that everyone has had a simple ...
This article mainly introduces the process analys...
Trigger Introduction A trigger is a special store...
This article mainly introduces how to implement l...
Life cycle classification Each component of vue i...
Table of contents What is multi-environment confi...
1. Environment and preparation 1. Ubuntu 14.04 2....