web-dev-qa-db-ja.com

False disk fullエラー:apt-getをインストールまたは削除できません

Ubuntu 12.04サーバーのアップグレード中に次のエラーが発生しました。現在、apt-getはパッケージをインストールまたは削除できません。

 unpacking linux-headers-3.13.0-62(from .../linux-headers-3.13.0-62_3.13.0-62.102〜precise1_all.deb)... 
 dpkg:エラー/var/cache/apt/archives/linux-headers-3.13.0-62_3.13.0-62.102~precise1_all.deb(--unpack):
を処理できず、 `/ usr/src/linux-headersを作成できません-3.13.0-62/Arch/arm/include/asm/ptrace.h.dpkg-new '
( `./usr/src/linux-headers-3.13.0-62/Arch/の処理中arm/include/asm/ptrace.h '): デバイスに空きがありません
理由報告書は エラーメッセージは、ディスクがいっぱいのエラーを示しています
 dpkg-deb:エラー:サブプロセスの貼り付けがシグナルにより中断されました(パイプの破損)
処理中にエラーが発生しました:
/var/cache/apt/archives/linux-headers- 3.13.0-62_3.13.0-62.102〜precise1_all.deb 
 E:サブプロセス/ usr/bin/dpkgがエラーコードを返しました(1)

ディスク容量が不足しているわけではありませんが、

# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda1       6.8G  4.7G  1.8G  69% /  

とにかく私のiノードがいっぱいです、

# df -i
Filesystem     Inodes   IUsed  IFree IUse% Mounted on
/dev/sda1      458752  455214   3538  100% /

10個以上の古いカーネルがありますが、apt-get自体が不完全であるため、それらを削除することはできません。そのため、同様の問題を報告する この投稿 をフォローできません。

唯一のオプションは、いくつかの古いカーネルを手動で削除するようです。問題は発生しますか?

もっと良い方法はありますか?とりあえず root用の予約済みスペース を使用して、古いカーネルを削除できますか?

23
souravc

私はこの投稿が少し古いことを知っていますが、この投稿につまずくかもしれない人のためにここで答えを見つけました: https://help.ubuntu.com/community/RemoveOldKernels

そのリンクが壊れている場合、関連するスニペットは次のとおりです。

古いカーネルを安全に削除する

LVMシステム、暗号化されたシステム、またはストレージが限られているシステムのユーザーにとって、最もよくある問題は、/ bootパーティションが単にいっぱいになっていることです。パッケージマネージャーは、スペース不足のため、保留中のアップグレードをインストールできません。また、依存関係が壊れているため、apt-getはパッケージを削除できません。

この問題は、シェルからすばやく簡単に修正できます。手動で削除する1つまたは2つの古いカーネルを識別するだけで、パッケージマネージャーにキューアップグレードをインストールするのに十分なスペースが提供されます。


$ Sudo rm -rv ${TMPDIR:-/var/tmp}/mkinitramfs-*  
                                  ## In Ubuntu 16.04 and earlier there may be leftover temporary
                                  ## files to delete.
                                  ## See: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=814345

$ uname -r                        ## This command identifies the currently-running kernel
4.2.0-21-generic                  ## This is the current kernel.
                                  ## DO NOT REMOVE it!

$ dpkg -l | tail -n +6 | grep -E 'linux-image-[0-9]+' | grep -Fv $(uname -r)
                                  ## This command lists all the kernels excluding the booted
                                  ## kernel in the package database, and their status.
rc  linux-image-4.2.0-14-generic  ## The oldest kernel in the database
                                  ## Status 'rc' means it's already been removed
ii  linux-image-4.2.0-15-generic  ## The oldest installed kernel. Eligible for removal.
                                  ## Status 'ii' means Installed.
ii  linux-image-4.2.0-16-generic  ## Another old installed kernel. Eligible for removal
ii  linux-image-4.2.0-18-generic  ## Another old installed kernel. Eligible for removal
ii  linux-image-4.2.0-19-generic  ## The previous good kernel. Keep
iU  linux-image-4.2.0-22-generic  ## DO NOT REMOVE. Status 'iU' means it's not installed,
                                  ## but queued for install in apt.
                                  ## This is the package we want apt to install.

                                  ## Purge the oldest kernel package using dpkg instead of apt.
                                  ## First you need to remove the image initrd.img file manually
                                  ## due to Bug #1678187.
$ Sudo update-initramfs -d -k 4.2.0-15-generic
$ Sudo dpkg --purge linux-image-4.2.0-15-generic linux-image-extra-4.2.0-15-generic
                                  ## If the previous command fails, some installed package
                                  ## depends on the kernel. The output of dpkg tells the name
                                  ## of the package. Purge it first.

                                  ## Also purge the respective header package.
$ Sudo dpkg --purge linux-headers-4.2.0-15-generic
                                  ## Try also purging the common header package.
$ Sudo dpkg --purge linux-headers-4.2.0-15
                                  ## Do not worry, if the previous command fails.

$ Sudo apt-get -f install         ## Try to fix the broken dependency.

私はこれに従いました:

Sudo apt-get autoremove --purge
34
Junkle

状況から抜け出す方法を見つけ、/usr/srcから古いカーネルをいくつか削除して、状況を取り除きました。幸いなことに、すべてがうまくいき、aptは再び機能し始めました。

本番マシンで古いカーネルを削除する前に、バックアップを取ることを強くお勧めします。

8
souravc