On Fri, May 17, 2002 at 01:57:10PM +0200, Renaud Deraison wrote: > On Fri, May 17, 2002 at 12:46:13PM +0100, Kevin Passey wrote: > > > Is there an easy of stopping the server. > > killall -9 nessusd
Umm... careful with that ... killall can mean two very different things depending on the OS. In Linux it means to kill all processes with a particular name. In Solaris it means to kill _all_ processes. I recommend either checking the man page before trying that, or doing: %ps aux | grep nessusd %kill -KILL <pids> -- Devin Kowatch [EMAIL PROTECTED]
