Difficulty: Moderately Easy
Step1
Open the BASH terminal. This can be found at the bar on the bottom of the desktop in the Gnome and KDE interfaces. If you’re operating a non-Gnome or non-KDE variant, search the home menu for “xterm.”
Step2
Type in “pstree –p” (without quotes) and press "Enter." This will give you a list of all processes that are currently running. The “–p” will show the process ID as well.
Step3
Choose which process you want to kill. The name should give an indication. Try to remember the process ID.
Step4
Type “kill [pid]” where [pid] is the process ID number you noted in the previous step. This includes a delay to allow the process to end properly.
Step5
Verify that the process in question has been killed by repeating step 2. When the tree is listed, the process you specified should be gone.