We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
command1 &
command1
jobs
bg [job_id]
fg [job_id]
CTRL-C usually cancels the foreground command by sending SIGINT (C) or a KeyboardInterrupt (Python).
If you have zombie processes or frozen applications, simply find them and shut them down through the task manager (gnome-system-monitor). Or,
ps
ps -g
pidof PROGRAM
pid
kill -kill PID
kill -9 PID
killall PROGRAM
top
htop