How can I allow normal users to mount a tmpfs under any subdirectory owned by them?
|
feedback
|
|
You would probably have to write a wrapper script that you would allow them to execute with sudo. | |||
|
feedback
|
|
Another option is to make a wrapper binary that is suid root (but that is more effort.) | |||
|
feedback
|
|
I'm thinking about giving them partial sudo rights to mount and umount. First add user nisse to the group users
Then allow the group users to execute mount and umount, add this in /etc/sudoers
Then the user should be allowed to mount a tmpfs drive. And if you follow Jayen answer with a wrapper scipt, then add something like this to sudoers
If that wrapper script is called /usr/local/bin/mount_tmpfs.sh /Good luck | ||||
|
feedback
|