web-dev-qa-db-ja.com

Windowsの起動と再起動後にUbuntuのみが起動する

私は、Ubuntu 16.04をWindows 10と並んでコンピューター上で動作させようとしています。インストール方法の指示に従いました(「Windowsと一緒にインストールする」オプションを使用しました)。

問題

問題は本当に奇妙です。最初にUbuntuを一時停止してからコンピューターを再起動しようとすると、完全にフリーズし、コンピューターをハードリセットする必要がありました。 Ubuntuを再起動すると、空白の画面と「Ubuntuドラムサウンド」が表示され、ログイン画面が時々点滅することがあります。

修正しようとする私の試み

これには奇妙な「修正」が1つあります。 Windows 10を起動し、そこから再起動し、再起動後にUbuntuを起動することを選択すると、すべてがスムーズに機能します。 「電源を切った後からコンピューターを起動する」に関連する何か間違っているようです。

上記を発見する前に私がしなければならなかったもう1つの「修正」は、Ubuntuを再インストールすることでした。その場合、再度中断するまで正常に動作します。

私の質問

誰がこれを引き起こしているのか知っていますか? Windowsを起動し、再起動し、Ubuntuを使用するたびに再起動しなければならないのは、面倒です。

これが役立つ場合:代わりにUbuntu 18.04にインストールしようとしましたが、同様の問題が発生します。サスペンドしようとするとシステムが壊れ、ログイン時にロックされます。

前もって感謝します!


/ 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="quiet splash"
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"
1
Simon Sirak

グラフィックカードがこれを引き起こしている可能性があります。

「nomodeset」でubuntuに入るようにしてください

  1. グラブが表示されたら、「Ubuntu」を強調表示して押します e カーネルパラメータを編集します。
  2. 「linux」で始まる行に移動して、文字列ro quiet splashを見つけます
  3. 「ro quiet splash」の間にテキストnomodesetを追加します。これでro nomodeset quiet splashのようになります
  4. 押す Ctrl+x または F10 起動します。
  5. Ubuntuに入ったら、グラフィックカードのriteドライバーをインストールしてみてください。

enter image description here

enter image description here

enter image description here

enter image description here

0
PRATAP