Yo uso para poder ejecutar este comando ps desde la terminal:
ps -u whoami
-o pid, rss, comando
¡Pero recientemente el tamaño RSS devuelto es todo 0!
ps -u 'whoami' -o pid,rss,command
158 0 /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
159 0 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
160 0 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
165 0 /usr/sbin/pboard
a menos que lo ejecute con sudo
sudo ps -u 'whoami' -o pid,rss,command
158 17556 /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
159 22488 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
160 82176 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
165 840 /usr/sbin/pboard
¿Alguien sabe cómo solucionar esto o cómo recuperar la funcionalidad original?