31
27

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 USBブートを作る。

Last updated at Posted at 2016-03-07

VirtualBoxで仮想環境をインストール方法もありますが、やはりパフォーマンスを追求すると、Macに直接インストールしたくなる。
##ダウンロード
任意のUbuntuをダウンロードする。
完了したら、

cd ~/Downloads/
``
以下のファイルがダウンロードされているはず。
ubuntu-ja-14.04-desktop-amd64.iso

##USBのドライブを調べる

diskutil list

/dev/disk0 (internal, physical):
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *256.1 GB disk0
1: EFI EFI 209.7 MB disk0s1
2: Apple_CoreStorage main 155.2 GB disk0s2
3: Apple_Boot Recovery HD 650.0 MB disk0s3
4: Microsoft Basic Data BOOTCAMP 100.0 GB disk0s4
/dev/disk1 (internal, virtual):
#: TYPE NAME SIZE IDENTIFIER
0: Apple_HFS main +154.9 GB disk1
Logical Volume on disk0s2
9E3A267C-F4DA-4AA9-96C2-C4469D927A51
Unlocked Encrypted
/dev/disk2 (external, physical):
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *15.8 GB disk2
1: EFI EFI 209.7 MB disk2s1
2: Microsoft Basic Data SONY16GBB 15.6 GB disk2s2


今回は、USBが/dev/disk2に接続されている。

##イメージファイルに変換する

hdiutil convert -format UDRW -o target.img ubuntu-ja-14.04-desktop-amd64.iso

Master Boot Record(MBR:0) を読み込み中...
Ubuntu 14.04 ja amd64 (Apple_ISO:1) を読み込み中...
(Type EF:2) を読み込み中...
Ubuntu 14.04 ja amd64 (Apple_ISO:3) を読み込み中...
...............................................................................
経過時間: 7.849s
速度:140.7M バイト/秒
節約率:0.0%
created: /Users/home/Downloads/target.img.dmg

以下のファイルができる。

target.img.dmg

##書き込む(書き込みドライブに注意してください。)

diskutil unmountDisk /dev/disk2

Unmount of all volumes on disk2 was successful

sudo dd if=target.img.dmg of=/dev/rdisk2 bs=1m

1104+1 records in
1104+1 records out
1158348800 bytes transferred in 103.275414 secs (11216114 bytes/sec)

## イジェクト

diskutil eject /dev/disk2

Disk /dev/disk2 ejected

再起動してALTキーを押しながらMacを起動
31
27
1

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
31
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?