X-Git-Url: https://git.proxmox.com/?p=pve-docs.git;a=blobdiff_plain;f=local-lvm.adoc;h=999b7bc958abad7aacad881490aa00f491b47e0d;hp=6f66292bb36c0c494e6f93379e52ba4a52864a72;hb=8b849dc378465dc19efca1d155477b45772191c5;hpb=d362b7f4796a108c3593b9cb070c6aa761f283cb diff --git a/local-lvm.adoc b/local-lvm.adoc index 6f66292..999b7bc 100644 --- a/local-lvm.adoc +++ b/local-lvm.adoc @@ -3,9 +3,38 @@ Logical Volume Manager (LVM) include::attributes.txt[] Most people install {pve} directly on a local disk. The {pve} -installation CD offers several options for local disk management. The -current default setup uses LVM and 'ext4' for the root -partition. LVM-thin is used for VM images, because this has efficient -support for snapshots and clones. +installation CD offers several options for local disk management, and +the current default setup uses LVM. The installer let you select a +single disk for such setup, and uses that disk as physical volume for +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.