How do I force quit through bash? Every now and then Firefox will freeze and I can't close it. How do I kill applications via command line?
Printable View
How do I force quit through bash? Every now and then Firefox will freeze and I can't close it. How do I kill applications via command line?
kill processID
yahh..
first identify the process id by issuing the following command
ps waux
then issue the following
kill -9 <ur process id>