mirror of
https://github.com/Brandon-Rozek/website.git
synced 2025-10-09 22:41:13 +00:00
New blog posts on dd, mirrors wget, and temporary static ip
This commit is contained in:
parent
2c56b6992a
commit
0cb37f3df0
3 changed files with 81 additions and 0 deletions
13
content/blog/ddforiso.md
Normal file
13
content/blog/ddforiso.md
Normal 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
|
||||
```
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue