show all running processes
ps -ef
show all running processes for specific username or program
ps -ef | grep username
ps -ef | grep program
if you have to end some process you can use command kill :
kill process_number
if you are not successful you can try this :
kill -kill process_number