Use mount to access a "proc" folder with my user

1

Is it possible to use mount to access a "proc" folder with my user?

Hypothetical example:

mount -t proc -o umask=0022,gid=<MY_GID>,uid=<MY_UID> /proc/<MY_PID>/root /home/<MY_USER>/<SOME_FOLDER>

NOTE: I tried several and several approaches, but without success. bindfs also does not work.

Thanks! =D

Eduardo Lucio

Posted 2018-04-02T18:45:09.340

Reputation: 712

2In "man proc" you can see the mount options for the proc filesystem. The mount options you mention are NOT filesystem-independent (see "man mount"). – Marco – 2018-04-02T19:01:05.607

No answers