Mount doesn’t give write permission to user

mountpermissions

I just created a new ext4 filesystem on a new drive and I am trying to mount it manually:

mount /dev/sdc1 a

it does mount correctly, but then only root seems to have write permissions. How can I give write permissions to my user as well?

Best Answer

This is normal behavior - mount doesn't give write permissions at all. The write permissions are controlled by the permissions bits on the directory in the filesystem (i.e. after it's mounted). To manage who can read and write from/to this filesystem, just use the normal chown and chmod tools.

Related Question