0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Linux上 ISOファイルをUSBメモリへ書き込む方法

Last updated at Posted at 2025-11-04

LinuxではRufusが使えない為、以下の方法で書き込みます。

ISOの取得

wgetもしくはブラウザから取得する。

wget https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-13.1.0-amd64-netinst.iso

※今回筆者はDebianをインストールしたかっただけで、何でもいい

USBの名前を確認する

lsblk

書き込み

sdb(lsblkの結果に合わす)にdebian-13.1.0-amd64-netinst.isoを書き込む。

sudo dd if=debian-13.1.0-amd64-netinst.iso of=/dev/sdb bs=4M status=progress conv=fsync

キャッシュに残っているデータがあれば全て書き込む

念の為に実行した方がいい。

sync
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?