Proxmox 하이퍼바이저의 디스크 크기를 8GB에서 18GB로 확장한 후 Ubuntu 20.04 VM에서 이 새로운 공간을 보려고 했습니다.
다음은 가상 머신에서 실행하는 명령입니다.
# Physical volume is called /dev/sda3
sudo pvs
# resize the Physical Volume (PV)
sudo pvresize /dev/sda3
# root logical volume is
df -h
# expand the logical volume
sudo lvextend -r -l +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv
# resize my number 3 partition (this gave me 17GB on sda3)
sudo growpart /dev/sda 3
sda3 파티션에서 볼 수 있어요!
18GB를 보고싶다/dev/mapper/ubuntu--vg-ubuntu--lv
https://unix.stackexchange.com/a/583544- 나는 이 지침을 따르고 있습니다
어떤 조언이라도 좋을 것입니다!
답변1
https://packetpushers.net/ubuntu-extend-your-default-lvm-space/저에게 가장 도움이 되었던 글입니다.
요컨대
# allocate more space on hypervisor
# make the partition see the space (dev/sda3, Resize, Write, quit)
sudo cfdisk
# extend the physical volume from the partition
sudo pvresize /dev/sda3
# extend LV to use up all space from VG
sudo lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv
# resize file system
sudo resize2fs /dev/ubuntu-vg/ubuntu-lv
# check can see the space on filesystem
df -h
답변2
볼륨 크기를 늘리려면 다음을 수행하십시오.
GUI 콘솔에서 디스크 늘리기/크기 조정
Linux 파티션 식별:
sudo fdisk -l
물리적 드라이브 파티션 확장
growpart /dev/sda 3
LVM 디스크 크기가 변경되었음을 나타냅니다.
sudo pvresize /dev/sda3
LV로 시작하는 항목 찾기
lvdisplay
LV 크기 조정
sudo lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv sudo resize2fs /dev/ubuntu-vg/ubuntu-lv