How to Auto mount partitions on boot in Fedora

Try Fast Read
1
0



Open Terminal
Login as root, by typing “su –” (without quotes)
Now type in blkid
Output will be similar to:
/dev/sda5: LABEL=”File” UUID=”01CCCE1FC7BA38C0″ TYPE=”ntfs”
note down the UUID of the disk you want to mount
Now again in terminal type
“gedit /etc/fstab” or “vi /etc/fstab”
and in the editing window
add
/dev/disk/by-uuid/[UUID of Partition] /mnt/[Name of folder to mount] auto nosuid,nodev,nofail,x-gvfs-show 0 0
/dev/disk/by-uuid/01CCCE1FC7BA38C0 /mnt/01CCCE1FC7BA38C0 auto nosuid,nodev,nofail,x-gvfs-show 0 0

Post navigation