I have a disk partition that is mapped to a separate volume which is listed as

/dev/sda3/ /media/DATA fuseblk ...

in gnome-system-monitor when mounted. However when I start Ubuntu it is not mounted and cd /media/DATA fails. I usually need to firtst access the drive through Nautilus. How do I make it availabale on startup?

link|improve this question

68% accept rate
feedback

1 Answer

The partition must be mounted before you can access it.
You need to add the volume /dev/sda3 to /etc/fstab.

for example:

 file system    mount point       type          options

 /dev/sda3      /media/DATA       vfat            ...

Follow this article:

Ubuntu - Mount Partitions Automatically

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.