当尝试从 20.04 升级到 22.04 时,我收到有关空间不足的错误/boot
。但请求的空间量非常大(617M
),这让我怀疑出了问题。
产生的错误消息do-release-upgrade
:
Not enough free disk space
The upgrade has aborted. The upgrade needs a total of 617 M free
space on disk '/boot'. Please free at least an additional 282 M of
disk space on '/boot'. You can remove old kernels using 'sudo apt
autoremove' and you could also set COMPRESS=xz in
/etc/initramfs-tools/initramfs.conf to reduce the size of your
initramfs.
内容/boot
:
$ ls -lh /boot/
total 271M
-rw-r--r-- 1 root root 256K Jul 14 10:42 config-5.15.0-43-generic
-rw-r--r-- 1 root root 257K Aug 4 14:44 config-5.15.0-46-generic
drwx------ 3 root root 4.0K Dec 31 1969 efi
drwxr-xr-x 4 root root 4.0K Aug 10 12:50 grub
lrwxrwxrwx 1 root root 28 Aug 10 11:06 initrd.img -> initrd.img-5.15.0-46-generic
-rw-r--r-- 1 root root 118M Aug 11 17:48 initrd.img-5.15.0-43-generic
-rw-r--r-- 1 root root 119M Aug 11 17:47 initrd.img-5.15.0-46-generic
lrwxrwxrwx 1 root root 28 Aug 10 11:06 initrd.img.old -> initrd.img-5.15.0-43-generic
drwx------ 2 root root 16K Sep 17 2021 lost+found
-rw-r--r-- 1 root root 179K Aug 18 2020 memtest86+.bin
-rw-r--r-- 1 root root 181K Aug 18 2020 memtest86+.elf
-rw-r--r-- 1 root root 181K Aug 18 2020 memtest86+_multiboot.bin
-rw------- 1 root root 6.0M Jul 14 10:42 System.map-5.15.0-43-generic
-rw------- 1 root root 6.0M Aug 4 14:44 System.map-5.15.0-46-generic
lrwxrwxrwx 1 root root 25 Aug 10 11:06 vmlinuz -> vmlinuz-5.15.0-46-generic
-rw------- 1 root root 11M Jul 14 10:43 vmlinuz-5.15.0-43-generic
-rw------- 1 root root 11M Aug 4 14:47 vmlinuz-5.15.0-46-generic
lrwxrwxrwx 1 root root 25 Aug 10 11:06 vmlinuz.old -> vmlinuz-5.15.0-43-generic
大小 + 磁盘使用情况/boot
:
$ df -h /boot/
Filesystem Size Used Avail Use% Mounted on
/dev/nvme0n1p2 704M 279M 374M 43% /boot
如果您能就更新为何需要这么多/boot
空间提供任何见解,或者就如何解决此问题提出任何建议,我们将不胜感激。
编辑:由于未知原因,再次运行该工具后,它现在要求429M
可用空间。我没有做任何更改,所以不确定为什么数字会较低。但它仍然比看起来应该的大得多。
答案1
我在尝试通过桌面托盘中的警告图标更新 KDE Neon 时遇到了这个问题
看了关联通过共享格毛赫,我能够通过结合解决这个问题这个答案和这个答案像这样:
$ vim /etc/initramfs-tools/initramfs.conf
...
#
# COMPRESS: [ gzip | bzip2 | lz4 | lzma | lzop | xz ]
#
COMPRESS=lz4 # change lz4 to xz
...
# then after exiting/editing the file
$ sudo update-initramfs -u -k all
这将影响文件中所做的更改/etc/initramfs-tools/initramfs.conf
。此后,您应该能够继续升级。
sudo apt autoremove
使用我之前遇到的这个命令来释放空间以及删除旧内核仍然是值得的:
$ dpkg -l | egrep "linux-(signed|modules|image|headers)" | grep -v $(uname -r | cut -d - -f 1) | awk {'print $2'} | xargs sudo apt purge -y
只要知道你有什么内核,运行一个较短的版本就足够了:
$ dpkg -l | egrep "linux-(signed|modules|image|headers)" | grep $(uname -r)
任何以ii
开头的东西都意味着它是一个已安装的内核。
希望这可以帮助。
答案2
遇到类似的问题,我只是运行错误消息建议的命令:
sudo apt autoremove
这招很管用。