Hei,
I found one solution to this problem, When you have mounted any device fat32 file system
edit the fstab file which will be found in
/etc/fstab
Whereever you find ro replace it with rw
readonly to read/write access
and restart the system
If it does not allow you to save the change
open terminal and type
su
<root password>
vi fstab
<edit it>
This is how fstab file will looks like
/dev/hda2 / ext2 defaults 1 1
/dev/hdb1 /home ext2 defaults 1 2
/dev/cdrom /media/cdrom auto ro,noauto,user,exec 0 0
/dev/fd0 /media/floppy auto rw,noauto,user,sync 0 0
proc /proc proc defaults 0 0
/dev/hda1 swap swap
/dev/hda2 /mnt/c/ fat32,ro,
pri=42 0 0 |