How to kill a running application

1. Obtain the application’s PID number

              >sudo ps

2. Kill the application

              >sudo kill (pidnumber)

OR 

Kaunch xkill and click on an offending application

              >xkill

This will stop a running application or a frozen one. It does not remove the program from the computer.


Top