zoukankan      html  css  js  c++  java
  • Generate Ubuntu Install Media On Mac

    Opps, my computer system was broken again... Let's repire it.


    Introduction

    The system of my PC is broken. I could enter the UEFI setting. So that means I coud start my PC using USB flash drive. But first of all, I need a Installer driver.

    ISO to DMG

    I have a xxx.iso. I need to convert it to xxx.dmg file.

    hdiutil convert -format UDRW -o xxx.img xxx.iso
    

    The process is very fast.

    Install to USB Flash Driver

    Firstly, unmount the target driver.

    # Obtain your disk name.
    diskutil list
    # assuming that your USB flash driver is named disk9
    diskutil unmountDisk /dev/disk9
    

    Then, write data to this flash. Be careful not to mistake the flash name.

    # The following command cost some minutes.
    sudo dd if=where your img.dmg file exists of=/dev/rdisk9 bs=1m
    # finally eject your flash. All done.
    diskutil eject /dev/disk9
    
  • 相关阅读:
    EncodeLDPC校验矩阵H的高斯变换
    Linuxubuntu学习(一)
    tcp通信
    HTTP协议,超文本传输协议
    局部变量成员变量
    线程
    正则表达式
    面向对象
    String类
    Object类
  • 原文地址:https://www.cnblogs.com/darryo/p/Generate-Ubuntu-Install-Media-On-Mac.html
Copyright © 2011-2022 走看看