|
Recent want to install Windows on the U disk burn Ubuntu, read some information on the Internet, but many say that is very vague, Ever since, I have quite a few detours. Recorded here, I hope to help everyone.
First, you'll have a USB bar, where we assume that USB in ubuntu as / dev / sdb
1. USB device to / dev / sdb partition, note that if the primary partition,
sudo fdisk / dev / sdb
Command (m for help): n
Partition type: p primary (0 primary, 0 extended, 4 free) e extended
Select (default p): p
Partition number (1-4, default 1):
Using default value 1
First sector (2048-15564799, default 2048):
Using default value 2048
Last sector, + sectors or + size {K, M, G} (2048-15564799, default 15564799):
Using default value 15564799
Command (m for help): p
Disk / dev / sdb: 7969 MB, 7969177600 bytes
246 heads, 62 sectors / track, 1020 cylinders, total 15564800 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 identifier: 0x8d55b9cb Device Boot Start End Blocks Id System
/ Dev / sdb1 2048 15564799 7781376 83 Linux
Above / dev / sdb1 on sub-out, all of the space gave sdb1
2. Then the / dev / sdb1 to boot partition
Command (m for help): a
Partition number (1-4): 1
Command (m for help): p
Disk / dev / sdb: 7969 MB, 7969177600 bytes
126 heads, 10 sectors / track, 12353 cylinders, total 15564800 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 identifier: 0x8d55b9cb Device Boot Start End Blocks Id System
/ Dev / sdb1 * 2048 15564799 7781376 83 Linux
We can see that behind sdb1, more than a month *
3. Next, put the above to do all changes written to the USB
Command (m for help): w
The partition table has been altered!
Calling ioctl () to re-read partition table.
WARNING: Re-reading the partition table failed with error 22: Invalid argument.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe (8) or kpartx (8)
Syncing disks.
And then q to quit
4. Format the partition as the ntfs
sudo mkfs -t ntfs / dev / sdb1
This process, the partition will write all 0s, probably will wait a few minutes
5. The next step is to download a good iso file to the boot partition dd
# Burn the downloaded iso file to usb partition (and too, must be a partition, otherwise use the usb will next appear Operating not found problems
sudo dd if = / home / peter / Downloads / WindowsTechnicalPreview-x64-ZH-CN.iso of = / dev / sdb1 bs = 4M iflag = direct
See, I installed win10
6. It is not possible to start from usb disk, but also write information usb disk MBR area, which requires a tool LILO
sudo apt-get install lilo
sudo lilo -M / dev / sdb mbr
Next time it starts, select the USB boot will appear windows installation interface!
In addition, I also tried unetbootin, but without success, choose from the U disk boot, has been stuck in a selection screen. We have a successful test of the recommendation of trouble. |
|
|
|