23 lines
488 B
Markdown
23 lines
488 B
Markdown
---
|
|
title: Create Bootable USB
|
|
description: Simple command to create bootable usb
|
|
published: true
|
|
date: 2024-07-08T02:49:40.811Z
|
|
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`
|