website/content/blog/ddforiso.md

14 lines
407 B
Markdown
Raw Normal View History

---
title: "Burning ISOs with dd"
date: 2020-01-20T10:23:20-05:00
draft: false
2020-02-16 17:46:18 -05:00
tags: [ "linux" ]
---
While there are nice graphical tools like [Etcher](https://www.balena.io/etcher/), what is almost always a constant is the tool `dd`. Therefore, for future reference I'll just paste the `dd` command I use to make ISO images.
```bash
sudo dd bs=4M if=image.iso of=/dev/sdX status=progress oflag=sync
```