Jump to content

Can't write to fat32 partition [Solved]


YaAqoB
 Share

Recommended Posts

Hi,

IO can;t seem to write to my fat32 drive.

Here is my fstab

 

/dev/hda6 / reiserfs notail 1 1

none /dev/pts devpts mode=0620 0 0

/dev/hdd2 /mnt/LinuxStuff ext3 defaults 1 2

/dev/hdd1 /mnt/Movies vfat umask=000,iocharset=iso8859-15,codepage=850 0 0

/dev/hdb5 /mnt/OtherStuff ntfs umask=0,nls=iso8859-15,ro 0 0

/dev/hdb1 /mnt/WindowsApps ntfs umask=0022 0 0

/dev/hdc /mnt/cdrom auto umask=0,user,iocharset=iso8859-15,codepage=850,noauto,ro,exec,users 0 0

/dev/hda1 /mnt/windows ntfs umask=0,nls=iso8859-15,ro 0 0

none /proc proc defaults 0 0

/dev/hda5 swap swap defaults 0 0

Edited by YaAqoB
Link to comment
Share on other sites

you must add "user" or "users" to the options so that a user can mount or unmount it:

 

/dev/hdd1 /mnt/Movies vfat users,umask=000,iocharset=iso8859-15,codepage=850 0 0

 

adding "noauto" is also recommended, since if it gets mounted at boot by root, only root can write to it, so mounting it as a user is better. you can also type as root in console "chmod 777 /mnt/Movies" so that everyone can write to the folder.

Edited by arthur
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...