LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   fstab help (https://www.linuxquestions.org/questions/linux-newbie-8/fstab-help-543876/)

themanwhowas 04-06-2007 03:13 PM

fstab help
 
/dev/hda1 /media/hda1 auto rw,auto,user,sync 0 0

that line should allow my non root users to read and write to this fat32 partition yes? well its not. root can read/write but others are read only. can anyone see the problem?

Fedora Core 6 if it matters

thanks guys

vtel57 04-06-2007 03:27 PM

Try this:

/dev/hda1 /media/hda1 vfat defaults,utf8,umask=007,gid=46 0 0

and make sure your hda1 sub-directory in /media has rwx permissions for users and groups.

Luck!

tuxrules 04-06-2007 03:30 PM

You will have to adjust the actual permissions on the /media/hda1 directory. Also you may change the mount option user to users. umask=000 is also a good option I've read elsewhere.

Code:

/dev/hda1 /media/hda1 vfat rw,auto,users,sync 0 0


All times are GMT -5. The time now is 06:31 PM.