Running processes in the background
nohup COMMAND [ARG]...
echo $HOME/nohup.out
nohup make > make.log
nohup make > make.log &
ctrl+z # To pause a process and get back to the shell
jobs # Show the status of all background and suspended jobs
fg %jobnumber # Bring a job back into the foreground
bg %jobnumber # Bring a job back into the background
dtach -A /tmp/dtach.session /bin/bash
screen
byobu