Mount FAT32 vol in read/write for non-root users? 

Newsgroups: comp.os.linux.help,comp.os.linux.misc,comp.os.linux.setup >How can I mount a FAT32 volume so that non-root accounts can read and >write to it? > >root can read/write, but non-root can only read. I'm using this in fstab: > > /dev/sdb1 /mnt/remv vfat user,rw

Just figured this out last night, here is mine:

/dev/hda1 /windows vfat user,exec,conv=binary,rw,umask=000 0 0

The part that is relevent is the umask=000, that does the magic.

moonie ;)