Apr 19, 2001 #1 solarisadmin MIS Joined Mar 14, 2001 Messages 48 Location US How can I check the running daemons? How to kill and start them?
Apr 19, 2001 #2 jad Programmer Joined Apr 7, 1999 Messages 1,195 Location GB ps -ef | grep 'd$' might work for all daemon processes ending with a d ... or you could look in the /etc/init.d directory for all processes and how to stop and start them ... Upvote 0 Downvote
ps -ef | grep 'd$' might work for all daemon processes ending with a d ... or you could look in the /etc/init.d directory for all processes and how to stop and start them ...