
Originally Posted by
themortarman
I have set up a fat32 partition in order to share between the 2 OS on my system. I am trying to change the permissions on the fat32 partition have not had much luck. I has been suggested that I need to add a line in fstab. Any thoughts would be most helpfull.
Edit: Want to be able to write to the partition as well as read and execute
TMM,
Here's the entry I use in my /etc/fstab file to mount my fat32 partition:
Code:
/dev/hda5 /mnt/my_win_dir vfat rw,noatime,uid=500,gid=500,user 0 0
the rw option means read/write access, and the uid and gid are user and group ID numbers for the owner of the partition (500 being the default user, you). So, with these settings you have read/write access and ownership and hence the necessary permissions.
Edit your mount point (/mnt/my_win_dir) as appropriate 
Try it and see if it works for you 
Ned