I can boot into my Windows XP or Ubuntu 10.04 with no problem. When I was on 9.10, I can usually browse to my windows partitions with the File Browser. Now that I have upgraded to 10.04, I can't see my windows partitions anymore through File Browser. Any ideas how to fix this?

link|improve this question

1  
First of all you should check if you windows partition is auto-mount when the system boot, it happen when updating that it clear some auto-mount stuff... – Marc-Andre R. May 3 '10 at 12:31
feedback

1 Answer

up vote 1 down vote accepted

You can simply add the line into the 'fstab'.
Open it with: sudo gedit /etc/fstab
Start a new line with the following content:
/dev/sdaX /mnt/WIN ntfs-3g 0 0

First one is the partition. Look it up which one you need with sudo cfdisk or sudo fdisk -l.
Then use that in the first part (like /dev/sda1, /dev/sdb3, etc).

Second part is the mount point. You can mount it in your home, in /mnt, /media, etc. I usually just create a new folder like /mnt/WIN (sudo mkdir /mnt/WIN), and use that. However you can use the /home/user/ntfs for example. Whatever you want.

Finally save the file (fstab) and do a sudo mount /mnt/WIN (where /mnt/WIN is the mount point you used).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.