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
相关推荐
轻松Ai享生活7 小时前
5 节课深入学习Linux Cgroups
linux
christine-rr8 小时前
linux常用命令(4)——压缩命令
linux·服务器·redis
三坛海会大神5558 小时前
LVS与Keepalived详解(二)LVS负载均衡实现实操
linux·负载均衡·lvs
東雪蓮☆8 小时前
深入理解 LVS-DR 模式与 Keepalived 高可用集群
linux·运维·服务器·lvs
乌萨奇也要立志学C++9 小时前
【Linux】进程概念(二):进程查看与 fork 初探
linux·运维·服务器
獭.獭.10 小时前
Linux -- 信号【上】
linux·运维·服务器
hashiqimiya10 小时前
centos配置环境变量jdk
linux·运维·centos
hashiqimiya10 小时前
权限更改centos中系统文件无法创建文件夹,使用命令让普通用户具备操作文件夹
linux
逆小舟14 小时前
【Linux】人事档案——用户及组管理
linux·c++
青草地溪水旁14 小时前
pthread_mutex_lock函数深度解析
linux·多线程·pthread