mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
lvcreate, lvextend, lvreduce, lvremove, lvresize, lvs, pvcreate, pvs, vgcreate, vgs: harmonize descriptions (#5316)
This commit is contained in:
parent
df5439818b
commit
84d537deb1
10 changed files with 23 additions and 11 deletions
|
@ -1,7 +1,8 @@
|
||||||
# lvcreate
|
# lvcreate
|
||||||
|
|
||||||
> Creates a logical volume in an existing volume group.
|
> Creates a logical volume in an existing volume group. A volume group is a collection of logical and physical volumes.
|
||||||
> A volume group is a collection of logical and physical volumes.
|
> See also: `lvm`.
|
||||||
|
> More information: <https://man7.org/linux/man-pages/man8/lvcreate.8.html>.
|
||||||
|
|
||||||
- Create a logical volume of 10 gigabytes in the volume group vg1:
|
- Create a logical volume of 10 gigabytes in the volume group vg1:
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# lvextend
|
# lvextend
|
||||||
|
|
||||||
> Increase the size of a logical volume.
|
> Increase the size of a logical volume.
|
||||||
> One of the Logical Volume Manager (LVM) tools.
|
> See also: `lvm`.
|
||||||
> More information: <https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/logical_volume_manager_administration>.
|
> More information: <https://man7.org/linux/man-pages/man8/lvextend.8.html>.
|
||||||
|
|
||||||
- Increase a volume's size to 120GB:
|
- Increase a volume's size to 120GB:
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
# lvreduce
|
# lvreduce
|
||||||
|
|
||||||
> Reduce the size of a logical volume.
|
> Reduce the size of a logical volume.
|
||||||
|
> See also: `lvm`.
|
||||||
|
> More information: <https://man7.org/linux/man-pages/man8/lvreduce.8.html>.
|
||||||
|
|
||||||
- Reduce a volume's size to 120GB:
|
- Reduce a volume's size to 120GB:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
# lvremove
|
# lvremove
|
||||||
|
|
||||||
> Remove one or more logical volumes.
|
> Remove one or more logical volumes.
|
||||||
> More information: <https://sourceware.org/lvm2/>.
|
> See also: `lvm`.
|
||||||
|
> More information: <https://man7.org/linux/man-pages/man8/lvremove.8.html>.
|
||||||
|
|
||||||
- Remove a logical volume in a volume group:
|
- Remove a logical volume in a volume group:
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
# lvresize
|
# lvresize
|
||||||
|
|
||||||
> Change the size of a logical volume.
|
> Change the size of a logical volume.
|
||||||
|
> See also: `lvm`.
|
||||||
> More information: <https://man7.org/linux/man-pages/man8/lvresize.8.html>.
|
> More information: <https://man7.org/linux/man-pages/man8/lvresize.8.html>.
|
||||||
|
|
||||||
- Change the size of a logical volume to 120GB:
|
- Change the size of a logical volume to 120GB:
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
# lvs
|
# lvs
|
||||||
|
|
||||||
> Display information about LVM logical volumes.
|
> Display information about logical volumes.
|
||||||
> More information: <https://www.man7.org/linux/man-pages/man8/lvs.8.html>.
|
> See also: `lvm`.
|
||||||
|
> More information: <https://man7.org/linux/man-pages/man8/lvs.8.html>.
|
||||||
|
|
||||||
- Display information about logical volumes:
|
- Display information about logical volumes:
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
# pvcreate
|
# pvcreate
|
||||||
|
|
||||||
> Initialize a physical volume (disk or partition) for use by the Logical Volume Manager (LVM).
|
> Initialize a disk or partition for use as a physical volume.
|
||||||
|
> See also: `lvm`.
|
||||||
|
> More information: <https://man7.org/linux/man-pages/man8/pvcreate.8.html>.
|
||||||
|
|
||||||
- Initialize the `/dev/sda1` volume for use by LVM:
|
- Initialize the `/dev/sda1` volume for use by LVM:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
# pvs
|
# pvs
|
||||||
|
|
||||||
> Display information about LVM physical volumes.
|
> Display information about physical volumes.
|
||||||
> More information: <https://www.man7.org/linux/man-pages/man8/pvs.8.html>.
|
> See also: `lvm`.
|
||||||
|
> More information: <https://man7.org/linux/man-pages/man8/pvs.8.html>.
|
||||||
|
|
||||||
- Display information about physical volumes:
|
- Display information about physical volumes:
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
# vgcreate
|
# vgcreate
|
||||||
|
|
||||||
> Create volume groups combining multiple mass-storage devices.
|
> Create volume groups combining multiple mass-storage devices.
|
||||||
|
> See also: `lvm`.
|
||||||
|
> More information: <https://man7.org/linux/man-pages/man8/vgcreate.8.html>.
|
||||||
|
|
||||||
- Create a new volume group called vg1 using the `/dev/sda1` device:
|
- Create a new volume group called vg1 using the `/dev/sda1` device:
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
# vgs
|
# vgs
|
||||||
|
|
||||||
> Display information about LVM volume groups.
|
> Display information about volume groups.
|
||||||
|
> See also: `lvm`.
|
||||||
> More information: <https://man7.org/linux/man-pages/man8/vgs.8.html>.
|
> More information: <https://man7.org/linux/man-pages/man8/vgs.8.html>.
|
||||||
|
|
||||||
- Display information about volume groups:
|
- Display information about volume groups:
|
||||||
|
|
Loading…
Add table
Reference in a new issue