ubuntu16.04下用apt-get install 安装软件时出现 initramfs-tools错误

问题描述:

gzip: stdout: No space left on device
E: mkinitramfs failure cpio 141 gzip 1
update-initramfs: failed for /boot/initrd.img-4.13.0-37-generic with 1.
dpkg:处理 initramfs-tools (–configure)时出错:
子进程 已安装 post-installation 脚本 返回了错误号 1
在处理时有错误发生:
initramfs-tools

E: Sub-process /usr/bin/dpkg returned an error code (1) 

解决这个问题就是删除多余的内核

How To:

1.查看系统内安装的所有内核:

dpkg --get-selections | grep linux

2.查看系统当前使用的内核:

uname -r

3.删除多余的内核:

sudo apt-get remove linux-image-<版本号>
不要随便删除其他的内核,只删除linux-image-<版本号>类型的内核


你可能感兴趣的:(Linux)