GRUB はアップグレード後に Debian を自動的に起動しません。

GRUB はアップグレード後に Debian を自動的に起動しません。

1ヶ月間使用しなかったため、実際にダウンしたサーバーがあります。

サーバーはDebian 9.0を実行しています。約2か月前にJessieからリポジトリtestingにアップグレードしました。

昨日私はそれが必要だったので、セキュリティ上の理由でそれを開き、すべてのパッケージをアップグレードしました。

アップグレード前:GRUBはこのサーバー上の唯一のオペレーティングシステムを自動的に起動します。

アップグレード後:これを行うにはEnterキーを押す必要があります。だからキーボードなどを接続する必要があります。この不快感を理解してくれると信じています。

また、ログイン画面とデスクトップの背景の両方が変更されたことを確認しました。

私が知る限り、このファイルは次のようになります。

/etc/default/grub

GRUBの動作を担当しますので、まずコピーして貼り付けます。

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

他の変更はしませんでした。 StretchからSidにアップグレードされているのか、名前が何であるのかはわかりません。私もこの些細な問題の原因が何であるか混乱しています。しかし、誰かが私よりDebianをよりよく知っていることを心から願っています。

情報が必要な場合はすぐにお知らせします。

編集1:

uname -a

出力

Linux backup-server 4.9.0-1-amd64 #1 SMP Debian 4.9.2-2 (2017-01-12) x86_64 GNU/Linux

そして

cat /etc/apt/sources.list

出力

deb http://ftp.sh.cvut.cz/debian/ testing main contrib non-free
deb-src http://ftp.sh.cvut.cz/debian/ testing main contrib non-free

deb http://security.debian.org/ testing/updates main contrib non-free
deb-src http://security.debian.org/ testing/updates main contrib non-free

ベストアンサー1

今日予定されていたメンテナンスを行いましたが、そのうちの1つは包括的なアップグレードでした。

sudo apt-get dist-upgrade

アップグレード中は、新しいカーネルと新しいGRUBパッケージがインストールされます。

問題が解決しました。自動的に再起動してください。

おすすめ記事