Create a Windows 7 installation USB flash drive and a Windows 7 installation USB flash drive in linux
Http://blog.csdn.net/pipisorry/article/details/41369821
Linux is installed, and win7 is installed with a USB flash drive (network installation should be acceptable ),
First, you must create a win7 installation USB flash drive in linux (ultraiso can be used in windows). It is not possible to directly use the dd command, and the boot information is missing. [In fact, you can also ref]
Fdisk, mkfs. ntfs, ms-sys, win7. ISO, and> 4GU disks are required.
1. Use fdisk to create an ntfs partition on the USB disk, edit the flag, and check the boot option.
Fdisk/dev/sdc
M (anual)
P (arted)
D (elete) deletes an existing Partition
P
N (ew) create a partition (4 GB)
P (rimary)
+ 4G
N (ew) create a partition (remaining)
P (rimary)
P
W (rite & save)
1) You can also use gparted to create an ntfs partition on the USB flash drive. For graphic interfaces, install the partition (not recommended)
2) This 4G partition is used to store win7iso content, so the size must be large enough (about 3.2 GB for windows7)
3) The boot option is set to active partition.
2. Format mkfs. ntfs
3. mount win7iso and the new ntfs partition, and copy all contents to the ntfs partition.
4. Compile and install ms-sys
Ms-sys is a mbr Writing Tool, plays a role in letting the system know that it can guide win7 installation, is crucial. Download To ms-sys.sourceforge.net
Make directly has a ms-sys in the bin, or make install
5. Run: bin/ms-sys-7/dev/sdX write into mbr
The-7 parameter indicates win7, and sdX indicates the drive letter corresponding to the USB flash drive.
WinXP should use the-m option directly.
Ps:
1. It is easy to create a linux boot disk in linux. For more information, see
How to Create a USB flash drive in Linux
Selection of tools for making a USB boot disk
2. The original SD card was used. later it was found that although K29 had an SD card reading interface, it was not recognized by the bios boot device.
From: http://blog.csdn.net/pipisorry/article/details/41369821
Ref: Create a Windows 7 installation USB flash drive in linux
Create a Windows 7 installation USB flash drive in linux