Open /etc/fstab and put a hash (#) in front of the Win partition boot line (comment it out):
Code:
#Entry for /dev/sda1 :
# UUID=8410C40010C3F768 /media/sda1 ntfs-3g defaults,locale=en_GB.UTF-8 0 0
I have just noticed something.
Code:
#Entry for /dev/sda7 :
UUID=421C9FB21C9FA009 /media/ben/421C9FB21C9FA009 ntfs-3g defaults,nosuid,nodev,locale=en_GB.UTF-8 0 0
#Entry for /dev/sda1 :
UUID=8410C40010C3F768 /media/sda1 ntfs-3g defaults,locale=en_GB.UTF-8 0 0
UUID=9685-328A /media/sda7 vfat utf8,umask=007,gid=46 0 1
I'm confused so possibly the system is at boot also. You best check your UUIDs again with 'sudo blkid' and fix up the fstab by deleting the entry that is incorrect. You still have your old boot line in there as well which is trying to mount at /media/sda7. So you have applied the ntfs-3g to the obscure system created line, but the last line here is still vfat.
Perhaps make it look like this, at a guess:
Code:
#Entry for /dev/sda7 :
UUID=421C9FB21C9FA009 /media/sda7 ntfs-3g defaults,nosuid,nodev,locale=en_GB.UTF-8 0 0
#Entry for /dev/sda1 :
# UUID=8410C40010C3F768 /media/sda1 ntfs-3g defaults,locale=en_GB.UTF-8 0 0
... if that is the correct UUID for /dev/sda7.
Bookmarks