mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-25 09:36:31 -05:00
Update with pv
This commit is contained in:
parent
198071e141
commit
3332543b9c
1 changed files with 7 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
title: "Burning ISOs with dd"
|
title: "Burning ISOs with dd/pv"
|
||||||
date: 2020-01-20T10:23:20-05:00
|
date: 2020-01-20T10:23:20-05:00
|
||||||
draft: false
|
draft: false
|
||||||
tags: [ "linux" ]
|
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
|
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
|
||||||
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue