Fedora 30에서 실행할 때 오류가 sudo dnf upgrade
발생합니다 At least 34MB more space needed on the /boot filesystem.
.
달리느라 피곤했지만 package-cleanup --oldkernels --count=2
아무 소용이 없었다.
시험
- 실행
du -sm /boot | sort -n
출력:237 /boot
현재 /boot에서 사용 가능합니다.
config-5.2.15-200.fc30.x86_64 config-5.2.16-200.fc30.x86_64 efi elf-memtest86+-5.01 extlinux grub2 initramfs-0-rescue-8181747493434839ba11074fb41e0b42.img initramfs-5.0.9-301.fc30.x86_64-nouveau.img initramfs-5.2.15-200.fc30.x86_64.img initramfs-5.2.15-200.fc30.x86_64-nouveau.img initramfs-5.2.16-200.fc30.x86_64.img loader lost+found memtest86+-5.01 System.map-5.2.15-200.fc30.x86_64 System.map-5.2.16-200.fc30.x86_64 vmlinuz-0-rescue-8181747493434839ba11074fb41e0b42 vmlinuz-5.2.15-200.fc30.x86_64 vmlinuz-5.2.16-200.fc30.x86_64
답변1
initramfs-5.0.9-301.fc30.x86_64-nouveau.img
해당 커널 파일이 더 이상 없기 때문에 initramfs 파일은 더 이상 필요하지 않습니다 .
34MB 이상의 공간만 필요하므로 이 정도면 충분할 수 있습니다.
이렇게 해도 충분한 공간이 확보되지 않고 현재 GPU 드라이버가 문제가 없다면 이를 제거하는 것도 고려할 수 있습니다. initramfs-5.2.15-200.fc30.x86_64-nouveau.img
왜냐하면 독점 NVidia GPU 드라이버를 설치하기 전에 생성된 백업인 것처럼 보이기 때문입니다.
답변2
시도해 보셨나요 dnf clean all
?
다음을 사용하여 가장 큰 파일을 찾아볼 수도 있습니다.find /boot -xdev -size +100M -exec ls -Alh {}\;