NotebookForums.com › Forums › General Notebook Discussions › Linux & Other OS's › linux and windows partition
New Posts  All Forums:Forum Nav:

linux and windows partition

post #1 of 4
Thread Starter 
After partitioning my HD and installing I somehow managed to make a FAT32 partition accesible to both Fedora and XP (using mnt). Now I have noticed that the permissions are set to drwxr_xr_x. I tried to use chmod 777 to give write access to all users, but it's not working. How do I change the permissions on such a mounted device?
post #2 of 4
PHP Code:
sudo mkdir /media/windows sudo mount /dev/hda1 /media/windows/ -t vfat -o umask=000
post #3 of 4
or edit your fstab to mount it at boot with those umak settings.
post #4 of 4
/dev/hdb1 /mnt/hdb1 vfat auto,users,exec,umask=000,quiet 0 0

this will work too
New Posts  All Forums:Forum Nav:
  Return Home
  Back to Forum: Linux & Other OS's
NotebookForums.com › Forums › General Notebook Discussions › Linux & Other OS's › linux and windows partition