How to install on a MacBook Air 3,2 without an external CD drive?

I had a similar problem on an old Macbook 1.1 with a broken cd-drive. I remember that all the approaches shown in the forums did not work. Try to do the following (it worked for me), the main difference is to format the flash drive as EXT:

  • install refit

  • format your flash drive as EXT4. In the following commands note that you'll need to sudo.

  • install grub on the flash drive as follows: say the device is /dev/sdb and you mount it as /media/usbdrive, then run

    sudo grub-install --root-directory=/media/usbdrive /dev/sdb
    
  • copy the ubuntu iso to /media/usbdrive:

    sudo cp ubuntu-10.10-desktop-i386.iso /media/usbdrive/
    
  • now you want to create the config file for grub inside /media/usbdrive/boot/grub/. Create a file called grub.cfg with your favorite editor (you'll need to sudo): gksudo gedit /media/usbdrive/boot/grub/grub.cfg and paste the following 5 lines inside.

    search --set -f /ubuntu-10.10-desktop-i386.iso
    loopback loop /ubuntu-10.10-desktop-i386.iso
    linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/ubuntu-10.10-desktop-i386.iso persistent debug=
    initrd (loop)/casper/initrd.lz
    boot
    
  • Do a sudo sync to commit all changes to the usb drive.

  • That's it! Reboot, with your usb plugged-in and when refit comes up select the usb drive (in my case, it takes a while to boot (you will not see grub or anything just wait a ), probably it is uncompressing the iso, not sure.

  • Hope it works!


Rich, try https://help.ubuntu.com/community/How%20to%20install%20Ubuntu%20on%20MacBook%20using%20USB%20Stick

I just picked up the Air (3,2) yesterday and am in the same situation as you. It would be nice if we could co-work on this to solve it all and write up a guide together that explains the process step by step for others.

Feel free to mail me at snowdrop at wtactics dot org if you want to get in touch and exchange experiences: This far I have gotten a very diffuse and spread impression about how all of this will go...