20100214

Kill a process with ease in Opensolaris

Opensolaris has a nice command to kill process by name: pkill. So if you know the process name like firefox-bin it's easy to kill it running pkill firefox-bin. If you don't know the name of the process follow these steps:
  • ps -ef | grep -i proc_name_to_look_for
  • kill -9 PID_Of_process_found

No comments:

Post a Comment