Skip to content

Instantly share code, notes, and snippets.

@BilalAM
Created August 10, 2019 08:05
Show Gist options
  • Save BilalAM/f42e725a36cbfb91a8ac44dcb996b4de to your computer and use it in GitHub Desktop.
Save BilalAM/f42e725a36cbfb91a8ac44dcb996b4de to your computer and use it in GitHub Desktop.
Creating BOOTABLE USB from an ISO file
#to check which one is the USB
sudo fdisk -l
#replace of=*name of USB device*
sudo dd if=/dev/zero of=*usb* bs=4M status=progress conv=fdatasync
#replace if=*distribution iso file* and of=*name of USB device*
sudo dd if=*distribution iso file* of=*usb-device* bs=4M status=progress conv=fdatasync
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment