현재 라이브 환경의 VM에서 CentOS 6.5를 실행하고 있습니다. 공간을 늘려야 할 필요성이 여러 차례 생겨 났고 온라인으로 가이드를 따라 오면서 오늘날까지 성공적으로 작동했습니다.
이전에는 기본 패리티를 만들었으며 이제 최대 4 개를 이해합니다.
fdisk -l
다음을 보여줍니다.
Disk /dev/sda: 107.4 GB, 107374182400 bytes
255 heads, 63 sectors/track, 13054 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0002d169
Device Boot Start End Blocks Id System
/dev/sda1 * 1 64 512000 83 Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2 64 2611 20458496 8e Linux LVM
/dev/sda3 6528 8485 15727635 8e Linux LVM
/dev/sda4 2611 6527 31456607+ 8e Linux LVM
Partition table entries are not in disk order
Disk /dev/mapper/vg_kaylavm-lv_root: 65.1 GB, 65062043648 bytes
255 heads, 63 sectors/track, 7910 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Disk /dev/mapper/vg_kaylavm-lv_swap: 4194 MB, 4194304000 bytes
255 heads, 63 sectors/track, 509 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
/ dev / sda4를 제거하고 확장 파티션을 생성하기 위해 데이터를 잃지 않는 올바른 방법은 무엇입니까 (올바른 방법이라고 가정)?
온라인으로 보면 연장하는 방법에 대한 많은 안내서를 볼 수 있지만 위와 관련이 없습니다.
최신 정보
pvs
보여줍니다 :
PV VG Fmt Attr PSize PFree
/dev/sda2 vg_kaylavm lvm2 a-- 19.51g 0
/dev/sda3 vg_kaylavm lvm2 a-- 15.00g 0
/dev/sda4 vg_kaylavm lvm2 a-- 30.00g 0
lvs
보여줍니다 :
LV VG Attr LSize Pool Origin Data% Move Log Cpy%Sync Convert
lv_root vg_kaylavm -wi-ao---- 60.59g
lv_swap vg_kaylavm -wi-ao---- 3.91g
107.4GB 디스크 공간이 얼마나 사용됩니까?
—
Paul
의 출력
—
Zoredache
pvs
, 그리고 lvs
도움이되었습니다 만, 그대로 괜찮 것이다. 또한 -u
fdisk 명령 에 a 를 추가해야 합니다. 파티션은 실린더로 정렬되지 않습니다. 즉 fdisk -l -u
.
@Zoredache 참조를 위해 위의 lvs 및 pvs 출력을 추가했습니다.
—
lethalMango