系统相关
首页 > 系统相关> > mac os系统下制作u盘启动的Windows的系统镜像

mac os系统下制作u盘启动的Windows的系统镜像

作者:互联网

个人比较爱好折腾计算机,最近去折腾完黑苹果,想安回windows,使用mac自带的启动转换助手,提示我的u盘无法格式化等问题,便在github上找到一个做法,本人成功了,所以翻译成中文分享出来
支持: windows7、8、10
需要的文件与设备:
1. windows ISO镜像
2. u盘(8g以上)
制作windows安装u盘步骤:

  1. 打开终端
  2. 卸载掉你的u盘(不是拔掉哈 ,简单来是就是输入这个命令在你的终端):格式:diskutil unmountDisk /dev/你的usb设备 比如: ( diskutil unmountDisk /dev/disk2 )
    3.等待更新,或者直接看下文先

下面是原文(英文好的直接看哈):

Create a Bootable USB Flash Drive for Windows 7/8/10 on MAC OS X

!! Plugin the usb flash drive for now !!

***** Step 1 **** hit space and command at the same time. -> type terminal

***** Step 2 **** Type in terminal ( diskutil list ) this well show al the disk what is mounted to your machine. ** Note ** Make sure you memorize your usb disk on the left side you well see /dev/disk0 etc.

***** Step 3 **** Here we going to unmount the usb flash drive diskutil unmountDisk /dev/yourusbflashdrive -- example ( diskutil unmountDisk /dev/disk2 )

***** Step 4 **** Now we going to install the iso in the usb. Make sure you have a Windows ISO sudo dd if=yourisofilelocation of=/dev/yourusbflashdrive bs=1m -- example ( sudo dd if=/Users/Delgesh/Desktop/Wind10_english_x64.iso of=/dev/disk2 bs=1m) Enter your user password to contine.

***** Step 5 **** Wen Step 4 is done we going to eject the usb flash drive diskuntil eject /dev/yourusbflashdrive -- example ( diskutil eject /dev/disk2 )

Now we succesfull created Bootable USB Flash Drive

标签:unmountDisk,diskutil,usb,Windows,disk2,Step,dev,mac,os
来源: https://www.cnblogs.com/xiaolantian/p/12509955.html