Continue process after closing terminal?

7,703

Solution 1

nohup or disown (in bash) will allow a process or job to continue in the background after the controlling shell has been killed.

Solution 2

You could use gnu screen to run the program, and then re-attach to the session later. Just start screen, then start the unzip process. When you want to disconnect, press Ctrl-A D. Then when you want to re-attach to the screen session use screen -r and it'll re-attach to the previous session.

Share:
7,703

Related videos on Youtube

Jake Wilson
Author by

Jake Wilson

Updated on September 17, 2022

Comments