Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OSX 下如何烧制系统启动盘 #16

Open
xiaozefeng opened this issue Jun 8, 2019 · 1 comment
Open

OSX 下如何烧制系统启动盘 #16

xiaozefeng opened this issue Jun 8, 2019 · 1 comment

Comments

@xiaozefeng
Copy link
Owner

xiaozefeng commented Jun 8, 2019

  1. 插入u盘
  2. 执行 diskutil list 查看 u盘
    可能是 /dev/disk2 或者 /dev/disk3 可以通过你的U盘的存储大小去判断
/dev/disk2 (external, physical):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:     FDisk_partition_scheme                        *30.8 GB    disk2
   1:             Windows_FAT_32 ZFX                     30.8 GB    disk2s1
  1. 取消挂载 (注意:不是 eject)
diskutil unmountDisk /dev/disk2
  1. 开始烧录
sudo dd if=你的iso文件路径  of=/dev/disk2 bs=4m ;sync

可能需要等待几分钟

  1. 写入完成,弹出u盘
diskutil eject /dev/disk2
@xiaozefeng
Copy link
Owner Author

因为在我的电脑上U盘的位置时 /dev/disk2 , 在你电脑上可能不一样,请将 /dev/disk2 替换成你的U盘位置

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant