If you know the name of the running process, try; pidof "process". Then, if it returns a pid, you can kill it with kill -9 "pid" or killall "proc name". If pidof return nothing, then either the process is not running or you miss spelled the process name. Use
Code:
ps axf -eo pid,ppid,sid,uid,args
To see all running processes.