I'm guessing these are kernel modules. They are never really relevant to my interests. asked 17 Nov '11, 19:32 Joehillen |
I had submitted this question to reddit, and this is the answer I got. This is what I ended up adding to my
answered 29 Nov '11, 18:02 Joehillen |
It isn't "kernel modules". You've called up : report process status It's a list of things which are running. What do you mean hide? Why do you want to hide it? answered 18 Nov '11, 11:33 Alan Rochester |
It's not clear from your rather terse question what you are interested in seeing, so we're sorta flying blind here... but to narrowly answer your specific question using your specific example, you could pipe the output of your ps command through grep, thus: ps -ef | grep -v -e '^root .*[[:digit:]] \[' ...to weed out the lines you mentioned, though that could also remove any "normal" lines that happened to match that expression. answered 18 Nov '11, 21:14 mod I prefer that "ps -fN --ppid 2 -C init,kthreadd" approach to the grep-based one I suggested. Nice.
(01 Dec '11, 09:50)
mod
|