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
相关推荐
hakukun1 天前
Ubuntu启动时volume报错无法进入系统问题解决
linux·ubuntu
qq_401700411 天前
Linux磁盘配置与管理
linux·运维·服务器
hoo3431 天前
【SolidWorks2025】3D CAD 软件:机械设计安装 + 补丁教程
linux
先知后行。1 天前
STM32常问问题
linux
Code Warrior1 天前
【Linux】传输层协议UDP
linux·运维·udp
Evan芙1 天前
Bash 变量命名规则与类型使用
linux·运维·开发语言·chrome·bash
濊繵1 天前
Linux网络--Socket 编程 TCP
linux·网络·tcp/ip
menge23331 天前
Linux网站搭建
linux·运维·网络
Bruce_Liuxiaowei1 天前
Kali Linux 加入 Windows 域实战指南:解决域发现与加入失败问题
linux·运维·windows
LumenL1u1 天前
CentOS 7/8/9 上安装 MySQL 8.0+ 完整指南
linux·mysql