Here is an example for /etc/fstab:
Code:
/dev/hda6 /mnt/hd/games vfat auto,owner,rw,uid=0,gid=306,umask=0022,fmask=0133,dmask=0022,noexec 0 0
the 'uid' and 'gid' are the user-id, and group-id numbers. Use "id <username>" to get the value of a certain user, or inspect /etc/passwd and /etc/group yourself.
The umask the inverse of a file mask. (it's a mask

)
0 = all allowed
1 = no execute (file) or browse (directories)
2 = no write
4 = no read
2 + 4 = 6 = no read+write
the fmask and dmask doesn't seam to work though

for some reason, the files at the vfat drive are always marked as executable. (that's why I have the 'noexec' flag enabled too)
"man fstab" (console), or "man:fstab" (konqueror) could be a great help too
