blob: 9c0e9fb9880e4687dfbc47a423d92b3307970276 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
title: Write ISO to USB Key
permalink: /write-iso-usb.html
date: 2023-05-08T12:00:00+02:00
layout: post
type: note
draft: false
tags: [linux]
---
Write ISO to USB key. Nothing fancy here.
```sh
sudo dd if=iso_file.iso of=/dev/sdX bs=4M status=progress conv=fdatasync
```
|