Update with pv

This commit is contained in:
Brandon Rozek 2020-12-07 22:50:26 -05:00
parent 198071e141
commit 3332543b9c

View file

@ -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
```