aboutsummaryrefslogtreecommitdiff
path: root/content/notes/write-iso-usb.md
blob: 04b0c818c6f63cfc19715b4267809d1e88b11fba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
title: Write ISO to USB Key
url: write-iso-usb.html
date: 2023-05-08
type: notes
draft: false
---

Write ISO to USB key. Nothing fancy here.

```sh
sudo dd if=iso_file.iso of=/dev/sdX bs=4M status=progress conv=fdatasync
```