{ 2 comments }
pidof command
How can I find all the file descriptors used by a process such as httpd (Apache web server) or mysqld (MySQL Database server)?
{ 1 comment }
Q. How do I find out my process is running? How do I get pid number for particular process? A. The easiest way to find out is run ps aux command and grep process name. If you got output along with process name/pid, your process is running. Task: Find out process pid Simply use ps [...]
{ 17 comments }
Q. How do I kill process in Linux? A. Linux and all other UNIX like oses comes with kill command. The command kill sends the specified signal (such as kill process) to the specified process or process group. If no signal is specified, the TERM signal is sent. Kill process using kill command under Linux/UNIX [...]
{ 85 comments }


