Run in background:
long_task &
List jobs:
jobs -l
Bring to foreground / send to background:
fg %1
bg %1
Stop / continue:
Ctrl+Z stop (SIGTSTP)kill -CONT <pid> continueKeep running after logout:
nohup long_task >out.log 2>&1 &
disown
systemd services for long-lived daemons