Mac OS制作Ubuntu的U盘启动盘

1. 下载Ubuntu的iso镜像文件

地址为:https://ubuntu.com/download/desktop

2. 把iso镜像文件转换成dmg文件

bash 复制代码
cd Downloads/
hdiutil convert -format UDRW -o ubuntu.iso ubuntu-18.04.2-desktop-amd64.iso

-format为生成文件的权限;UDRW :表示转换成有read/write的权限的镜像。

终端里面出现以下的成功信息:

复制代码
Reading Protective Master Boot Record (MBR : 0)...
Reading GPT Header (Primary GPT Header : 1)...
Reading GPT Partition Data (Primary GPT Table : 2)...
Reading ISO9660 (DOS_FAT : 3)...
...............................................................................
Reading Appended2 (C12A7328-F81F-11D2-BA4B-00A0C93EC93B : 4)...
...............................................................................
Reading Gap1 (DOS_FAT : 5)...
...............................................................................
Reading Ubuntu 22.04.2 LTS amd64         (Apple_ISO : 6)...
...............................................................................
Reading GPT Partition Data (Backup GPT Table : 7)...
...............................................................................
Reading GPT Header (Backup GPT Header : 8)...
...............................................................................
Elapsed Time: 10.566s
Speed: 444.7MB/s
Savings: 0.0%
created: /Users/wangyifan/Desktop/ubuntu.iso.dmg
  1. 插入U盘,并用命令行卸载U盘
    注意找到U盘的路径,使用命令
bash 复制代码
diskutil list

找到U盘的路径为/dev/disk4,并使用命令行卸载U盘:

bash 复制代码
diskutil unmountDisk /dev/disk4

显示信息为:

复制代码
Unmount of all volumes on disk4 was successful。
  1. 把iso文件写入U盘
bash 复制代码
mv ubuntu.iso.dmg ubuntu.iso
sudo dd if=./ubuntu.iso of=/dev/disk4 bs=1m

显示信息为:

复制代码
4699+1 records in
4699+1 records out
4927586304 bytes transferred in 300.753285 secs (16384148 bytes/sec) 
  1. 弹出U盘
bash 复制代码
sudo eject /dev/disk4
相关推荐
Ahern_7 分钟前
崖山数据库安装部署
linux·数据库
BS_Li26 分钟前
【Linux系统编程】权限的概念
linux·权限
cellurw36 分钟前
Day67 Linux I²C 总线与设备驱动架构、开发流程与调试
linux·c语言·架构
天朝八阿哥1 小时前
Bye~~ win10!
linux·windows
孙同学_1 小时前
【Linux篇】软链接vs硬链接:Linux文件系统中的两种引用机制
linux·运维·服务器
hour_go1 小时前
解决Linux系统中“undeclared identifier“问题的完整指南
linux·运维·服务器
天赐细莲2 小时前
(Linux) WSL 通过 VSCode 连接不执行 profile 问题(登录Shell问题)
linux·运维·vscode
咬_咬2 小时前
Linux时间轮定时器
linux·运维·网络·定时器·timerfd
LCG元2 小时前
Linux Shell脚本编程实战:自动备份网站文件和数据库,并定期清理过期备份
linux
Liu1bo2 小时前
【MySQL】表的约束
linux·数据库·mysql