Lveextend에서 여유 공간을 찾을 수 없습니다.

Lveextend에서 여유 공간을 찾을 수 없습니다.

Ubuntu 16.04에서 lvm 파티션을 확장하려고 하는데

lvextend -l +100%FREE /dev/Server0-vg/root 

프로그램

New size (3861 extents) matches existing size (3861 extents)
Run `lvextend --help' for more information.

내 lvm 파티션은 /dev/sda2에 있는 /dev/sda5입니다. 둘 다 159GB입니다. LV 디스플레이는 다음을 보여줍니다:

--- Logical volume ---
LV Path                /dev/Server0-vg/root
LV Name                root
VG Name                Server0-vg
LV UUID                fxh0JM-oKQM-nIrj-c5S0-Tlw6-GGKX-2vcZY8
LV Write Access        read/write
LV Creation host, time Server0, 2004-11-29 01:15:23 +0100
LV Status              available
# open                 1
LV Size                15,08 GiB
Current LE             3861
Segments               2
Allocation             inherit
Read ahead sectors     auto
- currently set to     256
Block device           252:0

--- Logical volume ---
LV Path                /dev/Server0-vg/swap_1
LV Name                swap_1
VG Name                Server0-vg
LV UUID                ZxV31F-BLza-3QaB-awXX-3IBt-SvzA-Lo2RAj
LV Write Access        read/write
LV Creation host, time Server0, 2004-11-29 01:15:24 +0100
LV Status              available
# open                 2
LV Size                508,00 MiB
Current LE             127
Segments               1
Allocation             inherit
Read ahead sectors     auto
- currently set to     256
Block device           252:1

(아무도 이해하지 못하는 경우 /dev/Server0-vg/root를 159GB로 확장하고 싶습니다)

df -h는 다음을 표시합니다.

Filesystem                    Size  Used Avail Use% Mounted on
udev                          737M     0  737M   0% /dev
tmpfs                         151M  5,1M  146M   4% /run
/dev/mapper/Server0--vg-root   15G  6,7G  7,3G  48% /  
tmpfs                         754M     0  754M   0% /dev/shm
tmpfs                         5,0M     0  5,0M   0% /run/lock
tmpfs                         754M     0  754M   0% /sys/fs/cgroup
/dev/sda1                     472M  453M     0 100% /boot
tmpfs                         100K     0  100K   0% /run/lxcfs/controllers
tmpfs                         151M     0  151M   0% /run/user/1000

별도 디스플레이의 "인쇄":

Model: ATA WDC WD1600BB-56R (scsi)
Disk /dev/sda: 160GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags: 

Number  Start   End    Size   Type      File system  Flags
 1      1049kB  512MB  511MB  primary   ext2         boot
 2      513MB   160GB  159GB  extended
 5      513MB   160GB  159GB  logical                lvm

sudo vgdisplay 결과:

--- Volume group ---

VG Name               Server0-vg
System ID             
Format                lvm2
Metadata Areas        1
Metadata Sequence No  4
VG Access             read/write
VG Status             resizable
MAX LV                0
Cur LV                2
Open LV               2
Max PV                0
Cur PV                1
Act PV                1
VG Size               15,58 GiB
PE Size               4,00 MiB
Total PE              3988
Alloc PE / Size       3988 / 15,58 GiB
Free  PE / Size       0 / 0   
VG UUID               302ela-v51W-hM2T-zjdv-8QtK-ZFBc-SW1D5Y

sudo pvdisplay 결과:

--- Physical volume ---
PV Name               /dev/sda5
VG Name               Server0-vg
PV Size               15,58 GiB / not usable 4,00 MiB
Allocatable           yes (but full)
PE Size               4,00 MiB
Total PE              3988
Free PE               0
Allocated PE          3988
PV UUID               6j391r-dL9l-8Rw8-kGt4-Ewxg-NiyM-rjzggr

답변1

Physical volume크기는 15,58GiB에 불과 하므로 더 커질 수 Volume group없습니다 Logical Volume.

먼저 물리적 볼륨의 크기를 조정해야 합니다.

sudo pvresize /dev/sda5

( man pvresize리소스 옵션 참조) 최대 크기로 조정하지 않으려면 옵션을 사용하십시오 --setphysicalvolumesize.

vgdisplay이제 볼륨 그룹도 확장되었는지 다시 확인하세요 .

관련 정보