4
3

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.

DebianのLiveインストールイメージをブータブルにUSBスティックへ書き込むメモ

Posted at

単にISOをddすれば良いんやね。

Liveインストールイメージ(ISO)のダウンロード


$ wget debian-live-7.8.0-i386-gnome-desktop.iso

ダウンロード元は以下のURLより。

USBスティックのデバイスを確認

$ diskutil list
[略]
/dev/disk4
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:     FDisk_partition_scheme                        *2.1 GB     disk4
   1:                 DOS_FAT_32 UNTITLED                2.1 GB     disk4s1

どうやら/dev/disk4がUSBスティックらしい。

USBスティックをアンマウント

$ diskutil umountDisk /dev/disk4

イメージの書き込み

単にddでコピーすれば良いらしい。


$ sudo time dd if=debian-live-7.8.0-i386-gnome-desktop.iso of=/dev/disk4 bs=32m
1287+1 records in
1287+1 records out
1349664768 bytes transferred in 407.597761 secs (3311266 bytes/sec)
      407.62 real         0.00 user        10.77 sys
  • USBスティック: USB 2.0
  • ISOのファイルサイズ: 1.3 GB
  • 処理時間: 7分かからないくらい。
4
3
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
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?