How To Make A Live Linux Usb For Mac

  среда 16 января
      17
How To Make A Live Linux Usb For Mac Rating: 8,0/10 9228 votes

Remember that to boot from a USB on a Mac you will need to hold down the Alt/Option’ key during boot. Download Unetbootin for OS X. Other GUI alternatives include. How to Make a Bootable Linux USB Drive on Ubuntu. Ubuntu comes with an app to create live USB drives already installed. Open the Dash and search for ‘USB Startup’.

By • 6:00 am, January 7, 2016 • • Ubuntu running on my Macbook Pro -- beautiful. Photo: Rob LeFebvre/Cult of Mac Have you ever wanted to try out a different operating system on your Mac? Ever since Apple started using Intel chips in their computers, it’s been super simple to run Windows and even popular Linux distributions via Boot Camp, virtual environments like Parallels and VMWare Fusion, and the like. The problem is that you need to use up precious system resources to run these things on your Mac. Even virtual machines take up disk space, as does running Boot Camp and partitioning your main Hard drive.

Office software for macintosh. Close the window and you should be good to go! Still having issues getting setup? Outlook for your Mac has now been configured!

What if you just want to test something out on your Mac before fully committing? Turns out it’s fairly easy to run Linux on your Mac without using up any bit of your hard drive. Using a flash drive and some Terminal commands, you can check out a distribution like Ubuntu running right on your Mac without having to sacrifice a thing. Prep your flash drive Format the drive in Disk Utility. How to get refund for mac app store purchase. Photo: Rob LeFebvre/Cult of Mac The first thing you need to do is to find a spare flash drive of at least 2 Gb.

I used a 4 Gb one, and you can probably use as large a drive as you want. Plug the flash drive into your Mac and then launch Disk Utility.

Once in there, click on the flash drive in the pane to the left, and then click on the Erase button at the top. If you’re using a utility like, you’ll want to quit it before you start the Erase. Let OS X do its thing and remount your flash drive. Now launch Terminal. Get Ubuntu Make sure you grab the 64-bit version.

Make

Photo: Rob LeFebvre/Cult of Mac Now you’ll want to download Linux. I’ve chosen Ubuntu since it’s my favorite Linux distribution, so these instructions will assume you are using the same. If not, be sure to see how the distro you choose will work on a flash drive. Head over to and download the 64-bit version of the latest stable version (Ubuntu 14.04.3 LTS as of now). You can totally try the cutting-edge version (15.10 as of this post), but can’t count on it to be as stale as possible.

Use it at your own (very minor) risk. You’ll be asked to donate to Ubuntu–feel free to do so; the team is pretty great–but you can also just click the “Not now, take me to the download” button and the.iso file will come to your Mac.

Now it’s time to drop into Terminal. Change file formats From.iso to.img.dmg.

Photo: Rob LeFebvre/Cult of Mac First off, you want to change the.iso file to a more Mac-friendly.img format. Launch Terminal and type or paste the following command in. Hdiutil convert -format UDRW -o ~/path/to/target.img ~/path/to/ubuntu.iso The ~/path/to/target.img ~/path/to/ubuntu.iso part will need to be your own path to the file you just downloaded. For example, I downloaded it to my Downloads folder, so my path is ~/Downloads/ubuntu-14.04.3-desktop-amd64.iso. The command I used, then, is: hdiutil convert -format UDRW -o ~/Downloads/ubuntu-14.04.3-desktop-amd64.img ~/Downloads/ubuntu-14.04.3-desktop-amd64.iso OS X may add the file extension.dmg to the file you’re creating, so you could end up with ubuntu-14.04-desktop-i386.img.dmg.

Don’t worry about it, either way. If successful, Terminal will print some dots across the window and you’ll get a result message similar to the above. Find your device node Make sure you note the correct flash drive. Photo: Rob LeFebvre/Cult of Mac You’ll want to make note of what OS X calls the flash drive you’re using. Run the following command in Terminal while the flash drive is plugged in still. Diskutil list Take note of your flash drive’s identifier. Mine says /dev/disk2.

You can tell it’s the flash drive by it’s size – make sure you don’t note down your main hard drive, which typically has more than 2 Gb on it. Once you have the identifier, you’ll want to unmount the flash drive in Terminal with the following command: diskutil unmountDisk /dev/disk2 (or whatever disk_ yours is identified as) If it works, you should see the message, “Unmount of all volumes on disk2 was successful” in Terminal. Copy Ubuntu to your flash drive Now you want to get the Ubuntu.img (or.dmg) files copied to the flash drive. You can’t just drag and drop, so you’ll need to run another Terminal command. You’ll need to double check you’re entering the right disk info here, as you could kill your main hard drive if you’re not careful. Here it is: sudo dd if=/path/to/ubuntu-14.04-desktop-amd64+mac.img.dmg of=/dev/rdiskN bs=1m Notice that /path/to/ubuntu-14.04-desktop-amd64+mac.img.dmg part?