Linux – Check logical volume mount point (command line)

command linelinuxlvmmount

With GNOME Disks utility, I can check whether a logical volume is mounted:

enter image description here

And where is it mounted:

enter image description here

How can I get this information from the command line? Having, for example, the logical volume UUID, I would like to know if it is mounted and where.

Best Answer

Just use lsblk. It prints all disks and their corresponding mount points. Including LVM, MD RAID, etc.

Related Question