120GB 비용을 지불하고 50GB만 받는 클라우드 호스팅 제공업체가 있습니다. 홈 파티션(?)에 이 공간이 필요합니다.
내 호스팅 제공업체는 별로 도움이 되지 않았습니다. 아래는 내 fdisk -l
결과입니다.
(Ubuntu 14.04에서 실행되는 서버)
root@home:~# fdisk -l
Disk /dev/sda: 128.8 GB, 128849018880 bytes
255 heads, 63 sectors/track, 15665 cylinders, total 251658240 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: 0x000e137e
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 999423 498688 83 Linux
/dev/sda2 999424 104857599 51929088 8e Linux LVM
Disk /dev/mapper/vg00-lv00: 2046 MB, 2046820352 bytes
255 heads, 63 sectors/track, 248 cylinders, total 3997696 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/vg00-lv00 doesn't contain a valid partition table
Disk /dev/mapper/vg00-lv01: 51.1 GB, 51124371456 bytes
255 heads, 63 sectors/track, 6215 cylinders, total 99852288 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/vg00-lv01 doesn't contain a valid partition table
그리고 내 것 df -h
;
root@home:~# df -h
Filesystem Size Used Avail Use% Mounted on
udev 2,0G 4,0K 2,0G 1% /dev
tmpfs 395M 25M 370M 7% /run
/dev/dm-1 47G 36G 8,9G 81% /
none 4,0K 0 4,0K 0% /sys/fs/cgroup
none 5,0M 16K 5,0M 1% /run/lock
none 2,0G 0 2,0G 0% /run/shm
none 100M 0 100M 0% /run/user
/dev/sda1 464M 66M 370M 16% /boot
보시다시피 128.8GB가 있는데 /dev/sda
메인 호스팅 파티션에는 47GB만 사용할 수 있습니다(?). 나머지 50GB 정도는 어떻게 확보할 수 있는지 궁금합니다.
답변1
변경하기 전에 가상 머신을 백업하세요.
이것은 매우 간단한 파티셔닝 문제인 것 같습니다. 120GB 디스크 비용을 지불했지만 디스크 파티션의 크기는 50GB에 불과합니다. 지불하는 금액을 조정했습니까?
그럼에도 불구하고 몇 가지 옵션이 있습니다. 디스크의 빈 공간에 새 파티션을 생성하거나 기존 파티션의 크기를 조정할 수 있습니다. 다행히도 파티션은 디스크의 시작 부분에 있고 그 뒤에 여유 공간이 모두 있습니다.
옵션 1: 크기 조정
파티션을 나누기 위해 cfdisk를 사용할 수 있습니다.
cfdisk /dev/sda
이렇게 하면 파티션 크기를 조정할 수 있는 옵션이 제공됩니다.파일 시스템 크기 조정2fs 크기 조정
가상 머신을 다시 시작합니다. 이 단계를 피하는 방법이 있지만 일반적으로 재부팅하는 것이 더 깔끔합니다.
옵션 2: 파티션 추가