Killing a Process

A process is a running program.

Command

  ps u
shows all processes that you are currently running. The command that the process is running is at the right end of each line. Find the one that you want to kill. Under heading PID is the process number. If n is the process number, then command
  kill -9 n
will stop the process.