diff --git a/content/blog/ddforiso.md b/content/blog/ddforiso.md index f128375..3441fcf 100644 --- a/content/blog/ddforiso.md +++ b/content/blog/ddforiso.md @@ -1,5 +1,5 @@ --- -title: "Burning ISOs with dd" +title: "Burning ISOs with dd/pv" date: 2020-01-20T10:23:20-05:00 draft: false tags: [ "linux" ] @@ -11,3 +11,9 @@ While there are nice graphical tools like [Etcher](https://www.balena.io/etcher/ sudo dd bs=4M if=image.iso of=/dev/sdX status=progress oflag=sync ``` +Alternatively you can use `pv` + +```bash +pv image.iso > /dev/sdX +``` +