Tag Archives: linux

Automount Partitions in Linux with “FSTAB”

Normally, the Partitions in Linux will not mount automatically.
We can solve it with “FSTAB”.

1. type sudo blkid in terminal

2. copy the UUID of the partition to automount and note the LABEL

3. type sudo nano /etc/fstab or sudo gedit /etc/fstab in terminal

4. type UUID=”UUID NUMBER*” (TAB**) “LABEL” (in my case, /media/D) (TAB) EXTENSION (in my case ntfs) (TAB) defaults (TAB) 0 (TAB) 0

e.g.: UUID=”656767868898797″ /media/D ntfs defaults 0 0

* Paste the UUID Number, you copied from “blkid”

** after each entry press TAB button

715 total views, no views today