I want to mount an ext3 filesystem on a device with uid, gid, umask options set. When I use these options during mount, I get an error.
Below is the command I am using to mount:
mount -t ext3 -o uid=1001, gid=1001, umask=0066 /dev/mapper/mdev5 /dir
Is there any alternate to do so using mount?
umaskis an option you can set withext3filesystems? – sarnold Nov 16 '11 at 11:29umaskis not available forext3, and from a brief reading I'm not sureuidandgidare either. – drfrogsplat Mar 27 '12 at 6:08