diff --git a/pages/linux/lvdisplay.md b/pages/linux/lvdisplay.md new file mode 100644 index 0000000000..fc93e28512 --- /dev/null +++ b/pages/linux/lvdisplay.md @@ -0,0 +1,17 @@ +# lvdisplay + +> Display information about Logical Volume Manager (LVM) logical volumes. +> See also: `lvm` +> More information: . + +- Display information about all logical volumes: + +`sudo lvdisplay` + +- Display information about all logical volumes in volume group vg1: + +`sudo lvdisplay {{vg1}}` + +- Display information about logical volume lv1 in volume group vg1: + +`sudo lvdisplay {{vg1/lv1}} diff --git a/pages/linux/pvdisplay.md b/pages/linux/pvdisplay.md new file mode 100644 index 0000000000..1633e802c5 --- /dev/null +++ b/pages/linux/pvdisplay.md @@ -0,0 +1,14 @@ +# pvdisplay + +> Display information about Logical Volume Manager (LVM) physical volumes. +> See also: `lvm` +> More information: . + +- Display information about all physical volumes: + +`sudo pvdisplay` + +- Display information about the physical volume on {{/dev/sda1}}: + +`sudo pvdisplay {{/dev/sda1}}` + diff --git a/pages/linux/vgdisplay.md b/pages/linux/vgdisplay.md new file mode 100644 index 0000000000..d003e1f6e9 --- /dev/null +++ b/pages/linux/vgdisplay.md @@ -0,0 +1,14 @@ +# vgdisplay + +> Display information about Logical Volume Manager (LVM) volume groups. +> See also: `lvm` +> More information: . + +- Display information about all volume groups: + +`sudo vgdisplay` + +- Display information about volume group vg1: + +`sudo vgdisplay {{vg1}}` +