3.1 Créer une partition LVM
(Redirigé depuis 1.1 Créer une partition LVM)
Aller à la navigation
Aller à la recherche
Créer le volume physique
#pvcreate /dev/sda2 (une partition peut être un volume physique LVM)
Créer un volume group
#vgcreate -s 32M $VG_NAME /dev/sda2 /dev/sdb (-s Taille des PP)
Créer le volume logique
#lvcreate -L 650M -n $LV_NAME $VG_NAME
Formater le FS
#mkfs -t ext4 /dev/mapper/rootvg-homelv
Agrandir un FS
#lvextend -L +10G /dev/mapper/rootvg-homelv
Puis suivant le type de FS ext2resize (extX), resize2fs (reiserfs),xfs_growfs (XFS) sur le LV
Afficher les VG
#vgdisplay --- Volume group --- VG Name vgdata System ID Format lvm2 Metadata Areas 2 Metadata Sequence No 15 VG Access read/write VG Status resizable MAX LV 0 Cur LV 1 Open LV 1 Max PV 0 Cur PV 2 Act PV 2 VG Size 1,82 TiB PE Size 4,00 MiB Total PE 476934 Alloc PE / Size 409600 / 1,56 TiB Free PE / Size 67334 / 263,02 GiB VG UUID r7OZUl-O2Ti-y5bv-AlUS-NB1W-CGLL-l2MnGN --- Volume group --- VG Name rootvg System ID Format lvm2 Metadata Areas 1 Metadata Sequence No 11 VG Access read/write VG Status resizable MAX LV 0 Cur LV 7 Open LV 7 Max PV 0 Cur PV 1 Act PV 1 VG Size 372,53 GiB PE Size 4,00 MiB Total PE 95367 Alloc PE / Size 37511 / 146,53 GiB Free PE / Size 57856 / 226,00 GiB VG UUID 4AO2fI-ru5D-Twu0-aetU-Sg86-kL8q-sJhFM8
Ajouter un disque dans un VG
#vgextend $VG_NAME /dev/sdX