You do a ps -ef and you think is all good ... but perhaps what you see is not exactly what is really running ... This is a simple but effective way to compare the running processes reported by ps with what is into /proc
shell$ ps ax | wc -l shell$ 30 shell$ ls -d /proc/* | grep [0-9]|wc -l shell$ 31 # there is one extra root kit perhaps :)
1 comments:
no
Post a Comment