LoginSignup
10

More than 5 years have passed since last update.

Mac で Ubuntu 18.04 のインストールUSBメモリスティックの作成

Last updated at Posted at 2018-05-06

macOS High Sierra で Ubuntu 18.04 LTS Server のインストール USB メモリスティックを作成した際のメモ

参考

手順

  1. https://www.ubuntu.com/download/server から ubuntu-18.04-live-server-amd64.iso を ~/Downloads にダウンロード

  2. USB メモリスティックを接続後、デバイスパスを確認

    $  diskutil list
    
  3. USB メモリスティックをアンマウント(N はデバイスパス番号)

    $  diskutil unMountDisk /dev/diskN
    
  4. dd コマンドでインストールUSBの作成(N はデバイスパス番号)

    $  cd ~/Downloads
    $  sudo dd if=ubuntu-18.04-live-server-amd64.iso of=/dev/rdiskN bs=1m
    
  5. USB メモリスティックの取り外し(N はデバイスパス番号)

    $  diskutil eject /dev/diskN
    

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10