실습환경
Cent OS 6.5
오류
Volume group "A" has insufficient free space (1533 extents): 1534 required.
#lvcreate -L 5.99GB -n mylv myVG
Rounding up size to fill physical extent 5.99 GiB
Volume group "A" has insufficient free space (1533 extents): 1534 required.
해결방법
#vgs -o +vg_free_count,vg_extent_count (vg_free_count랑 vg_extent_count 사이 띄워쓰기 금지)
VG #PV #LV #SN Attr VSize VFree Free #Ext
myVG 3 0 0 wz--n- 5.99G 5.99G 1533 1533
입력해서 free를 확인 후 해당 값 넣어서 다시 명령어 실행
#lvcreate -L 1533 -n mylv myVG
Logical volume "mylv" created
다시 확인 시 LV가 1이되고 Free가 0인것을 확인
#vgs -o +vg_free_count,vg_extent_count
VG #PV #LV #SN Attr VSize VFree Free #Ext
myVG 3 1 0 wz--n- 5.99G 0 0 1533
참조 : https://www.centos.org/docs/5/html/Cluster_Logical_Volume_Manager/nofreeext.html
'Linux, Unix > Trouble Shooting' 카테고리의 다른 글
configure: error: *** A compiler with support for C++11 language features is required. (0) | 2019.10.27 |
---|---|
gzip: ~~ invalid compressed data--format violated (0) | 2018.12.28 |
tar 압축 중 메세지 "tar: Removing leading `/' from member names" 뜻 (0) | 2018.06.14 |
tar: Error exit delayed from previous errors 에러 해결방법 (0) | 2018.04.03 |
Similar command is: 'lz' 해결 (0) | 2018.03.09 |