Those
fstab entries took correct, although I put a
rw before the defaults. Here's what I do on this laptop with Vista installed:
First, because using UUID still works if drives are moved, I get the UUID to partition map:
Code:
$ ls -l /dev/disk/by-uuid/
total 0
lrwxrwxrwx 1 root root 10 2009-01-07 07:44 17841f9e-fa3a-4850-aa52-0e6d0ba242e3 ->../../sda5
lrwxrwxrwx 1 root root 10 2009-01-07 07:44 22b2553f-6199-4b82-b20c-6ad7c7b6688f ->../../sda6
lrwxrwxrwx 1 root root 10 2009-01-07 07:44 2C88743C8874071C -> ../../sda2
lrwxrwxrwx 1 root root 10 2009-01-07 07:44 342D7D7923AC4107 -> ../../sda1
lrwxrwxrwx 1 root root 10 2009-01-07 07:44 92ff1a1e-9e16-4828-953e-fbdfde536452 ->../../sdb1
Then create the entries in the
fstab:
Code:
$ cat /etc/fstab | grep -i ntfs
UUID=342D7D7923AC4107 /Vista ntfs-3g rw,defaults 0 0
UUID=2C88743C8874071C /Vista/Recovery ntfs-3g rw,defaults 0 0
<edit>
By the way, I prefer mounting devices "owned" by other operating system directly under / rather than in sub-directories of /mnt. Obviously you can mount any device anywhere you want it in your file system, so it's of no particular significance. Since all "standard" Linux systems use lower case directory names, I create my mount points with initial upper case names:
Code:
$ ls -d /[KUV]*
/Kingston /Ubuntu /USB_Fedora /Vista
</edit>