14
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

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
```

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

$ diskutil unMountDisk /dev/diskN
```

  1. dd コマンドでインストールUSBの作成(N はデバイスパス番号)

$ cd ~/Downloads
$ sudo dd if=ubuntu-18.04-live-server-amd64.iso of=/dev/rdiskN bs=1m
```

  1. USB メモリスティックの取り外し(N はデバイスパス番号)

$ diskutil eject /dev/diskN
```

14
10
0

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
14
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?