web-dev-qa-db-ja.com

Ubuntu 17.04をインストールしたが、まったく起動できません:\ EFI \ Boot \ grubx64.efiを開くことができませんでした-見つかりません

Windows 10に付属のAcer Spin 5にUSBからUbuntu 17.04をインストールしました。UbuntuとWindows 10をデュアルブートしたときにWindowsの更新後にUbuntuを起動できなかったため、Win10を削除することにしました。

コンピューターを起動すると、

デフォルトの起動デバイスが見つからないか、起動に失敗しました。リカバリメディアを挿入して任意のキーを押し、「ブートマネージャー」を選択して新しいブートデバイスを選択するか、リカバリメディアをブートします

これを入力すると、Windows Boot Managerで起動するだけでこの画面に戻ることができます.UbuntuでライブUSBを使用し、Ubuntuライブにロードするか、直接インストールすることもできます再起動後に「デフォルトの起動デバイス...」に戻ります。また、次のコマンドでブート修復を試しました

Sudo add-apt-repository ppa:yannubuntu/boot-repair && Sudo apt-get update
Sudo apt-get install -y boot-repair && boot-repair

しかし、今再起動後、私は得る

Failed to open \EFI\Boot\grubx64.efi - Not found 
Failed to load image \EFI\grubx64.efi: Not found
 start_image() returned Not found

Failed to open "\EFI\BOOT\Microsoft\grubx64.efi - Not found
Failed to load image \EFI\Microsoft\BOOT\grubx64.efi Not found 
start_image() returned Not found

Ubuntuにアクセスできないときにこの問題を解決するにはどうすればよいですか?

ブート修復の概要

どのパーティションがメインパーティションであるかを知るにはどうすればよいですか?ランニング

Sudo fdisk -l

与える

Disk /dev/loop0: 1.5 GiB, 1553670144 bytes, 3034512 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk /dev/sda: 238.5 GiB, 256060514304 bytes, 500118192 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: F2E8B05E-6E0D-493F-9FF1-9F5D1195680B

Device       Start       End   Sectors  Size Type
/dev/sda1     2048   1050623   1048576  512M EFI System
/dev/sda2  1050624 500117503 499066880  238G Linux filesystem

Disk /dev/sdb: 3.7 GiB, 4002910208 bytes, 7818184 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x1b571474

Device     Boot   Start     End Sectors  Size Id Type
/dev/sdb1  *          0 3142655 3142656  1.5G  0 Empty 
/dev/sdb2       3118960 3123567    4608  2.3M ef EFI (FAT-12/16/32)
3
Littunen

確認したすべてのAcerでは、UEFI監視パスワードを有効にし、UEFI内からESPのgrub/ubuntu .efiブートファイルにドリルダウンし、信頼を有効にする必要があります。

これはエイサーに特有のようです。
しかし、Windowsのみを起動するためにUEFIに組み込まれた制限を回避する必要がある他の多くのシステムよりも優れています。

パスワードと信頼設定の詳細:

http://askubuntu.com/questions/597213/bootable-device-not-found-after-clean-install-of-ubuntu-14-04-uefi

監視パスワードの設定に関するエイサーのビデオ

5
oldfred