pvs
Report physical volume information
TLDR
List physical volumes
$ sudo pvs
List all including non-PVscopy
$ sudo pvs -a
Verbose outputcopy
$ sudo pvs -v
Show specific fieldscopy
$ sudo pvs -o pv_name,vg_name,pv_size
Append fieldcopy
$ sudo pvs -o +field_name
No headingscopy
$ sudo pvs --noheadings
Use separatorcopy
$ sudo pvs --separator =
copy
SYNOPSIS
pvs [OPTIONS] [PhysicalVolume...]
DESCRIPTION
pvs displays information about physical volumes in a configurable table format. It shows device names, volume groups, sizes, and free space for each physical volume.
PARAMETERS
-a, --all
Show devices that are not physical volumes-v, --verbose
Increase verbosity and show additional details-o, --options fields
Specify which fields to display--noheadings
Suppress the heading line in output--separator char
Use specified character as field separator--units units
Display sizes in specified units
CAVEATS
Physical volumes that are not part of a volume group will show empty VG field. Use -a to see devices that could become physical volumes.
HISTORY
pvs is part of LVM2, the Linux Logical Volume Manager.