zoukankan      html  css  js  c++  java
  • mac os系统下制作u盘启动的Windows的系统镜像

    教你如何在安了黑苹果想在黑苹果下安回windows

    安装过程出现问题:使用mac自带的启动转换助手,提示u盘无法格式化等问题

    所以没办法只好查询资料,然后经过我实验过后,终于成功的从黑苹果安装回windows了,所以发表一下,给需要的同学。

    支持: windows7、8、10

    需要的文件与设备:

    1. windows ISO镜像(系统镜像不能超5G大小(windows10官方下载的超过了大小是不行的,亲测,原因是因为文件格式的问题,如果你能在mac下格式化为ntfs那就可以),推荐去msdn下载镜像)
    2. u盘(8g以上)
    

    制作windows安装u盘步骤:

    可视化操作:

    1. 打开磁盘工具
      2.将u盘格式化为ms-dos或者FAT32或者ntfs(如果可以的话)
      3.然后双击打开下载好的windows镜像,然后复制全部内容到格化好的u盘,完成,重启按F12 或者 del,选择你的u盘启动即可

    命令操作:

    1.打开下载好的windows镜像,让mac会挂载到系统上。

    2.列出磁盘,找到你的u盘: sudo diskutil list

    3.格式化U盘的内容格式:sudo diskutil eraseDisk FAT32 "u盘名称" MBR "list上列出的名字" 比如: diskutil eraseDisk FAT32 "WINDOWS10" MBR disk2
    解释:此步骤是清空磁盘并将u盘的文件系统格式化为FAT32,并将u盘重命名为WINDOWS10.

    4.拷贝windows镜像盘到U盘中的命令:cp -rp windows的挂载盘名 u盘的挂载盘名 比如cp -rp /Volumes/CCCOMA_X64FRE_EN-US_DV9/* /Volumes/WINDOWS10/
    注意:要根据你实际的盘名修改(diskutil list 中name那一项就是),复制约需5-10分钟。

    好了,复制完就完成了,就可以去重启用这个u盘启动去安装了

    以上参考于:
    https://www.zhihu.com/question/19630406?sort=created

    其他相关:

    mac下制作Linux的启动u盘:

    Create a Bootable USB Flash Drive for Linux on MAC OS

    ***** 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

  • 相关阅读:
    TensorFlow笔记-05-反向传播,搭建神经网络的八股
    TensorFlow笔记-04-神经网络的实现过程,前向传播
    TensorFlow笔记-03-张量,计算图,会话
    TensorFlow笔记-02-Windows下搭建TensorFlow环境(win版非虚拟机)
    TensorFlow笔记-01-开篇概述
    Tesseract-OCR-05-主要API功能介绍
    关于博客园美化装修
    Tesseract-OCR-04-使用 jTessBoxEditor 进行训练
    Tesseract-OCR-03-图片文字识别
    Tesseract-OCR-02-Tesseract-OCR 的安装与 环境变量配置
  • 原文地址:https://www.cnblogs.com/xiaolantian/p/12509955.html
Copyright © 2011-2022 走看看