<div class="gmail_quote">On Wed, Dec 2, 2009 at 11:25 PM, Dave & Ella McMullen <span dir="ltr"><<a href="mailto:DavidM@hisfeet.net">DavidM@hisfeet.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Do you need to have that partition as vfat? vfat partitions don't do well<br>
with permissions.<br>
.            Dave McMullen<br>
<div><div></div><div class="h5"><br>
<br>
David McGlone wrote:<br>
> I have an extra partition on my computer that I use for a personal web<br>
> server<br>
> to do PHP development and I am having a problem changing permissions on<br>
> files<br>
> on that partition.<br>
><br>
> Here's how I have this partition set up:<br>
> fstab entry:<br>
><br>
> /dev/sda5  /home/david/www  vfat  user,auto  0  0<br>
</div></div></blockquote></div><br>VFAT permissions are fixed when you mount the partition. See the man page for "mount". You will need the umask, dmask, and/or fmask options under FAT. Add these to your fstab:<br>
<br>/dev/sda5  /home/david/www  vfat  user,auto,umask=777  0  0<br><br>-- <br>Robert Wohlfarth<br><br>