Created
February 17, 2018 13:02
-
-
Save mrdotb/da67fed8ee50cbcc3072d2ccb4cff8e5 to your computer and use it in GitHub Desktop.
create a bootable usb stick linux image on arch linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# dep | |
sudo pacman -S dosfstools | |
# find the device | |
lsblk | |
# umount the key if mounted | |
sudo umount /dev/sdx | |
# format it | |
sudo mkfs.vfat /dev/sdx | |
# cp iso | |
sudo dd bs=4M if=input.iso of=pathToYourUsbDrive | |
sync |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment