このコマンドは大変便利です。ISOファイルをUSBメモリやSDカードに書き込むだけでなく、バックアップディスクを作るのにも役に立ちます。
覚えておいて損のないコマンドの一つだと思います。
[書式]
dd if=/path/file.iso of=/dev/sdx status=progress bs=4M && sync
オプション・引数
- bs=BYTES 1回に読み込み、書き込む量 (default: 512);
- if=FILE 読み込むファイル
- of=FILE 書き込むディスク
- status=LEVEL The LEVEL of information to print to stderr;
- ‘none’ suppresses everything but error messages,
- ‘noxfer’ suppresses the final transfer statistics,
- ‘progress’ shows periodic transfer statistics
- sync pad every input block with NULs to ibs-size; when used
with block or unblock, pad with spaces rather than NULs
コメント