Modify fstab entry so all users can Read and Write to an EXT4 Volume

45

21

I have an Ubuntu 10.04 box with an EXT4 partition. This partition is set to automatically mount in /etc/fstab. For the purposes of this post, we'll call it: /media/foo.

Unfortunately, only root can create/delete files/directories on the root filesystem of foo. For other users to perform file/io on this volume, root needs to create a directory and chmod the permissions to others.

I would like to mount the volume such that anybody would be able to read/write to the volume without the need of root to chmod.

Below is my fstab entry:

/dev/sda8    /media/foo    ext4    rw,user,exec 0 0

The entry originally had defaults instead of rw,user,exec. I added the additional entries, namely, rw so any user can read/write.

Unfortunately, the fstab entry does not work. It mounts fine, but it still requires root to intervene.

And, just in case anybody asks, simply running: chmod -R 777 * on /media/foo as root does not work.

Phanto

Posted 2010-08-11T16:35:45.307

Reputation: 1 004

Answers

47

The mount option user only allows the filesystem to be mounted by any user. The rw option makes the filesystem not readonly. You will have to use permissions to make the parent directory writeable.

chmod 777 /media/foo

The chmod command you show only affects the existing files within /media/foo.

Paused until further notice.

Posted 2010-08-11T16:35:45.307

Reputation: 86 075

2What is the best place in Ubuntu to add this command at startup? – Ivan Balashov – 2014-08-18T13:35:15.143

@IvanBalashov: You can use an @reboot entry in /etc/crontab among other possibilities. – Paused until further notice. – 2014-08-18T15:19:38.873

3@DennisWilliamson Thanks. I've put it into /etc/rc.local if it makes any difference. What bugs me overall about this though, is that it really should be configured in fstab. If not, mount point can change, and scripts have to change too, maintenance hell. – Ivan Balashov – 2014-08-18T16:16:11.937

Wow, i must start to guess those things :D thank you a lot. – m3nda – 2015-05-29T15:11:40.677

1Agree with the chmod, but add a: chmod +t /media/foo to enable users to create their own subdirectory – user1251840 – 2017-03-10T11:25:05.713

27

I think it would be simpler to change the fstab entry to:

/dev/sda8    /media/foo    ext4    rw,user,exec,umask=000 0 0

umask=000 means that anyone can read, write or execute any file or directory in foo. The usual default is 022, which means that users cannot write.

somebody

Posted 2010-08-11T16:35:45.307

Reputation: 303

37umask is only an option for ntfs/vfat partitions. mount will not like umask on an ext filesystem. – Daniel – 2012-09-14T01:07:38.437

8

I had the same problem on openSUSE, but I think the solution can apply to this too. All the users I want to share the mounted filesystem belong to the same primary group: users

I have the following line in my fstab:

/dev/<partition> <mount_point>          ext4       rw,acl       0 0

and I ran the following commands:

sudo chgrp -R users <mount_point>
sudo setfacl -d -m g::rwx <mount_point>

so that newly created files or directories get those permissions. This implies that you have the acl package installed.

dario

Posted 2010-08-11T16:35:45.307

Reputation: 181

If it is an encrypted directory say /home will this be mounted in the /etc/crypttab? – George Udosen – 2017-02-05T18:17:57.173

3

Well for one thing, you want to make sure the directory of /media/foo itself is writeable. If it isn't already, run the following command:

chmod +w /media/foo

Remember, star only applies to the visible contents of the directory, not the directory itself nor any files that are not visible.

hotei

Posted 2010-08-11T16:35:45.307

Reputation: 3 645

1

A few years ago I have set the mount point's group to the plugdev group, added the user to that group. This way, by creating new groups, it is possible to give permissions on a per user basis. For home usage, it's enough to set mount point permissions to others: read/write/execute as written above.

I did it with 'sudo nautilus &' in terminal and right click -> properties -> rights, but any other file manager running as root would be fine.

Doom3d

Posted 2010-08-11T16:35:45.307

Reputation: 11

1

Try,

sudo setfacl -R -d -m u::rwx,g::rwx,o::rwx <mount_point>

user247046

Posted 2010-08-11T16:35:45.307

Reputation: 11

0

Other way is before mounting it, you can give required ownership to the mount point. So that when you mount it, required user will have its ownership.

vishy dewangan

Posted 2010-08-11T16:35:45.307

Reputation: 111