J'avais l'habitude de pouvoir exécuter cette commande ps depuis le terminal :
ps -u whoami
-o pid,rss,commande
Mais récemment, les tailles RSS retournées sont toutes 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
sauf si je le lance avec 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
Quelqu'un sait-il comment réparer cela ou comment retrouver la fonctionnalité d'origine ?