mount

lsblk -o NAME,UUID

Sample result:

NAME      UUID
sdc       
├─sdc1    A190-92D5
└─sdc2    A198-A7BC

Alternatives to mount the disk:

sudo mount -U {UUID} /mnt

# or

sudo mount --uuid {UUID} /mnt

# or

sudo mount {UUID} /mnt

# or

mount /dev/disk/by-uuid/{UUID} /mnt

linux command disks

Back