aboutsummaryrefslogtreecommitdiff
path: root/content/write-iso-usb.md
diff options
context:
space:
mode:
authorMitja Felicijan <m@mitjafelicijan.com>2023-07-12 18:35:08 +0200
committerMitja Felicijan <m@mitjafelicijan.com>2023-07-12 18:35:08 +0200
commit23a56bd50b04211da3cab45f72c3390711b2416b (patch)
treeab9a4a0136b4cce06dba7d853e296f682f807dbb /content/write-iso-usb.md
parentcecb4b48a39a3558979b9c4b50e45bf605a3684e (diff)
downloadmitjafelicijan.com-23a56bd50b04211da3cab45f72c3390711b2416b.tar.gz
Moved notes and posts into subfolders
Diffstat (limited to 'content/write-iso-usb.md')
-rw-r--r--content/write-iso-usb.md15
1 files changed, 0 insertions, 15 deletions
diff --git a/content/write-iso-usb.md b/content/write-iso-usb.md
deleted file mode 100644
index 03b2c11..0000000
--- a/content/write-iso-usb.md
+++ /dev/null
@@ -1,15 +0,0 @@
1---
2title: Write ISO to USB Key
3url: write-iso-usb.html
4date: 2023-05-08T12:00:00+02:00
5type: note
6draft: false
7tags: [linux]
8---
9
10Write ISO to USB key. Nothing fancy here.
11
12```sh
13sudo dd if=iso_file.iso of=/dev/sdX bs=4M status=progress conv=fdatasync
14```
15