web-dev-qa-db-ja.com

GRUB 2「現在の入力タイミングはUbuntu 14.04でサポートされていません」

私は私のマシンにUbuntu 14.04とWindows 8.1がインストールされているDell u2412mを監視しています。 BURGは動作しませんでしたが、修正したかったのですが、運が悪かったため、それを台無しにして、コンピューターを何度も再起動しました。 Live CDを使用して、burgなしでgrub 2を再インストールしましたが、ブート中にBIOSロード画面が表示されず、grubメニューが表示されますが、「現在の入力タイミングはサポートされていません。入力タイミングを変更してください」だから私はGrubカスタマイザーを使用して、リストされているWindowsで見つけたモニターのカスタム解像度をすべて使用可能な解像度に設定しました。今、Linuxに行きたいとき、ビープ音を待たなければならず、1、2秒後に盲目的に矢印でLinuxにナビゲートし、Enterと入力します(家族のため、Windowsはリストの最初にリストされています)。

私の/ etc/default/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_HIDDEN_TIMEOUT="0"
#GRUB_HIDDEN_TIMEOUT_QUIET="true"
GRUB_TIMEOUT="10"
GRUB_DISTRIBUTOR="`lsb_release -i -s 2> /dev/null || echo Debian`"
GRUB_CMDLINE_LINUX_DEFAULT=""
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="1024x768"
#GRUB_GFXPAYLOAD_LINUX="1600x900"

# 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"

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

誰でもこれで私を助けることができますか?

ありがとう、デベティ

1
Draško

私はこの問題がDellラップトップに固有のものであると言っている多くのブログを読んでいますので、以下は問題を解決するのに役立つかもしれません。

この手順を試しましたか:

  1. PCを再起動するには、電源ボタンを8秒以上押し続けます。
  2. ブート診断メニューが表示されるまでF8キーをタップします
  3. 見つけるだろう VGAモードを有効にする 、 選んでください。
1
chanakya devraj