web-dev-qa-db-ja.com

Ubuntu 14.04カーネル「linux-image-extra-3.13.0-68-generic」がアップデート中にエラーを生成する

アップグレード中に問題が発生したため、カーネルクラッシュが発生しました。私は端末に入力しました:

Sudo apt-get update
Sudo apt-get -f dist-upgrade

次の出力が返されました。

dpkg: error processing package linux-image-extra-3.13.0-68-generic (--configure):
package linux-image-extra-3.13.0-68-generic is not ready for configuration
cannot configure (current status `half-installed')
Errors were encountered while processing:
    linux-image-extra-3.13.0-68-generic

N: Ignoring file '20auto-upgrades.ucf-dist' in directory '/etc/apt/apt.conf.d/' as it has an invalid filename extension
E: Sub-process /usr/bin/dpkg returned an error code (1) 

再起動中に、linux-image-extra-3.13.0-68-genericからlinux-image-extra-3.13.0-67-genericそして、今はすべて正常に動作します。

再起動中は常に手動で以前のカーネルバージョンに移動する必要があるため、3.13.0-68-genericを削除する必要がありますか?もしそうなら、どうすればいいですか?

注:ファイルをコピーして削除しました20auto-upgrades.ucf-distに戻る前にlinux-image-extra-3.13.0-67-generic

1
Thorsten

これはUbuntuが特定したバグです。 bugs.launchpad.net/ubuntu/+source/linux/+bug/1514907

ターミナルに次のように入力します(管理者が開始できる場合)。

$ Sudo apt-get install -f
$ Sudo apt-get clean
$ Sudo apt-get update

次に、パッケージまたはアップデートを再インストールします。

注意してください:カーネルのバージョンは問題を解決したためです。アップデートを受け取ったら、最新のカーネルのいずれかをインストールします。

1
user454723