Written by marcelpetrick
on June 22, 2015
Based on this tutorial (for Linux itself, use Unetbootin).
Open a terminal and then run:
1 2 3 4 5 6 7 8 9 10 |
echo "convert the iso" hdiutil convert -format UDRW -o linuxmint-17.2-cinnamon-64bit-rc.iso.img linuxmint-17.2-cinnamon-64bit-rc.iso echo "show all drives" diskutil list echo "make sure the drive-to-use is not mounted" diskutil unmountDisk /dev/disk4 echo "copy image to drive" sudo dd if=linuxmint-17.2-cinnamon-64bit-rc.iso.img.dmg of=/dev/rdisk4 bs=1m echo "safely eject the drive" diskutil eject /dev/disk4 |
Used it twice to create first a Kubuntu-stick (did not like the desktop-enviroment) and then a newer for Linux Mint (latest version).
Leave a Reply
You must be logged in to post a comment.