New blog posts on dd, mirrors wget, and temporary static ip

This commit is contained in:
Brandon Rozek 2020-01-20 21:49:22 -05:00
parent 2c56b6992a
commit 0cb37f3df0
3 changed files with 81 additions and 0 deletions

13
content/blog/ddforiso.md Normal file
View file

@ -0,0 +1,13 @@
---
title: "Burning ISOs with dd"
date: 2020-01-20T10:23:20-05:00
draft: false
images: []
---
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
```