Red Hat Training

A Red Hat training course is available for Red Hat Enterprise Linux

6.7. Estensioni disponibili insufficienti per un volume logico

You may get the error message "Insufficient free extents" when creating a logical volume when you think you have enough extents based on the output of the vgdisplay or vgs commands. This is because these commands round figures to 2 decimal places to provide human-readable output. To specify exact size, use free physical extent count instead of some multiple of bytes to determine the size of the logical volume.
Il comando vgdisplay per default include questa riga la quale indica le estensioni fisiche disponibili.
# vgdisplay
  --- Volume group ---
  ...
  Free  PE / Size       8780 / 34.30 GB
Alternativamente potrete utilizzare le opzioni vg_free_count e vg_extent_count di vgs, per visualizzare le estensioni disponibili ed il numero totale di estensioni.
[root@tng3-1 ~]# vgs -o +vg_free_count,vg_extent_count
  VG     #PV #LV #SN Attr   VSize  VFree  Free #Ext
  testvg   2   0   0 wz--n- 34.30G 34.30G 8780 8780
Con 8780 estensioni fisiche disponibili, è possibile eseguire il seguente comando utilizzando l'opzione I minuscola per usare le estensioni invece dei byte:
# lvcreate -l8780 -n testlv testvg
Verranno utilizzate tutte le estensioni disponibili nel gruppo di volumi.
# vgs -o +vg_free_count,vg_extent_count
  VG     #PV #LV #SN Attr   VSize  VFree Free #Ext
  testvg   2   1   0 wz--n- 34.30G    0     0 8780
Alternately, you can extend the logical volume to use a percentage of the remaining free space in the volume group by using the -l argument of the lvcreate command. For information, see Sezione 4.4.1.1, «Creazione volumi lineari».