public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] OT: mount so that other users can write to mounted dir?
@ 2012-05-23  0:26 Walter Dnes
  2012-05-23  0:42 ` Alan McKinnon
  0 siblings, 1 reply; 4+ messages in thread
From: Walter Dnes @ 2012-05-23  0:26 UTC (permalink / raw
  To: Gentoo Users List

  I'm not really a fan of automount, but I understand that lots of
people are.  I'm trying to get it fully functional under mdev, and then
do a write-up on the wiki page.  A Google search turns up lots of
examples of code.  However, the examples are for embedded devices, and
they assume the only user is root.  I've got the automounting and
autounmounting working.  Everybody can read the mounted USB stick, but
only root can write.  I've tried pmount with the umask option, but it
doesn't help.  Assume the scrpt gets passed MDEV="sdb1"

#
# Create the directory in /media
   mkdir -p /media/${MDEV}
#
# Change permissions to allow read+write by all
   chmod 777 /media/${MDEV}
#
# Mount the directory in /media
   pmount  --noatime --umask 000 /dev/${MDEV}

  But after the mount...
user2@aa1 /media $ ll
total 3
drwxr-xr-x  3 root root 1024 May 22 19:02 .
drwxr-xr-x 19 root root 1024 May 21 20:41 ..
drwxr-xr-x  5 root root 1024 May 16 01:42 sdb1

  Every directory and file belongs to user:group root:root.  On the USB
stick all directories are 755 and files are 744.  As a heavy-handed ugly
hack, I could...

chgrp -R users /media/${MDEV}
chmod -R g+w /media/${MDEV}

to a USB stick.  I obviously don't wnt to do that on the external USB
drive that I rsync my system to every few weeks.  Any ideas?  And oh
yes, I do realize I'm trying to re-invent the wheel.  The old one has
a broken udev :(

-- 
Walter Dnes <waltdnes@waltdnes.org>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [gentoo-user] OT: mount so that other users can write to mounted dir?
  2012-05-23  0:26 [gentoo-user] OT: mount so that other users can write to mounted dir? Walter Dnes
@ 2012-05-23  0:42 ` Alan McKinnon
  2012-05-23 23:25   ` Walter Dnes
  2012-05-24  7:41   ` Walter Dnes
  0 siblings, 2 replies; 4+ messages in thread
From: Alan McKinnon @ 2012-05-23  0:42 UTC (permalink / raw
  To: gentoo-user

On Tue, 22 May 2012 20:26:03 -0400
"Walter Dnes" <waltdnes@waltdnes.org> wrote:

>   I'm not really a fan of automount, but I understand that lots of
> people are.  I'm trying to get it fully functional under mdev, and
> then do a write-up on the wiki page.  A Google search turns up lots of
> examples of code.  However, the examples are for embedded devices, and
> they assume the only user is root.  I've got the automounting and
> autounmounting working.  Everybody can read the mounted USB stick, but
> only root can write.  I've tried pmount with the umask option, but it
> doesn't help.  Assume the scrpt gets passed MDEV="sdb1"
> 
> #
> # Create the directory in /media
>    mkdir -p /media/${MDEV}
> #
> # Change permissions to allow read+write by all
>    chmod 777 /media/${MDEV}
> #
> # Mount the directory in /media
>    pmount  --noatime --umask 000 /dev/${MDEV}
> 
>   But after the mount...
> user2@aa1 /media $ ll
> total 3
> drwxr-xr-x  3 root root 1024 May 22 19:02 .
> drwxr-xr-x 19 root root 1024 May 21 20:41 ..
> drwxr-xr-x  5 root root 1024 May 16 01:42 sdb1
> 
>   Every directory and file belongs to user:group root:root.  On the
> USB stick all directories are 755 and files are 744.  As a
> heavy-handed ugly hack, I could...
> 
> chgrp -R users /media/${MDEV}
> chmod -R g+w /media/${MDEV}
> 
> to a USB stick.  I obviously don't wnt to do that on the external USB
> drive that I rsync my system to every few weeks.  Any ideas?  And oh
> yes, I do realize I'm trying to re-invent the wheel.  The old one has
> a broken udev :(
> 

What filesystem is on that stick?

For vfat and ntfs what you are truing should work.
For Unix file systems (ext*, reiser, etc), it will not work. You cannot
override owners and permissions with the mount command on those.




-- 
Alan McKinnnon
alan.mckinnon@gmail.com




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [gentoo-user] OT: mount so that other users can write to mounted dir?
  2012-05-23  0:42 ` Alan McKinnon
@ 2012-05-23 23:25   ` Walter Dnes
  2012-05-24  7:41   ` Walter Dnes
  1 sibling, 0 replies; 4+ messages in thread
From: Walter Dnes @ 2012-05-23 23:25 UTC (permalink / raw
  To: gentoo-user

On Wed, May 23, 2012 at 02:42:46AM +0200, Alan McKinnon wrote

> What filesystem is on that stick?
> 
> For vfat and ntfs what you are truing should work.  For Unix file
> systems (ext*, reiser, etc), it will not work. You cannot override
> owners and permissions with the mount command on those.

  Thanks.  That approach won't work in the general case.  I'll probably
have to change the command in my "mdev rules" to something like...

sudo -u waltdnes pmount blah blah blah

...where "waltdnes" is my regular user account.  That'll also allow me
to unmount it with the pumount command from my regular account.

  In the case of my backups to an external USB drive, I have to be root
anyways, so I'll just...

* plug in the external drive
* unmount it after the automount
* remount it manually as root

...and proceed from there.

-- 
Walter Dnes <waltdnes@waltdnes.org>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [gentoo-user] OT: mount so that other users can write to mounted dir?
  2012-05-23  0:42 ` Alan McKinnon
  2012-05-23 23:25   ` Walter Dnes
@ 2012-05-24  7:41   ` Walter Dnes
  1 sibling, 0 replies; 4+ messages in thread
From: Walter Dnes @ 2012-05-24  7:41 UTC (permalink / raw
  To: gentoo-user

On Wed, May 23, 2012 at 02:42:46AM +0200, Alan McKinnon wrote

> What filesystem is on that stick?
> 
> For vfat and ntfs what you are truing should work.
> For Unix file systems (ext*, reiser, etc), it will not work. You cannot
> override owners and permissions with the mount command on those.

  Thanks.  That does make sense.  I wouldn't want my regular user
account to be able to do stuff to root's files on my external backup
(reiserfs).  Experimentation confirms that posix/linux filesystems mount
with the mountpoint being user:root and group:root when mounted or
pmounted by root.  FAT32 etc mounts as user:root and group:plugdev.
Making my user account a member of the plugdev group, and pmounting with
umask 007 allows me to do whatever I want to files on the USB stick.  So
I guess FAT32 has its uses.

  One last sticking point is manual unmounting.  You obviously want to
unmount properly before disconnecting a USB key or drive, if you've done
any writing to it.  If the pmount is done as root, pumount or umount has
to be done as root.  What's the proper sudoers wildcard syntax for
unmounting a mountpoint under /media?  Does this look OK?

waltdnes  d531 = (root) NOPASSWD: /bin/umount /media/sd[a-z][1-9]

-- 
Walter Dnes <waltdnes@waltdnes.org>



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-05-24  7:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-23  0:26 [gentoo-user] OT: mount so that other users can write to mounted dir? Walter Dnes
2012-05-23  0:42 ` Alan McKinnon
2012-05-23 23:25   ` Walter Dnes
2012-05-24  7:41   ` Walter Dnes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox