Add Automount Options for the Secondary SSD in Ubuntu-NUC
1) Format the SSD to ext4 format (only work with this format)
2) Get the UUID of the drive by the command
sudo blkid | grep sd
We should receive something like the following:
3) Create a mount point, e.g. /home/nuc/nucssd2
and add the following command to the end of the /etc/fstab
file
UUID=a3d5a590-aa8f-455d-908e-f53453711278 /home/nuc/nucssd2 ext4 defaults 0 0
4) Set the ownership of the mount point directory
sudo umount -f /home/nuc/nucssd2
sudo mount -a
sudo chown $USER:$USER/home/nuc/nucssd2
5) Reboot and everything should work as expected