侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

"gzip: stdout: No space left on device" while upgrading the kernel

2023-09-26 星期二 / 0 评论 / 0 点赞 / 66 阅读 / 6834 字

apt install kcachegrind kcachegrind : Depends: kde-runtime (> 4:4.10) but it is not going to be inst

apt install kcachegrind

kcachegrind : Depends: kde-runtime (> 4:4.10) but it is not going to be installed
               Depends: libkdecore5 (>= 4:4.4.0) but it is not going to be installed
               Depends: libkdeui5 (>= 4:4.3.4) but it is not going to be installed
               Depends: libkio5 (>= 4:4.3.4) but it is not going to be installed
               Recommends: graphviz
 linux-image-extra-4.4.0-83-generic : Depends: linux-image-4.4.0-83-generic but it is not going to be installed
 linux-image-generic : Depends: linux-image-4.4.0-83-generic but it is not going to be installed
                       Recommends: thermald but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

aptitude install kde-runtime

os present -- "gzip: stdout: No space left on device" while upgrading the kernel

I see the following error while trying run the command shown below. I read somewhere that my /boot partition is low on disk space. How can I increase the size of the /boot partition so I can install more software? I have a 500GB hard disk, so there is enough space to play with.

sudo apt-get install libdvdread4gzip: stdout: No space left on device                                                                                                                                                                                 E: mkinitramfs failure cpio 141 gzip 1                                                                                                                                                                                update-initramfs: failed for /boot/initrd.img-3.2.0-33-generic with 1.                                                                                                                                                run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1                                                                                                                                           Failed to process /etc/kernel/postinst.d at /var/lib/dpkg/info/linux-image-3.2.0-33-generic.postinst line 1010.                                                                                                       dpkg: error processing linux-image-3.2.0-33-generic (--configure):                                                                                                                                                     subprocess installed post-installation script returned error exit status 2                                                                                                                                           dpkg: dependency problems prevent configuration of linux-image-server:                                                                                                                                                linux-image-server depends on linux-image-3.2.0-33-generic; however:                                                                                                                                                   Package linux-image-3.2.0-33-generic is not configured yet.   dpkg: error processing linux-image-server (--configure):    dependency problems - leaving unconfigured   dpkg: dependency problems prevent configuration of linux-server:    linux-server depends on linux-image-server (= 3.2.0.33.36); however:     Package linux-image-server is not configured yet.   dpkg: error processing linux-server (--configure):    dependency problems - leaving unconfigured   No apport report written because the error message indicates its a followup error from a   previous failure.                                                                                                          No apport report written because the error message indicates its a followup error from a previous failure. Errors were encountered while processing: linux-image-3.2.0-33-generic linux-image-server linux-serverN: Ignoring file 'michael-gruz-canon-precise.list.1' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extensionN: Ignoring file 'michael-gruz-canon-precise.list.1' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension

Listed below is the output of du

Filesystem              1K-blocks      Used Available Use% Mounted on/dev/mapper/ubuntu-root 712660664 104095912 572363692  16% /udev                      3964792         4   3964788   1% /devtmpfs                     1591012      1064   1589948   1% /runnone                         5120         0      5120   0% /run/locknone                      3977528       684   3976844   1% /run/shm/dev/sda1                  233191    219821       929 100% /boot

 ANSWER : 

You have a separate partition for /boot that is only around 227MB in size. This partition is full.

The reason Ubuntu has given you a separate parition for /boot seems to be that you are using LVM and/or "full" disk encryption on the rest of the drive.

The /boot directory contains all of your kernel images, so the likely cause of this issue is that you have too many previous kernels installed. Ubuntu issues kernel updates which bump the version number in the package name fairly frequently even for long term stable versions, so over time if you keep the system up to date, the /boot directory will grow.

You should be able to list your installed kernels with

aptitude search ~ilinux-image

(Note that this will probably return packages that aren't kernels, too).

There is usually no need for more than two kernels to be installed - the one currently in use and the previous one to that (as a fallback). So you can start removing the older ones, one by one, like this:

sudo apt-get autoremove linux-image-3.2.0-23-generic

Make sure you substitute "3.2.0-23-generic" with the actual kernel version you want to remove! Also, don't remove packages such as linux-image-generic. You have to be really careful not to remove the currently running kernel or you won't be able to boot (Ubuntu may or may not warn you about doing this).

You can find your currently running kernel with:

uname -r

广告 广告

评论区