web-dev-qa-db-ja.com

USBを起動可能にするためのGRUBインストール

BIOSを使用するPCを使用してUbuntu 14.10から起動可能なWindows USBを作成するチュートリアルに従って、ターミナルを開いて実行しました

Sudo grub-install --target=i386-pc --boot-directory="/media/ihab/windows/boot" /dev/sdb 

uSBを起動可能にするためにGRUBを使用するには、すべてが正常かどうかを確認する必要があります

Installing for i386-pc platform.  
Installation finished. No error reported.

しかし、実際に私はこのメッセージを受け取ったので、その後どうすればいいかわかりませんでした

grub-install: warning: Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet..
grub-install: warning: Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged..
grub-install: error: will not proceed with blocklists.

これはチュートリアルに従ってください ここに記載

4
user161480

これがまだ問題である場合、私は今日これに出会い、それを解決する方法を見つけました。どうやらgptからmsdosパーティションテーブルへの変更に問題があるようです。ドライブの先頭をゼロにする場合、sdb/devでドライブを識別します

Sudo dd if=/dev/zero of=/dev/sdb bs=1M count=100

そして、あなたが言及したチュートリアルの最初から始めます。

2
drowdemon