디스크를 파일 시스템에 재할당하는 방법은 무엇입니까?

디스크를 파일 시스템에 재할당하는 방법은 무엇입니까?

장치와 함께 디렉토리 설치를 엉망으로 만들었습니다.

lorancechen@schan:~$ sudo df -hl
Filesystem                  Size  Used Avail Use% Mounted on
udev                        3.9G     0  3.9G   0% /dev
tmpfs                       790M  9.0M  781M   2% /run
/dev/mapper/schan--vg-root  226G  6.6G  208G   4% /
tmpfs                       3.9G  4.0K  3.9G   1% /dev/shm
tmpfs                       5.0M     0  5.0M   0% /run/lock
tmpfs                       3.9G     0  3.9G   0% /sys/fs/cgroup
/dev/sda2                   473M  463M     0 100% /boot
/dev/sda1                   511M  3.4M  508M   1% /boot/efi
tmpfs                       100K     0  100K   0% /run/lxcfs/controllers
tmpfs                       790M     0  790M   0% /run/user/1000
/home/lorancechen/.Private  226G  6.6G  208G   4% /home/lorancechen  

당연히 일반 사용자의 경우 226G입니다. 이게 무슨 뜻인지 모르겠어요 /home/lorancechen/.Private?

또한 sudo fdisk -lLinux LVM은 237.5G를 사용하여 표시됩니다.

lorancechen@schan:/boot/grub$ sudo fdisk -l
Disk /dev/sda: 238.5 GiB, 256060514304 bytes, 500118192 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: gpt
Disk identifier: B9F1D7BF-5BE5-4457-8589-B7BA73C5298E

Device       Start       End   Sectors   Size Type
/dev/sda1     2048   1050623   1048576   512M EFI System
/dev/sda2  1050624   2050047    999424   488M Linux filesystem
/dev/sda3  2050048 500117503 498067456 237.5G Linux LVM


Disk /dev/mapper/schan--vg-root: 229.6 GiB, 246503440384 bytes, 481452032 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 /dev/mapper/schan--vg-swap_1: 7.9 GiB, 8489271296 bytes, 16580608 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 /dev/mapper/cryptswap1: 7.9 GiB, 8488747008 bytes, 16579584 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

내 파일 시스템에 문제가 있는 것이 확실하며 이제 다음을 사용하여 sudo apt-get --fix-broken install아무것도 설치할 수 없습니다.

cannot copy extracted data for './boot/vmlinuz-4.4.0-93-generic' to  
'/boot/vmlinuz-4.4.0-93-generic.dpkg-new':   
failed to write (No space left on device)

디스크 할당에 어떤 문제가 있나요? 디스크를 재할당하는 방법은 무엇입니까?
감사해요

답변1

/home/lorancechen/.Private제가 보기에는 파일 암호화인 것 같습니다. 출력을 봐

cat /proc/mounts | grep lorancechen

문제는 파티션이 꽉 찼기 apt-get때문에 발생합니다 . /boot일부 Linux 배포판은 이전 커널을 제거하지 않습니다. 따라서 이를 위해 일부 스크립트를 설치하거나 때때로 수동으로 수행해야 합니다. 가서 /boot오래된 커널과 initrd를 삭제하세요.

관련 정보