mirror of
https://git.proxmox.com/git/pve-docs
synced 2025-05-05 22:25:10 +00:00
include/improve new LVM page
This commit is contained in:
parent
d362b7f479
commit
8b849dc378
1
Makefile
1
Makefile
@ -104,6 +104,7 @@ SYSADMIN_PARTS= \
|
|||||||
pve-package-repos \
|
pve-package-repos \
|
||||||
pve-installation \
|
pve-installation \
|
||||||
system-software-updates \
|
system-software-updates \
|
||||||
|
local-lvm \
|
||||||
local-zfs
|
local-zfs
|
||||||
|
|
||||||
SYSADMIN_SOURCES= \
|
SYSADMIN_SOURCES= \
|
||||||
|
@ -80,6 +80,10 @@ my $docs = {
|
|||||||
title => "ZFS on Linux",
|
title => "ZFS on Linux",
|
||||||
category => $cat_refdoc,
|
category => $cat_refdoc,
|
||||||
},
|
},
|
||||||
|
'sysadmin-local-lvm-plain.html' => {
|
||||||
|
title => "Logical Volume Manager (LVM)",
|
||||||
|
category => $cat_refdoc,
|
||||||
|
},
|
||||||
'sysadmin-pve-installation-plain.html' => {
|
'sysadmin-pve-installation-plain.html' => {
|
||||||
title => "Installation",
|
title => "Installation",
|
||||||
category => $cat_refdoc,
|
category => $cat_refdoc,
|
||||||
|
@ -3,9 +3,38 @@ Logical Volume Manager (LVM)
|
|||||||
include::attributes.txt[]
|
include::attributes.txt[]
|
||||||
|
|
||||||
Most people install {pve} directly on a local disk. The {pve}
|
Most people install {pve} directly on a local disk. The {pve}
|
||||||
installation CD offers several options for local disk management. The
|
installation CD offers several options for local disk management, and
|
||||||
current default setup uses LVM and 'ext4' for the root
|
the current default setup uses LVM. The installer let you select a
|
||||||
partition. LVM-thin is used for VM images, because this has efficient
|
single disk for such setup, and uses that disk as physical volume for
|
||||||
support for snapshots and clones.
|
the **V**olume **G**roup (VG) 'pve'. The following output is from a
|
||||||
|
test installation using a small 8GB disk:
|
||||||
|
|
||||||
|
----
|
||||||
|
# pvs
|
||||||
|
PV VG Fmt Attr PSize PFree
|
||||||
|
/dev/sda3 pve lvm2 a-- 7.87g 876.00m
|
||||||
|
|
||||||
|
# vgs
|
||||||
|
VG #PV #LV #SN Attr VSize VFree
|
||||||
|
pve 1 3 0 wz--n- 7.87g 876.00m
|
||||||
|
----
|
||||||
|
|
||||||
|
The installer allocates three **L**ogical **V**olumes (LV) inside this
|
||||||
|
VG:
|
||||||
|
|
||||||
|
----
|
||||||
|
# lvs
|
||||||
|
LV VG Attr LSize Pool Origin Data% Meta%
|
||||||
|
data pve twi-a-tz-- 4.38g 0.00 0.63
|
||||||
|
root pve -wi-ao---- 1.75g
|
||||||
|
swap pve -wi-ao---- 896.00m
|
||||||
|
----
|
||||||
|
|
||||||
|
root:: Formatted as 'ext4', and contains the operation system.
|
||||||
|
|
||||||
|
swap:: Swap partition
|
||||||
|
|
||||||
|
data:: This volume uses LVM-thin, and is used to store VM
|
||||||
|
images. LVM-thin is preferable for this task, because it offers
|
||||||
|
efficient support for snapshots and clones.
|
||||||
|
|
||||||
|
@ -79,6 +79,8 @@ See Also
|
|||||||
|
|
||||||
* link:/wiki/System_Software_Updates[System Software Updates]
|
* link:/wiki/System_Software_Updates[System Software Updates]
|
||||||
|
|
||||||
|
* link:/wiki/Logical_Volume_Manager_(LVM)[Logical Volume Manager (LVM)]
|
||||||
|
|
||||||
* link:/wiki/ZFS_on_Linux[ZFS on Linux]
|
* link:/wiki/ZFS_on_Linux[ZFS on Linux]
|
||||||
|
|
||||||
endif::wiki[]
|
endif::wiki[]
|
||||||
@ -96,6 +98,8 @@ include::system-software-updates.adoc[]
|
|||||||
|
|
||||||
include::pve-network.adoc[]
|
include::pve-network.adoc[]
|
||||||
|
|
||||||
|
include::local-lvm.adoc[]
|
||||||
|
|
||||||
include::local-zfs.adoc[]
|
include::local-zfs.adoc[]
|
||||||
|
|
||||||
endif::wiki[]
|
endif::wiki[]
|
||||||
|
Loading…
Reference in New Issue
Block a user