This is a minor error that I can’t figure out. When I enter the pidof command to shut down a process, the command line just executes pidof and goes to the next line and nothing happens. No error message no nothing.
Example:
pidof supervisord
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That’s the expected behavior of pidof when it doesn’t find any processes by that name.
Also, it doesn’t kill the process, just returns the process ID of it. You want to use “killall” to actually kill a process, or a combination of “pidof” to get the PID and “kill” to kill that PID.
Or