Debian 7을 1TB 드라이브에 설치하고 Debian이 자동으로 파티션을 설정하도록 하고 LVM을 선택하고 OwnCLoud를 설치했습니다. 루트 디스크에 공간이 부족하고 여유 공간이 35MB만 있습니다. 더 이상 클라우드 스토리지에 액세스할 수 없으며 Apache2도 다시 시작해야 합니까?라는 메시지가 나타날 때까지 모든 것이 잘 작동했습니다. 자동으로 시작됩니다. Apache를 다시 시작한 후 클라우드에 액세스할 수 있지만 클라우드는 데이터베이스에 액세스할 수 없습니다. 프로그램을 실행할 수 없는 것은 공간 제약 때문일 것입니다. 이 볼륨을 어떻게 늘릴 수 있나요? Gpart live를 사용하는 데 지쳤지만 볼륨을 추가할 수 없습니다.> 여기 내 fdisk -l 목록이 있습니다!
Disk /dev/sda: 1500.3 GB, 1500301910016 bytes
255 heads, 63 sectors/track, 182401 cylinders, total 2930277168 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: 0x8de4adf7
Device Boot Start End Blocks Id System
/dev/sda1 63 2930272064 1465136001 7 HPFS/NTFS/exFAT
Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders, total 1953525168 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: 0x00048b84
Device Boot Start End Blocks Id System
/dev/sdb1 * 2048 499711 248832 83 Linux
/dev/sdb2 501758 1953523711 976510977 5 Extended
/dev/sdb5 501760 1953523711 976510976 8e Linux LVM
Disk /dev/mapper/debian-root: 348 MB, 348127232 bytes
255 heads, 63 sectors/track, 42 cylinders, total 679936 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/debian-root doesn't contain a valid partition table
Disk /dev/mapper/debian-swap_1: 4273 MB, 4273995776 bytes
255 heads, 63 sectors/track, 519 cylinders, total 8347648 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/debian-swap_1 doesn't contain a valid partition table
Disk /dev/mapper/debian-usr: 8996 MB, 8996782080 bytes
255 heads, 63 sectors/track, 1093 cylinders, total 17571840 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/debian-usr doesn't contain a valid partition table
Disk /dev/mapper/debian-var: 2998 MB, 2998927360 bytes
255 heads, 63 sectors/track, 364 cylinders, total 5857280 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/debian-var doesn't contain a valid partition table
Disk /dev/mapper/debian-tmp: 398 MB, 398458880 bytes
255 heads, 63 sectors/track, 48 cylinders, total 778240 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/debian-tmp doesn't contain a valid partition table
Disk /dev/mapper/debian-home: 982.9 GB, 982926753792 bytes
255 heads, 63 sectors/track, 119500 cylinders, total 1919778816 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/debian-home doesn't contain a valid partition table
root@debian:/home/dmsigala#
편집하다
pvscan
출력 df
:
root@debian:/home/dmsigala# pvscan
PV /dev/sdb5 VG debian lvm2 [931.27 GiB / 0 free]
Total: 1 [931.27 GiB] / in use: 1 [931.27 GiB] / in no VG: 0 [0 ]
ot@debian:/home/dmsigala# df -h
Filesystem Size Used Avail Use% Mounted on
rootfs 322M 294M 11M 97% /
/dev/mapper/debian-root 322M 294M 11M 97% /
/dev/sdb1 228M 17M 199M 8% /boot
답변1
다른 볼륨 중 하나의 크기를 줄여야 합니다. 여유 공간이 많을 수 있습니다 debian/home
. 유연성을 위해 여유 공간을 확보하기 위해 982.9GB에서 950GiB로 줄일 수 있습니다. 파일 시스템( resize2fs
ext3/ext4의 경우)을 줄인 후 LV를 줄일 수 있습니다.
lvresize --size 950G debian/home
그런 다음 루트 LV를 늘릴 수 있습니다.
lvresize --size 1G debian/root
마지막 단계는 루트 볼륨 파일 시스템의 크기를 조정하는 것입니다(다른 시스템을 부팅한 후에만 가능).