시스템에 유일하게 OS로 Ubuntu 12.10을 설치했습니다.
나는 Ubuntu에 서둘러 모든 것을 덮어 쓰라고 했으므로 Ubuntu가 생성하는 두 개의 파티션, 몇 백 MB의 부팅 파티션과 다른 모든 파티션 만 있습니다.
기본 파티션은 약 600GB입니다.
이 크기를 450GB로 조정하고 Windows 8을 이중 부팅으로 설치할 수 있습니다.
문제는 파티션을 축소하는 방법을 해결할 수 없다는 것입니다. 일반적으로 Gparted (gparted-live-0.14.1-6-i486.iso) 라이브 iso에서 괜찮습니다. 단순히 크기를 조정하면 좋습니다.
그러나 이번에는 우분투가 LVM과 함께 설치되었습니다.
따라서 우분투 파티션 옆에는 자물쇠 아이콘이 있습니다. 이것은 내가 아무것도하지 못하게하고, 파티션을 선택할 수 있으며, "비활성화"옵션이 있습니다. 정확하다면 스왑을 비활성화하고 있다고 생각합니까? 그렇게하면 파티션을 조작 할 수 있습니다.
시스템을 터뜨리기 전에 이것이 올바른 일인지 여기에 묻습니다.
- 라이브 gparted iso에서 부팅합니다.
- 우분투 파티션을 선택하십시오.
- 파티션을 "비활성화"하십시오.
- 파티션 크기를 조정하십시오.
- 파티션을 "활성화"하십시오.
- 대다.
- 이익???
내 생각이 맞습니까?
편집 # 1
그래서, 연장 된 대화 후 나는이 명령을 내렸다
sudo lvresize --verbose --resizefs -L -150G /dev/ubuntu/root
논리 파티션을 성공적으로 축소했습니다.
그러나 이제 어려운 부분이 있습니다.
이제 물리 분할을 축소하여 Windows 8을 설치할 공간이있는 새 물리 분할을 만들 수 있습니다.
그래서 나는 내가 달릴 수 있다고 생각
pvresize --setphysicalvolumesize {any size here} /dev/sda5
그러나 나는 돌아옵니다.
/ dev / sda5 : 나중에 할당 될 때 xxxxx 범위로 크기를 조정할 수 없습니다.
이 이미지로 인한 스왑 때문이라고 생각합니다.
다음 단계는 무엇입니까?
$: lvdisplay
--- Logical volume ---
LV Path /dev/ubuntu/root
LV Name root
VG Name ubuntu
LV UUID G7Z3dA-xska-8QpO-Y5oD-aIVO-D8l1-22s6dO
LV Write Access read/write
LV Creation host, time ubuntu, 2013-01-29 22:06:02 +1300
LV Status available
# open 1
LV Size 540.42 GiB
Current LE 138348
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 252:0
--- Logical volume ---
LV Path /dev/ubuntu/swap_1
LV Name swap_1
VG Name ubuntu
LV UUID 14qpRy-H5jl-dTAq-CVle-k7Bz-95Rm-Y46zOs
LV Write Access read/write
LV Creation host, time ubuntu, 2013-01-29 22:06:04 +1300
LV Status available
# open 2
LV Size 7.97 GiB
Current LE 2041
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 252:1
편집 전 추가 정보 # 1
위의 사진은 최신 버전이 아닌 Ubuntu Repositories의 Gparted 버전에서 가져온 것입니다.
matthew @ play : ~ $ sudo fdisk -l
Disk /dev/sda: 750.2 GB, 750156374016 bytes
255 heads, 63 sectors/track, 91201 cylinders, total 1465149168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000c5bec
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 499711 248832 83 Linux
/dev/sda2 501758 1465147391 732322817 5 Extended
/dev/sda5 501760 1465147391 732322816 8e Linux LVM
Disk /dev/mapper/ubuntu-root: 741.3 GB, 741334843392 bytes
255 heads, 63 sectors/track, 90128 cylinders, total 1447919616 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Disk /dev/mapper/ubuntu-root doesn't contain a valid partition table
Disk /dev/mapper/ubuntu-swap_1: 8560 MB, 8560574464 bytes
255 heads, 63 sectors/track, 1040 cylinders, total 16719872 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Disk /dev/mapper/ubuntu-swap_1 doesn't contain a valid partition table
matthew @ play : ~ $ sudo lvs
LV VG Attr LSize Pool Origin Data% Move Log Copy% Convert
root ubuntu -wi-ao-- 690.42g
swap_1 ubuntu -wi-ao-- 7.97g
matthew @ play : ~ $ sudo vgs
VG #PV #LV #SN Attr VSize VFree
ubuntu 1 2 0 wz--n- 698.39g 0
matthew @ play : ~ $ sudo pvs
PV VG Fmt Attr PSize PFree
/dev/sda5 ubuntu lvm2 a-- 698.39g 0
vgchange -an myvgname
물리 볼륨을 변경하려는 경우 필요할 수있는 볼륨 그룹 ( )을 비활성화하는 것입니다. :) 아, 거의 답입니다.