7

Given the partition device file /dev/sdh1, I need to find out the label of this device.

dmesg doesn't mention its label while GParted reveals that it is called H2N_SD:

gparted info about /dev/sdh

I need to build a way to be able to run something similar to

$ partlabel /dev/sdh1
H2N_SD

This question is nearly the opposite of getting device name & mount point from label.

qubodup
  • 2,386

1 Answers1

5

Use blkid:

$ blkid -s LABEL -o value /dev/sdh1
H2N_SD
qubodup
  • 2,386