View Single Post
 
Old 03-16-2008, 02:42 AM
rfuilrez rfuilrez is offline
Jaguar
 
Join Date: Jan 2008
Posts: 38
Yeah there seems to be a problem with the GUID package. If you enable the installer log (From the installer GUI:: Windows >> Installer Log) you see it fails as it tries to install that package.

Easiest way to fix that, is don't check the GUID Bootloader if thats the partition scheme you wish to use, use the installer log ABOVE the installer progress window. When the install finishes the 30 seconds won't count down.
Utilities >> Terminal
Code:
umount -f /Volumes/{Install Partition Name}/
cd /usr/standalone/i386
dd if=./guid/boot1h of=/dev/rdiskXsY bs=512 count=1
dd if=./guid/boot0 of=/dev/diskXsY bs=400 count=1
umount -f /Volumes/{Install Partition Name}/
./standalone -v /dev/rdiskXsY ./boot_v8
Close the terminal, and restart. Should be good to go now. The second umount is necessary, because during the dd process it gets remounted.
Reply With Quote