To mount a windows partition at startup, you need to do the following.
- get the UUID of the device
blkid- create an entry in /etc/fstab file for the windows NTFS drive
/dev/sda1: UUID="9044866844865140" TYPE="ntfs"
/dev/sda2: LABEL="GHOST DATA" UUID="FCF8-3D81" TYPE="vfat"
/dev/sda5: UUID="b2293182-981b-4291-96ff-dba50f73510d" TYPE="ext3"
/dev/sda6: TYPE="swap" UUID="1d3b683c-c559-43e2-ac46-f3500e27dbfd"
# <file system> <mount point> <type> <options> <dump> <pass>Instead of UUID specifying the device also works. see below
UUID="9044866844865140" /media/disk ntfs-3g defaults,locale=en_US.utf8 0 0
/dev/sda1 /media/disk ntfs-3g defaults,locale=en_US.utf8 0 0Note : both ntfs and ntfs-3g works fine for a windows partition.
The options for fstab are clearly explained in the ubuntu help docs here.
0 comments:
Post a Comment