How can I allow normal users to mount a tmpfs under any subdirectory owned by them?

link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

You would probably have to write a wrapper script that you would allow them to execute with sudo.

link|improve this answer
feedback

Another option is to make a wrapper binary that is suid root (but that is more effort.)

link|improve this answer
feedback

I'm thinking about giving them partial sudo rights to mount and umount.

First add user nisse to the group users

addgroup nisse users

Then allow the group users to execute mount and umount, add this in /etc/sudoers

%users  ALL=(ALL) /bin/mount
%users  ALL=(ALL) /bin/umount

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

%users  ALL=(ALL) /usr/local/bin/mount_tmpfs.sh

If that wrapper script is called /usr/local/bin/mount_tmpfs.sh

/Good luck

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.