Project Wild Penguin 18.4.2017: Label Partitions and Automount on Startup
Label Partitions: To label partitions on Linux based system from command line, follow the process given below: Replace /dev/sdxN with your partition (e.g. /dev/sdc1 ). for FAT32: sudo mlabel -i /dev/sdxN ::"my_label" or: sudo fatlabel /dev/sdxN my_label for NTFS: sudo ntfslabel /dev/sdxN my_label for exFAT: sudo exfatlabel /dev/sdxN my_label for ext2/3/4: sudo e2label /dev/sdxN my_label for BTRFS: sudo btrfs filesystem label /dev/sdxN my_label To label them through GUI based app, you can use GParted tool. Automount Partitions: To automount partitions on startup, follow the process given below: Fire up a terminal. [IMPORTANT] sudo cp /etc/fstab /etc/fstab.old - Create a backup of the fstab file just in case something unwanted happens. sudo blkid - Note the UUID of the partition you want to automount. sudo nano /etc/fstab - Copy the following line to the end of the file, save it and reboot afterwards to check if it worked. ...