6.7. 論理ボリュームでの不十分な空きエクステント
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.
デフォルトでは、
vgdisplay
コマンドは空き物理エクステントを、以下の出力行を含んで表示します。
# vgdisplay
--- Volume group ---
...
Free PE / Size 8780 / 34.30 GB
別の方法として、
vgs
コマンドで vg_free_count
と vg_extent_count
引数を使用して、空きエクステントと合計エクステント数を表示します。
[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
8780 の空き物理エクステントに、次のコマンドの実行で、小文字 l の引数を使ってバイトの代わりにエクステントを使用できます。
# lvcreate -l8780 -n testlv testvg
これが、ボリュームグループ内のすべてのエクステントを使用します。
# 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 「リニアボリュームの作成」.