Skip to content

Instantly share code, notes, and snippets.

@jruz
Last active November 12, 2016 05:46
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 jruz/467cb34464ef4b345449 to your computer and use it in GitHub Desktop.
Save jruz/467cb34464ef4b345449 to your computer and use it in GitHub Desktop.
Create bootable pendrive from OSX
# convert from .iso to .img
hdiutil convert -format UDRW -o ~/path/arch.img ~/path/arch.iso
# list drives
diskutil list
# unmount pendrive
diskutil unmountDisk /dev/diskN
# copy files with progress bar (requires brew install pv)
pv -tpreb ~/path/arch.img | sudo dd of=/dev/rdiskN bs=1m
# copy files to usb drive without progress bar
sudo dd if=~/path/arch.img of=/dev/rdiskN bs=1m
# eject the usb drive
diskutil eject /dev/diskN
# source
http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-mac-osx
Copy link

ghost commented Nov 12, 2016

Here is the tutorial "How to bootable usb pendrive with CMD step by step easy tutorial".
in this tutorial i was show , how you can make your pendrive bootable for windows setup with easy step .
Watch it and comment blew . its easy or not . video => https://www.youtube.com/watch?v=dd69WxjlWkc

Thanks.

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