How-to detach running process from terminal

If your job is running in terminal do

bg -- Move running process to background --
jobs -- list the jobs in background and get id of the job you want to detach --
disown %1 -- use job id from previous query for detaching from the terminal --

Leave a Reply