]> git.proxmox.com Git - pve-docs.git/blame - local-lvm.adoc
Signed-off-by: fritz <f.ramberger@proxmox.com>
[pve-docs.git] / local-lvm.adoc
CommitLineData
08152ae6
DM
1Logical Volume Manager (LVM)
2----------------------------
e71b5d0d 3include::attributes.txt[]
5f09af76
DM
4ifdef::wiki[]
5:pve-toplevel:
6endif::wiki[]
7
08152ae6 8Most people install {pve} directly on a local disk. The {pve}
8b849dc3
DM
9installation CD offers several options for local disk management, and
10the current default setup uses LVM. The installer let you select a
11single disk for such setup, and uses that disk as physical volume for
8c1189b6 12the **V**olume **G**roup (VG) `pve`. The following output is from a
8b849dc3 13test installation using a small 8GB disk:
08152ae6 14
8b849dc3
DM
15----
16# pvs
17 PV VG Fmt Attr PSize PFree
18 /dev/sda3 pve lvm2 a-- 7.87g 876.00m
19
20# vgs
21 VG #PV #LV #SN Attr VSize VFree
22 pve 1 3 0 wz--n- 7.87g 876.00m
23----
24
25The installer allocates three **L**ogical **V**olumes (LV) inside this
26VG:
27
28----
29# lvs
30 LV VG Attr LSize Pool Origin Data% Meta%
31 data pve twi-a-tz-- 4.38g 0.00 0.63
32 root pve -wi-ao---- 1.75g
33 swap pve -wi-ao---- 896.00m
34----
35
8c1189b6 36root:: Formatted as `ext4`, and contains the operation system.
8b849dc3
DM
37
38swap:: Swap partition
39
40data:: This volume uses LVM-thin, and is used to store VM
41images. LVM-thin is preferable for this task, because it offers
42efficient support for snapshots and clones.
08152ae6 43
d822a869
DM
44Hardware
45~~~~~~~~
46
47We highly recommend to use a hardware RAID controller (with BBU) for
48such setups. This increases performance, provides redundancy, and make
49disk replacements easier (hot-pluggable).
50
51LVM itself does not need any special hardware, and memory requirements
52are very low.
53
54
55Bootloader
56~~~~~~~~~~
57
58We install two boot loaders by default. The first partition contains
59the standard GRUB boot loader. The second partition is an **E**FI **S**ystem
60**P**artition (ESP), which makes it possible to boot on EFI systems.