]> git.proxmox.com Git - pve-docs.git/blame - local-lvm.adoc
more ACME documentation
[pve-docs.git] / local-lvm.adoc
CommitLineData
08152ae6
DM
1Logical Volume Manager (LVM)
2----------------------------
5f09af76
DM
3ifdef::wiki[]
4:pve-toplevel:
5endif::wiki[]
6
08152ae6 7Most people install {pve} directly on a local disk. The {pve}
8b849dc3
DM
8installation CD offers several options for local disk management, and
9the current default setup uses LVM. The installer let you select a
10single disk for such setup, and uses that disk as physical volume for
8c1189b6 11the **V**olume **G**roup (VG) `pve`. The following output is from a
8b849dc3 12test installation using a small 8GB disk:
08152ae6 13
8b849dc3
DM
14----
15# pvs
16 PV VG Fmt Attr PSize PFree
17 /dev/sda3 pve lvm2 a-- 7.87g 876.00m
18
19# vgs
20 VG #PV #LV #SN Attr VSize VFree
21 pve 1 3 0 wz--n- 7.87g 876.00m
22----
23
24The installer allocates three **L**ogical **V**olumes (LV) inside this
25VG:
26
27----
28# lvs
29 LV VG Attr LSize Pool Origin Data% Meta%
30 data pve twi-a-tz-- 4.38g 0.00 0.63
31 root pve -wi-ao---- 1.75g
32 swap pve -wi-ao---- 896.00m
33----
34
8c1189b6 35root:: Formatted as `ext4`, and contains the operation system.
8b849dc3
DM
36
37swap:: Swap partition
38
39data:: This volume uses LVM-thin, and is used to store VM
40images. LVM-thin is preferable for this task, because it offers
41efficient support for snapshots and clones.
08152ae6 42
d2b02c4d
DM
43For {pve} versions up to 4.1, the installer creates a standard logical
44volume called ``data'', which is mounted at `/var/lib/vz`.
45
46Starting from version 4.2, the logical volume ``data'' is a LVM-thin pool,
47used to store block based guest images, and `/var/lib/vz` is simply a
dae412f9
WL
48directory on the root file system.
49
d822a869
DM
50Hardware
51~~~~~~~~
52
53We highly recommend to use a hardware RAID controller (with BBU) for
54such setups. This increases performance, provides redundancy, and make
55disk replacements easier (hot-pluggable).
56
57LVM itself does not need any special hardware, and memory requirements
58are very low.
59
60
61Bootloader
62~~~~~~~~~~
63
64We install two boot loaders by default. The first partition contains
65the standard GRUB boot loader. The second partition is an **E**FI **S**ystem
66**P**artition (ESP), which makes it possible to boot on EFI systems.
dae412f9
WL
67
68
69Creating a Volume Group
70~~~~~~~~~~~~~~~~~~~~~~~
71
72Let's assume we have an empty disk `/dev/sdb`, onto which we want to
d2b02c4d
DM
73create a volume group named ``vmdata''.
74
9661bfe3 75CAUTION: Please note that the following commands will destroy all
d2b02c4d 76existing data on `/dev/sdb`.
dae412f9
WL
77
78First create a partition.
79
80 # sgdisk -N 1 /dev/sdb
81
d2b02c4d
DM
82
83Create a **P**hysical **V**olume (PV) without confirmation and 250K
dae412f9
WL
84metadatasize.
85
86 # pvcreate --metadatasize 250k -y -ff /dev/sdb1
87
d2b02c4d
DM
88
89Create a volume group named ``vmdata'' on `/dev/sdb1`
dae412f9
WL
90
91 # vgcreate vmdata /dev/sdb1
92
93
94Creating an extra LV for `/var/lib/vz`
95~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
96
97This can be easily done by creating a new thin LV.
98
99 # lvcreate -n <Name> -V <Size[M,G,T]> <VG>/<LVThin_pool>
100
101A real world example:
102
103 # lvcreate -n vz -V 10G pve/data
104
105Now a filesystem must be created on the LV.
106
188b4dc5 107 # mkfs.ext4 /dev/pve/vz
dae412f9
WL
108
109At last this has to be mounted.
110
d2b02c4d
DM
111WARNING: be sure that `/var/lib/vz` is empty. On a default
112installation it's not.
dae412f9
WL
113
114To make it always accessible add the following line in `/etc/fstab`.
115
116 # echo '/dev/pve/vz /var/lib/vz ext4 defaults 0 2' >> /etc/fstab
117
118
119Resizing the thin pool
120~~~~~~~~~~~~~~~~~~~~~~
121
d2b02c4d
DM
122Resize the LV and the metadata pool can be achieved with the following
123command.
dae412f9
WL
124
125 # lvresize --size +<size[\M,G,T]> --poolmetadatasize +<size[\M,G]> <VG>/<LVThin_pool>
126
d2b02c4d
DM
127NOTE: When extending the data pool, the metadata pool must also be
128extended.
129
dae412f9 130
d2b02c4d 131Create a LVM-thin pool
dae412f9
WL
132~~~~~~~~~~~~~~~~~~~~~~
133
134A thin pool has to be created on top of a volume group.
d2b02c4d 135How to create a volume group see Section LVM.
dae412f9
WL
136
137 # lvcreate -L 80G -T -n vmstore vmdata