You can use the shell command called disown that detach the process from theshell that started it. Here's how to do it
Step 1:
Use Ctrl + Z to suspend the running program
Step 2:
Type bg to restart it running in the background
# bg
Step 3: Get a list of jobs running in your shell
# jobs
Step 4: Detach it from the shell
# jobs %1(Remember to put the % before the job number which in this example is 1)
No comments:
Post a Comment