Friday, April 19, 2024
 Popular · Latest · Hot · Upcoming
69
rated 0 times [  69] [ 0]  / answers: 1 / hits: 65783  / 2 Years ago, wed, march 9, 2022, 1:43:35

What is the difference between



ps -ef | grep thin  


and



ps aux | grep thin


As per the output there is a variation but i'm not clear what are the things being listed.


More From » process

 Answers
6

Both list all processes of all users. In that aspect -e and ax are completely equivalent.



Where they differ is output format specifier, -f is "full", while u is "user-oriented". The displayed columns are different:




  • columns for ps -f



UID PID PPID C STIME TTY TIME CMD




  • columns for ps u



USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND


[#38838] Wednesday, March 9, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
tocklftime

Total Points: 110
Total Questions: 109
Total Answers: 100

Location: Mayotte
Member since Mon, Sep 12, 2022
2 Years ago
;