Hi!
I want use in /etc/fstab for /proc
hidepid=2
and I have 4 programs that should see all pid processes in /proc.
How can I add the gids for that to see all processes? Do I need
to add root uid 0 and gid 0 also?
Maybee this?:
gid=0,33,116,999,1002
or?
uid=0,33,111,999,1001,gid=0,33,116,999,1002
fstab-line:
proc /proc proc defaults,nosuid,nodev,noexec,relatime,hidepid=2,gid=0,33,116,999,1002 0 0
or:
proc /proc proc defaults,nosuid,nodev,noexec,relatime,hidepid=2,uid=0,33,111,999,1001,gid=0,33,116,999,1002 0 0
What is correct?