I have an .iso image of the full fedora 16 install (Downloaded from http://fedoraproject.org/en/get-fedora-options#formats as "Fedora 16 DVD") and the question now is: How do I write it on an usb stick, so I can install it on my Mac book?
I tried using dd as the install guide said, and that gave me an usb stick which can boot from My Pc. But it can't boot from the mac (The Mac start menu don't show it as a boot option).
Edit: I downloaded a live install image, and did this (sdd is my usb 4GB thing)
/sbin/mkdosfs -F 32 -n usbdisk /dev/dev/sdd1
sudo livecd-iso-to-disk --format --reset-mbr --efi /tmp/download/Fedora-16-i686-Live-KDE.iso /dev/sdd1
And this produced an image which can boot on my pc but not on my mac. This seems to indicate that the --efi is not working, because if it really was efi it would not boot on a normal pc, would it?
I then tried this: (Difference beeing that I write the image directry to /dev/sdd instead of /dev/sdd1) but this still will not boot on the mac. (It newer shows up at the startup screen on the mac).
sudo livecd-iso-to-disk --format --reset-mbr --efi /tmp/download/Fedora-
ps: My host linux is Fedora 13.
