Skip to content

Instantly share code, notes, and snippets.

@gornostal
Last active January 20, 2018 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gornostal/59b83f58fce6e15751fb4831e595357a to your computer and use it in GitHub Desktop.
Save gornostal/59b83f58fce6e15751fb4831e595357a to your computer and use it in GitHub Desktop.
Format USB drive from command line
lsblk
umount /dev/sdc
sudo fdisk /dev/sdc
d,d,d,d,...
n
w
sudo mkfs.vfat /dev/sdc1
sudo dd if=/path/to/ubuntu.iso of=/dev/sdb bs=1M
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment