Skip to content

Instantly share code, notes, and snippets.

@andrealmar
Last active May 4, 2019 00:48
Show Gist options
  • Save andrealmar/e6d4a7b55a46e6e2a911f1ba1ed3cc90 to your computer and use it in GitHub Desktop.
Save andrealmar/e6d4a7b55a46e6e2a911f1ba1ed3cc90 to your computer and use it in GitHub Desktop.

for command line users the best option is to use dd

Insert the USB drive and open terminal (Ctrl+Alt+T)
better be a root (sudo -i), don't be afraid believe in yourself
use "fdisk -l"  to find the USB device
So in our case its /dev/sdb
Make sure the USB device is unmounted 

`umount /dev/sdb1`

Assuming the .iso file is in your current working folder, type the below command and wait for it to finish.

`dd if=ubuntu-12.04.2-server-i386.iso of=/dev/sdb bs=4m`

MAC OS

diskutil unmount /dev/disk2

sudo dd if=manjaro-i3-18.0.4-stable-x86_64.iso of=/dev/disk2 bs=4m

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment