mirror of https://github.com/CrimsonTome/tldr.git
lvdisplay, pvdisplay, vgdisplay: Add new pages.
parent
c1fb61cf25
commit
4719d20471
|
@ -0,0 +1,17 @@
|
|||
# lvdisplay
|
||||
|
||||
> Display information about Logical Volume Manager (LVM) logical volumes.
|
||||
> See also: `lvm`
|
||||
> More information: <https://man7.org/linux/man-pages/man8/lvdisplay.8.html>.
|
||||
|
||||
- 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}}
|
|
@ -0,0 +1,14 @@
|
|||
# pvdisplay
|
||||
|
||||
> Display information about Logical Volume Manager (LVM) physical volumes.
|
||||
> See also: `lvm`
|
||||
> More information: <https://man7.org/linux/man-pages/man8/pvdisplay.8.html>.
|
||||
|
||||
- Display information about all physical volumes:
|
||||
|
||||
`sudo pvdisplay`
|
||||
|
||||
- Display information about the physical volume on {{/dev/sda1}}:
|
||||
|
||||
`sudo pvdisplay {{/dev/sda1}}`
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
# vgdisplay
|
||||
|
||||
> Display information about Logical Volume Manager (LVM) volume groups.
|
||||
> See also: `lvm`
|
||||
> More information: <https://man7.org/linux/man-pages/man8/vgdisplay.8.html>.
|
||||
|
||||
- Display information about all volume groups:
|
||||
|
||||
`sudo vgdisplay`
|
||||
|
||||
- Display information about volume group vg1:
|
||||
|
||||
`sudo vgdisplay {{vg1}}`
|
||||
|
Loading…
Reference in New Issue