WikiJS/home/linux/create-bootable-usb.md
2025-06-08 22:19:54 +00:00

23 lines
487 B
Markdown

---
title: Create Bootable USB
description: Simple command to create bootable usb
published: true
date: 2025-06-06T12:27:35.410Z
tags:
editor: markdown
dateCreated: 2025-06-06T12:27:33.869Z
---
# 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`