From 4719d2047181569de84cc0fb54d238c2d3878012 Mon Sep 17 00:00:00 2001 From: Adam Herst Date: Thu, 11 Mar 2021 14:39:51 -0500 Subject: [PATCH] lvdisplay, pvdisplay, vgdisplay: Add new pages. --- pages/linux/lvdisplay.md | 17 +++++++++++++++++ pages/linux/pvdisplay.md | 14 ++++++++++++++ pages/linux/vgdisplay.md | 14 ++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 pages/linux/lvdisplay.md create mode 100644 pages/linux/pvdisplay.md create mode 100644 pages/linux/vgdisplay.md diff --git a/pages/linux/lvdisplay.md b/pages/linux/lvdisplay.md new file mode 100644 index 000000000..fc93e2851 --- /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 000000000..1633e802c --- /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 000000000..d003e1f6e --- /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}}` +