侧边栏壁纸
博主头像
nivnek博主等级

道阻且长,行则将至

  • 累计撰写 21 篇文章
  • 累计创建 27 个标签
  • 累计收到 1 条评论

目 录CONTENT

文章目录

Create a U-boot disk for Ubuntu with Mac OS

kenvin
2022-12-29 / 0 评论 / 0 点赞 / 767 阅读 / 1516 字

Download Ubuntu release

wget https://releases.ubuntu.com/focal/ubuntu-20.04.5-live-server-amd64.iso

Using hdiutil to convert ISO to dmg

 hdiutil convert -format UDRW  -o ~/Downloads/ubuntu-server.dmg  ~/Downloads/ubuntu-20.04.4-live-server-amd64.iso

Check the serial number of the USB flash drive in Mac OS

diskutil list

Umount USB disk

diskutil unmountDisk /dev/diskN 

Write the image to a USB flash drive

sudo dd if=~/Downloads/ubuntu-server.dmg of=/dev/rdiskN bs=1m

Eject the USB flash drive

diskutil eject /dev/diskN

0

评论区