# background. you can run stuff in background even after you close the shell with `nohup`. ```bash nohup foo & disown # will always run in background. ``` better approach would be to use `tmux`, but that's another huge topic.