MAC如何烧录img文件或ios文件
程序员文章站
2022-04-14 11:23:03
文章目录背景介绍操作步骤注意事项遗留问题参考资料背景介绍U盘4G文件SDCard-Burn-Image-20200917.22.imgmac 系统Catalina 10.15.7操作步骤Mac下将ISO写入U盘可使用命令行工具dd,操作如下:1、From the terminal run df -h (显示U盘挂载的路径,使用如下命令):df -hRecord the device name of the filesystem’s partition, e.g. /dev/di...
背景介绍
- U盘4G
- 文件SDCard-Burn-Image-20200917.22.img
- mac 系统Catalina 10.15.7
操作步骤
Mac下将ISO写入U盘可使用命令行工具dd,操作如下:
1、From the terminal run df -h (显示U盘挂载的路径,使用如下命令):
df -h
- Record the device name of the filesystem’s partition, e.g. /dev/disk2s1(记录U盘路径)
上图路径为 /dev/disk2s1
sudo diskutil unmount /dev/disk2s1
- 将U盘unmount(将N替换为挂载路径)diskutil unmountDisk /dev/disk[N]:
sudo diskutil unmount /dev/disk2s1
3、写入U盘:sudo dd if=iso或img路径 of=/dev/rdisk[N] bs=1m rdisk
sudo dd bs=1m if=/Users/peterwang/Desktop/H3卡刷系统-20200801/SDCard-Burn-Image-20200917.22.img of=/dev/rdisk2
注意:该刻录并没有进度条显示。
注意事项
如果不输入unmount命令将出现以下信息提示: Resource busy
遗留问题
/dev/disk2s1 => /dev/rdisk2
zsh: operation not permitted: /dev/rdisk3
该问题应该是zsh权限不能操作root用户下的原因
暂示解决,见其他资料
http://forever.blog.chinaunix.net/uid-27875-id-5104694.html
参考资料
本文地址:https://blog.csdn.net/qq_29855509/article/details/108969431