我在 VPS 上使用 Ubuntu 17.10(GNU/Linux 4.13.0-17-generic x86_64),无法安装任何东西“/var/cache/apt/archives/ 中没有足够的可用空间”(已使用自动清理清除)并且 /home 报告已满,尽管文件总数只有 144MB。
fdisk -l
Disk /dev/vda: 25 GiB, 26843545600 bytes, 52428800 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
Disklabel type: dos
Disk identifier: 0x1fa5af5a
Device Boot Start End Sectors Size Id Type
/dev/vda1 * 2048 44037759 44035712 21G 83 Linux
/dev/vda2 44037760 52426367 8388608 4G 82 Linux swap / Solaris
sudo lsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT,LABEL
NAME FSTYPE SIZE MOUNTPOINT LABEL
sr0 1024M
vda 25G
├─vda1 ext4 21G /
└─vda2 swap 4G [SWAP]
df -h --total
Filesystem Size Used Avail Use% Mounted on
udev 2.0G 0 2.0G 0% /dev
tmpfs 395M 27M 369M 7% /run
/dev/vda1 4.6G 4.3G 0 100% /
tmpfs 2.0G 0 2.0G 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 2.0G 0 2.0G 0% /sys/fs/cgroup
tmpfs 395M 0 395M 0% /run/user/1000
tmpfs 395M 0 395M 0% /run/user/0
total 12G 4.3G 6.9G 39% -
/dev/vda1 总共应该是 21G,但是 df 显示总共 12G 并且使用率为 100%,是不是分区有问题或者为什么没有剩余空间?
已解决:使用 resize2fs /dev/vda1。