WikiJS/home/linux/create-bootable-usb.md
2025-01-01 02:04:46 +00:00

488 B

title description published date tags editor dateCreated
Create Bootable USB Simple command to create bootable usb true 2024-07-08T02:49:40.811Z markdown 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