docs: create home/linux/create-bootable-usb

This commit is contained in:
Cheeks 2024-07-08 02:49:41 +00:00 committed by cheeks
parent fa492c1468
commit 99769246e4

View File

@ -0,0 +1,22 @@
---
title: Create Bootable USB
description: Simple command to create bootable usb
published: true
date: 2024-07-08T02:49:39.215Z
tags:
editor: markdown
dateCreated: 2024-07-08T02:49:39.215Z
---
# Create Bootable USB Stick
### Steps:
1. Download desired iso and navigate to iso folder.
2. Insert USB Drive
3. Enter the following command:
```
sudo dd if=/path/to/iso of=/dev/sdx bs=512 status=progress && sync
```
#### Reference:
`if = input file`
`of = output file`
`bs = block size`