
05-17-2009, 03:11 PM
|
 |
|
|
Join Date: Jan 2008
Location: Serbia and Montenegro
Posts: 326
|
|
Hi,
Lets go one step at the time. First lets fix booting into OSX.
You don't have chipset controller driver installed. You need AppleVIAATA. Get the file and put it onto your USB stick. You can use windows to do that. Boot from DVD, once you reach installation menu, launch Terminal. You need to do some basic terminal commands to install your kexts and navigate using terminal. You can boot from dvd with usb stick or you can plug it in later.
Suppose your USB stick is labelled 'USB' and your Mac OS X installed partition is labelled 'Leopard'. Use your labels accordingly.
Code:
sudo -s
cd /Volumes/
ls
(you will have them all listed here)
Code:
cp -r /Volumes/USB/AppleVIAATA.kext /Volumes/Leopard/System/Library/Extensions
cd /Volumes/Leopard/System/Library/Extensions
chmod -R 755 AppleVIAATA.kext
chown -R root:wheel AppleVIAATA.kext
cd ..
(go one level up, you are now in /Volumes/Leopard/System/Library)
rm -rf Extensions.*
kextcache -k Extensions/
reboot
Make sure you replace USB and Leopard with your partition labels.
Regards
|