posted by raska in an other thread..
YAYAYAYAY!!!
All solved. Here is how I made it. I'm learning MACOS fast. LOL
First of all...My Hardware settings:
Motherboard Gigabyte GA-K8NF-9 nforce4 >>>>
http://www.gigabyte.com.tw/Products/Mother...?ProductID=1860Processor: AMD Athlon 64-3.5 Ghz.
RAM: 2 x 1 gig. Kingstom
Graphic Card: NVidia Geforce 7300 GT-512 RAM
HD 250 GB SATA - Seagate (4 partitions) as master in SATA port
HG 80 GB ATA - Seagate (3 partitions) as master in IDE port.
The first thing I made has been a bat file in windows using notepad to get all the details in the Device Manager. I called it details.bat and it looks this way
---------------
@echo OFF
set DEVMGR_SHOW_DETAILS=1 >NUL
start devmgmt.msc >NUL
exit
-------------
Then double click on it and I just got my Device Manager in Windows to see all... I selected the SATA thing and then the tab Details that I didn't get before of the execution of the *.bat file smile.gif
There I can see that the vendor ID is "10DE" and the Device ID is "0054": I noted all down and restart in MAC.
Edited to show a pic that someone requested, on how to extract the 2 ID.... Sorry for the language in pic, but my native one is Spanish smile.gif
Reduced: 84% of original size [ 760 x 434 ]- Click to view full image
Now the MAC part begin:
-----------
1 - Load Terminal
2 - cd /System/Library/Extensions/
3 - sudo nano /AppleVIAATA.kext/contents/info.plist
4 - In Via Sata controller I added the vendor and device ID of my computer to the entry "IOPCIPrimaryMatch".
As my vendor ID is 10DE and the PCI device is 0054, I added the following: 0x005410DE -
^O and ^X to save and quit. It looks now this way (Red is added):
---------------------------------------------------------------------
<key>VIA SATA Controller</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.AppleVIAATA</string>
<key>Hardware Name</key>
<string>8237 SATA</string>
<key>IOClass</key>
<string>AppleVIAATARoot</string>
<key>IOPCIPrimaryMatch</key>
<string>0x005410DE 0x528810B9 0x31491106 0x00e310de 0x00ee10de</string>
<key>IOProbeScore</key>
<string>1000</string>
<key>IOProviderClass</key>
<string>IOPCIDevice</string>
<key>Serial ATA</key>
<true/>
</dict>
----------------------------------------------------------------------
5 - sudo nano /AppleAHCIPort.kext/contents/info.plist
6 - In GenericAHCI controller I changed the vendor and device ID of my computer to the entry "IOPCIClassMatch".
As my vendor ID is 10DE and the PCI devide is 0054, I added the following: 0x005410DE -
^O and ^X to save and quit. It looks now this way (Red is changed):
----------------------------------------------------------------------
<key>GenericAHCI</key>
<dict>
<key>CFBundeIdentifier</key>
<string>com.apple.driver.AppleAHCIPort</string>
<key>IOClass</key>
<string>AppleAHCI</string>
<key>IOPCIClassMatch</key>
<string>0x005410DE</string>
<key>IOProbeScore</key>
<integer>800</integer>
<key>IOProviderClass</key>
<string>IOPCIDevice</string>
<key>Vendor Name</key>
<string>Generic AHCI</string>
</dict>
----------------------------------------------------------------------
7 - Then I set permissions:
sudo chown -R root:wheel AppleVIAATA.kext
sudo chmod -R 755 AppleVIAATA.kext
sudo chown -R root:wheel AppleAHCIPort.kext
sudo chmod -R 755 AppleAHCIPort.kext
cd /System/Library/
sudo rm -rf Extensions.kextcache
sudo rm -rf Extensions.mkext
8 - Reboot...
9 - Tension ... What will happens ?... white letters scrolling .... blue screen .... more tension ..... Finder appears!! ... 2 seconds more...
10 - VOILA!!!! ALL WORKS!!! I have my 7 partitons now in my desktop!!! and all working like a charm.... I can read either the 2 NTFS partitions I have.
This remember me my Commodore Amiga times. hehe
I hope this can be a help for all people having the same or similar problem...
Ciao for now!!! and thanks to all what made possible that I learned so fast the way to get all working in no time beeing a total noob in MAC world. I just read a bunch of posts here and i dont know right now which ones point me in the correct direction. So, THANKS TO ALL WHAT WRITE SOME INFO HERE!!!!!! You are all wonderful!!!
Cheers and Happy Year 2007!!!