fix theme, fix urls
This commit is contained in:
parent
3cdc1b9c0e
commit
199c6f4cb8
203 changed files with 603 additions and 53 deletions
15
content/posts/2013/11/dd-with-progress.md
Normal file
15
content/posts/2013/11/dd-with-progress.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
+++
|
||||
date = "2013-11-29T17:11:00-07:00"
|
||||
title = "dd(8) with progress"
|
||||
slug = "dd-with-progress"
|
||||
+++
|
||||
|
||||
I needed to write an iso image to a USB key, and the typical way is with
|
||||
just dd(8), but I wanted a progress bar. A quick google later, and I
|
||||
get:
|
||||
|
||||
pv -tpreb isoname | sudo dd of=/dev/sdd bs=1024
|
||||
|
||||
Which will write the iso image to the USB stick sdd, and give me a
|
||||
progress bar, tell me how fast it is writing, and give me an eta when
|
||||
finished. Perfect.
|
||||
Loading…
Add table
Add a link
Reference in a new issue