Hi, I just installed ubuntu today. I'm having a problem mounting my windows paritions as rw. Here's my /etc/fstab:
Code:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/hda3 / ext2 defaults,errors=remount-ro 0 1
/dev/hda4 /home ext2 defaults 0 2
/dev/hdc3 none swap sw 0 0
/dev/hda1 /mnt/c auto auto,user,rw 0 2
/dev/hda2 /mnt/ranjan auto auto,user,rw 0 2
/dev/hdc1 /mnt/windows auto auto,user,rw 0 2
/dev/hdd /media/cdrom0 udf,iso9660 ro,user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
The directory permissions in /mnt/ are:
Code:
drwxr-xr-x 28 root root 16K 1970-01-01 05:30 c
drwxr-xr-x 26 root root 8.0K 1970-01-01 05:30 ranjan
drwxr-xr-x 13 root root 4.0K 1970-01-01 05:30 windows
And here's an output of /proc/mounts:
Code:
rootfs / rootfs rw 0 0
/dev2/root2 / ext2 rw 0 0
proc /proc proc rw,nodiratime 0 0
sysfs /sys sysfs rw 0 0
/dev2/root2 /.dev ext2 rw 0 0
none /dev tmpfs rw 0 0
devpts /dev/pts devpts rw 0 0
tmpfs /dev/shm tmpfs rw 0 0
/dev/hda4 /home ext2 rw 0 0
usbfs /proc/bus/usb usbfs rw 0 0
/dev/hda1 /mnt/c vfat rw,nodiratime,nosuid,nodev,noexec,fmask=0022,dmask=0022 0 0
/dev/hda2 /mnt/ranjan vfat rw,nodiratime,nosuid,nodev,noexec,fmask=0022,dmask=0022 0 0
/dev/hdc1 /mnt/windows vfat rw,nodiratime,nosuid,nodev,noexec,fmask=0022,dmask=0022 0 0
Still I'm not able to edit/create any file on the partitions. I also ran fsck on the drives, but still doesn't work. Can someone help?