How to logout while leaving a process running
- Stop the process using
Ctrl - Z
. - Start the process in the background again by typing
bg
. - Disown the process by typing
disown
. - Exit the terminal.
- Open another terminal and check that your process is running by typing
top
.