web-dev-qa-db-ja.com

ISOイメージファイルを取得してブートUSBキーを作成することは可能ですか?

私はこれをWindows7のインストールで数え切れないほど行ってきました。USBキーからイメージを起動してインストールしました。問題ない。

FreeNAS 0.7.2ライブCDでこれをやりたいのですが、私は最も苦労しています。私はISOを持っています。これまで、Windows 7x64を使用してUSBドライブを作成するために次のことを行いました。

1. When the Command Prompt opens, enter the following command:
DISKPART and hit enter.
LIST DISK and hit enter.
2. Once you enter the LIST DISK command, it will show the disk number of your USB drive. In the below image, my USB drive disk number is Disk 1.
3. In this step you need to enter all the below commands one by one and hit enter. As these commands are self explanatory, you can easily guess what these commands do.
SELECT DISK 1 (Replace DISK 1 with your disk number)
CLEAN
CREATE PARTITION PRIMARY
SELECT PARTITION 1
ACTIVE
FORMAT FS=FAT (NOTE should this be NTFS or FAT???)
(Format process may take few seconds)
ASSIGN
EXIT

私はこれらすべてを問題なく行うことができます。次に、LiveCDのISOイメージを取得し、新しく準備したUSBスティックに抽出します。ただし、そこから起動しようとすると、DISK BOOTFAILUREと表示されます。

私は何かが足りないのですか?

5
ItsPronounced

netBootin があります。

UNetbootinを使用すると、CDを作成せずに、Ubuntu、Fedora、およびその他のLinuxディストリビューション用の起動可能なライブUSBドライブを作成できます。 Windows、Linux、およびMac OS Xで実行されます。UNetbootinに、サポートされている多くのディストリビューションの1つをすぐにダウンロードさせるか、ダウンロード済みの場合は独自のLinux.isoファイルを提供することができます。ご希望のディストリビューションがリストにありません。

1
Darek