setup/doc/bootable-usb-drive.md

35 lines
472 B
Markdown
Raw Normal View History

# Create Bootable USB Drive
2022-02-12 17:47:04 +01:00
* download debian
* mount USB drive
2022-02-12 17:47:04 +01:00
* identify USB drive using
```
df -h
```
* unmount drive using
```
sudo umount /dev/<tbd>
```
* format drive using
```
sudo mkfs.vfat /dev/<tbd>
```
* identify the device name
```
lsblk -p | grep "disk"
```
* make sure the USB drive is not mounted
```
sudo umount /dev/<tdb>
```
* write the ISO file to the USB drive
```
sudo dd if=[ISO FILE] of=[DEVICE NAME] bs=4M conv=fdatasync status=progress
```