Great links. I want to ask and make sure, before typing anything I cannot reverse.
So, the drive I want to mount has UUID=4C44027F44026C50
Should I just
vim /etc/fstab
And just append it there, like the other lines , in the same typing format pretty much?
So, /etc/fstab:
# Static information about the filesystems.
# See fstab(5) for details.
# <file system> <dir> <type> <options> <dump> <pass>
# /dev/sda2
UUID=dd74678b-a072-4fcc-83aa-af7e226c1ac5 / ext4 rw,relatime 0 1
# /dev/sda1
UUID=5BD7-6DD0 /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 2
# /dev/sda3
UUID=3982a440-caea-4f41-a30a-80bdd863463d /home ext4 rw,relatime 0 2
Should become the following?
# Static information about the filesystems.
# See fstab(5) for details.
# <file system> <dir> <type> <options> <dump> <pass>
# /dev/sda2
UUID=dd74678b-a072-4fcc-83aa-af7e226c1ac5 / ext4 rw,relatime 0 1
# /dev/sda1
UUID=5BD7-6DD0 /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 2
# /dev/sda3
UUID=3982a440-caea-4f41-a30a-80bdd863463d /home ext4 rw,relatime 0 2
#/dev/sdb3
UUID=4C44027F44026C50 /mnt ext4 rw,relatime 0 2