Skip to content

Instantly share code, notes, and snippets.

View zsevic's full-sized avatar
🎯
Focusing

Željko Šević zsevic

🎯
Focusing
View GitHub Profile
@zsevic
zsevic / makeItBootable.sh
Last active April 10, 2019 12:01
Make bootable usb drive
# sudo apt-get install pv
# sudo fdisk -l
sudo dd if=[PATH].iso bs=4M | pv | sudo dd of=/dev/sdX && sync
# replace 'X' with the USB device letter; example: 'sdc', 'sdd'