rmelv7 Posted July 22, 2008 Share Posted July 22, 2008 Hey guys i know first post So tonight i installed Iaktos 4.0 version with 10.5.4 version and evrything is workin fine expect osound which i got to work on my P35-DS3L however my problem is that my 8800gt works but it is not offering hardware accrleation only software for my screen which certain things run slow My 8800gt is an xfx G92 512 mb version Any help would be apprecited on this topic Sry about my spelling its midnight in aussie and im still up lol Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/ Share on other sites More sharing options...
MacUser2525 Posted July 22, 2008 Share Posted July 22, 2008 Hey guys i know first post So tonight i installed Iaktos 4.0 version with 10.5.4 version and evrything is workin fine expect osound which i got to work on my P35-DS3L however my problem is that my 8800gt works but it is not offering hardware accrleation only software for my screen which certain things run slow My 8800gt is an xfx G92 512 mb version Any help would be apprecited on this topic Sry about my spelling its midnight in aussie and im still up lol Try my Boot.plist file I have attached it uses an EFI string to the get card working I used it with my old board which is the same as your present one. It is set up to boot in text mode you can change this by opening the file in textedit and removing the -v in the kernel flags section as well it has a 5 second timeout before booting that you can disable by removing the two lines starting with the timeout plus the 5 line below it. Now for this to work you need to replace the original file by opening the terminal application in the Applications -> Utilities folder and doing this. sudo -s Type in the password you set on install then. mv /Library/Preferences/SystemConfiguration/com.apple.Boot.plist /Library/Preferences/SystemConfiguration/com.apple.Boot.plist.original cp /path/to/unziped/download/Boot.plist /Library/Preferences/SystemConfiguration/com.apple.Boot.plist chown 0:0 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist chmod 755 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist Now you need to determine which driver you have in use then disable/remove it with something like this if using the NV Inject. mv /System/Library/Extensions/NVInject.kext /System/Library/Extensions/NVInject.kext.backup rm -r /System/Library/Extensions/Caches rm -r /System/Library/Extensions.mkext rm -r /System/Library/Caches diskutil repairPermissions / Then you would need to reboot if you left my file as is then use the hit any key option when the boot menu appears and type in -f and hit the enter key to boot if you removed the lines in my file hit the F8 to get the menu, when the machine boots the -f forces the reload of all .kext files and rebuilds the Caches. If all went well then you should have your CI/QE working with hardware instead of software acceleration once you get this setup you should not have to mess with it again by upgrading/installing any other .kext like the NV Inject. com.apple.Boot.plist.zip Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-829282 Share on other sites More sharing options...
rmelv7 Posted July 22, 2008 Author Share Posted July 22, 2008 ok the first command isnt working can i manually copy it over and replace it also do i need it change it to my disk or anything like that and wat does the second comand do Can i screw it up by using this Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-829681 Share on other sites More sharing options...
MacUser2525 Posted July 22, 2008 Share Posted July 22, 2008 ok the first command isnt working can i manually copy it over and replace it also do i need it change it to my disk or anything like that and wat does the second comand do Can i screw it up by using this Do you mean the sudo -s does not work in a terminal if so can you copy and paste the command and error you get?? Not really any way to screw it up either the string is going to work or it will be ignored now this assumes that your machine will boot in vesa mode without any drivers loaded like it should with just basic graphics enabled. Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-829703 Share on other sites More sharing options...
rmelv7 Posted July 23, 2008 Author Share Posted July 23, 2008 sy the suod -s works fine then when i copy and paste the mv /Library/Preferences/SystemConfiguration/com.apple.Boot.plist /Library/Preferences/SystemConfiguration/com.apple.Boot.plist.original cp /path/to/unziped/download/Boot.plist /Library/Preferences/SystemConfiguration/com.apple.Boot.plist chown 0:0 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist chmod 755 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist i get the error that says no such file or directory on the cp/path line thanks for the contuined help as well Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-829996 Share on other sites More sharing options...
MacUser2525 Posted July 23, 2008 Share Posted July 23, 2008 cp /path/to/unziped/download/Boot.plist /Library/Preferences/SystemConfiguration/com.apple.Boot.plist i get the error that says no such file or directory on the cp/path line thanks for the contuined help as well This part /path/to/unziped/download/Boot.plist is to be replaced with where you downloaded the file too if you let it download to your default Downloads directory and unzipped by clicking on it then in my case with a user name of MacUser2525 I would use cp /Users/MacUser2525/Downloads/com.apple.Boot.plist for the first part of the line you would change the MacUser2525 part of this with your user name you set during install. Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830009 Share on other sites More sharing options...
rmelv7 Posted July 23, 2008 Author Share Posted July 23, 2008 this is then wat it comes up with bash-3.2# mv /Library/Preferences/SystemConfiguration/com.apple.Boot.plist /Library/Preferences/SystemConfiguration/com.apple.Boot.plist.original bash-3.2# cp /users/reece/downloads/com.apple.Boot.plist /Library/Preferences/SystemConfiguration/com.apple.Boot.plist bash: : command not found bash-3.2# chown 0:0 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist bash: : command not found bash-3.2# chmod 755 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist any ideas Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830016 Share on other sites More sharing options...
MacUser2525 Posted July 23, 2008 Share Posted July 23, 2008 this is then wat it comes up with bash-3.2# cp /Users/reece/Downloads/com.apple.Boot.plist /Library/Preferences/SystemConfiguration/com.apple.Boot.plist any ideas I corrected the two typos capital U and D should have been used. Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830029 Share on other sites More sharing options...
rmelv7 Posted July 23, 2008 Author Share Posted July 23, 2008 ok now i get this lol sry for being so annoying on this one thing bash-3.2# mv /Library/Preferences/SystemConfiguration/com.apple.Boot.plist /Library/Preferences/SystemConfiguration/com.apple.Boot.plist.original mv: /Library/Preferences/SystemConfiguration/com.apple.Boot.plist: No such file or directory bash-3.2# cp /Users/reece/Downloads/com.apple.Boot.plist /Library/Preferences/SystemConfiguration/com.apple.Boot.plist chown 0:0 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist bash: : command not found bash-3.2# chmod 755 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830040 Share on other sites More sharing options...
MacUser2525 Posted July 23, 2008 Share Posted July 23, 2008 ok now i get this lol sry for being so annoying on this one thing bash-3.2# mv /Library/Preferences/SystemConfiguration/com.apple.Boot.plist /Library/Preferences/SystemConfiguration/com.apple.Boot.plist.original mv: /Library/Preferences/SystemConfiguration/com.apple.Boot.plist: No such file or directory Hmm that should be there not sure why it would not be on your install. bash-3.2# cp /Users/reece/Downloads/com.apple.Boot.plist /Library/Preferences/SystemConfiguration/com.apple.Boot.plist Ok that worked. chown 0:0 /Library/Preferences/SystemConfiguration/com.apple.Boot.plistbash: : command not found That is weird it still works here. sudo chown 0:0 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist Password: You don't need the sudo as your logged in as root what does this command show you. ls -l /Library/Preferences/SystemConfiguration/com.apple.Boot.plist -rw-r--r--@ 1 root admin 3201 Jun 14 22:48 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist bash-3.2# chmod 755 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist That worked can you post the output of cat /Library/Preferences/SystemConfiguration/com.apple.Boot.plist so we can see if the proper file was copied. Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830062 Share on other sites More sharing options...
rmelv7 Posted July 23, 2008 Author Share Posted July 23, 2008 cat: /Library/Preferences/SystemConfiguration/com.apple.Boot.plist: No such file or directory i got that for that and the other one i got ls: /Library/Preferences/SystemConfiguration/com.apple.Boot.plist: No such file or directory bash-3.2# -rw-r--r--@ 1 root admin 3201 Jun 14 22:48 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist bash: -rw-r--r--@: command not found is it me doing something wrong Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830068 Share on other sites More sharing options...
MacUser2525 Posted July 23, 2008 Share Posted July 23, 2008 cat: /Library/Preferences/SystemConfiguration/com.apple.Boot.plist: No such file or directoryi got that for that and the other one i got ls: /Library/Preferences/SystemConfiguration/com.apple.Boot.plist: No such file or directory bash-3.2# -rw-r--r--@ 1 root admin 3201 Jun 14 22:48 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist bash: -rw-r--r--@: command not found is it me doing something wrong For the first command. cat /Library/Preferences/SystemConfiguration/com.apple.Boot.plist You should see this similar to this if you got my file as I posted it copied. <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Kernel</key> <string>mach_kernel</string> <key>Kernel Flags</key> <string>-v</string> <key>Timeout</key> <string>5</string> <key>device-properties</key> <string>6d0500000100000001000000610500001a00000002010c00d041030a01000000010106000001 101060000007fff040024000000400030002c00630061006e002d0068006f0074002d0070006c007 0067000000040000001c0000006400650076006900630065005f00740079007000650000000f0000 04e5644412c506172656e7422000000400031002c006400650076006900630065005f00740079007 00650000000b000000646973706c617922000000400030002c0064006900730070006c0061007900 d006300660067000000080000000301000020000000400031002c0063006f006d007000610074006 0062006c00650000000e0000004e5644412c4e564d616314000000400030002c006e0061006d0065 00000120000004e5644412c446973706c61792d412e000000400030002c004100410050004c002c0 62006f006f0074002d0064006900730070006c006100790000000400000014000000400031002c00 e0061006d0065000000120000004e5644412c446973706c61792d421e00000072006f006d002d007 00650076006900730069006f006e000000080000003332333320000000400030002c0063006f006d 0700061007400690062006c00650000000e0000004e5644412c4e564d6163200000004e005600440 41002c0046006500610074007500720065007300000008000000ff024f05100000004e0056004300 100500000001800000005000000000003000c0000000000000b00000000300000004100410050004 002c0045004d0043002d0044006900730070006c00610079002d004c006900730074000000440000 003000000000000000000000000000000061000001b9200000000000000000000061000001c92000 000000000000000006100000219200000000000000000000260000004100410050004c0030003000 c0043006f0068006500720065006e0063007900000008000000020000001c000000400030002c006 0062006f006600660073006500740000000800000000000600360000004100410050004c002c0061 0750078002d0070006f007700650072002d0063006f006e006e00650063007400650064000000080 000001000000220000005600520041004d002c0074006f00740061006c00730069007a0065000000 800000000000020320000004100410050004c002c006200610063006b006c0069006700680074002 0063006f006e00740072006f006c0000000800000000000000420000004100410050004c00300030 02c0062006c00610063006b00730063007200650065006e002d00700072006500660065007200650 6e006300650073000000080000000000000822000000400031002c0064006900730070006c006100 9002d00630066006700000008000000ffff0001420000004100410050004c00300031002c0062006 00610063006b00730063007200650065006e002d0070007200650066006500720065006e00630065 073000000080000000000000822000000400030002c006400650076006900630065005f007400790 7000650000000b000000646973706c6179100000006d006f00640065006c0000001a0000004e5649 44941204765466f726365203838303020475414000000400030002c004e0056004d0054000000640 00000b037f2022f0cf268007b0042008b007d0070000d304b304b904000080da2d09000000010000 00100000000000000000000000000000000000000000000000000000000ffff00000000000040b3d 09010000000000000000080000000000001e000000730075006200730079007300740065006d002d 0690064000000080000004f05000024000000400031002c00630061006e002d0068006f0074002d0 70006c0075006700000004000000</string> </dict> </plist> For the second it looks like you are copying everything I posted there you only need the first line the other is the output of the command. ls -l /Library/Preferences/SystemConfiguration/com.apple.Boot.plist Above the command below the output. -rw-r--r--@ 1 root admin 3201 Jun 14 22:48 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830078 Share on other sites More sharing options...
rmelv7 Posted July 23, 2008 Author Share Posted July 23, 2008 it still comes up with reece-melvertons-p35-ds3l:~ Reece$ cat /Library/Preferences/SystemConfiguration/com.apple.Boot.plist cat: /Library/Preferences/SystemConfiguration/com.apple.Boot.plist: No such file or directory reece-melvertons-p35-ds3l:~ Reece$ can u give all the code in like 1 step lol for my newbie skills Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830080 Share on other sites More sharing options...
MacUser2525 Posted July 23, 2008 Share Posted July 23, 2008 it still comes up with reece-melvertons-p35-ds3l:~ Reece$ cat /Library/Preferences/SystemConfiguration/com.apple.Boot.plist cat: /Library/Preferences/SystemConfiguration/com.apple.Boot.plist: No such file or directory reece-melvertons-p35-ds3l:~ Reece$ can u give all the code in like 1 step lol for my newbie skills Try. cat /Library/Preferences/SystemConfiguration/com.apple.Boot.plist.original Just to make sure it did not get moved already when you started this. Now if it has then all you need to do is start with the sudo -s in my first post skip the mv command because it has already been moved to backup and use the cp command with the Proper /Users/.... path to the downloaded file following on with the rest. Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830088 Share on other sites More sharing options...
rmelv7 Posted July 23, 2008 Author Share Posted July 23, 2008 reece-melvertons-p35-ds3l:~ Reece$ cat /Library/Preferences/SystemConfiguration/com.apple.Boot.plist.original <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Kernel</key> <string>mach_kernel</string> <key>Kernel Flags</key> <string></string> <key>Boot Graphics</key> <string>Yes</string> <key>Quiet Boot</key> <string>No</string> <key>Timeout</key> <string>5</string> </dict> </plist> reece-melvertons-p35-ds3l:~ Reece$ taht was that command came up with so where do i go from here can u post the command in 1 stpe plz thanks for help so much Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830094 Share on other sites More sharing options...
MacUser2525 Posted July 23, 2008 Share Posted July 23, 2008 reece-melvertons-p35-ds3l:~ Reece$ cat /Library/Preferences/SystemConfiguration/com.apple.Boot.plist.original<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Kernel</key> <string>mach_kernel</string> <key>Kernel Flags</key> <string></string> <key>Boot Graphics</key> <string>Yes</string> <key>Quiet Boot</key> <string>No</string> <key>Timeout</key> <string>5</string> </dict> </plist> reece-melvertons-p35-ds3l:~ Reece$ taht was that command came up with so where do i go from here can u post the command in 1 stpe plz thanks for help so much Ok that is your original file so it moved it now can you post the output of this command. ls -l /Users/reece/Downloads/com.apple.Boot.plist* So I can see if the file you downloaded is in the right place. Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830096 Share on other sites More sharing options...
rmelv7 Posted July 23, 2008 Author Share Posted July 23, 2008 -rw-r--r--@ 1 Reece staff 3171 23 Jul 00:12 /Users/reece/Downloads/com.apple.Boot.plist that was the ouput Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830097 Share on other sites More sharing options...
MacUser2525 Posted July 23, 2008 Share Posted July 23, 2008 -rw-r--r--@ 1 Reece staff 3171 23 Jul 00:12 /Users/reece/Downloads/com.apple.Boot.plist that was the ouput Alright so it is there do this. sudo -s Type in the password you set then. cp /Users/reece/Downloads/com.apple.Boot.plist /Library/Preferences/SystemConfiguration/ chown 0:0 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist chmod 755 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist Like above and this part as well you need to determine which driver you have in use then disable/remove it with something like this if using the NV Inject. mv /System/Library/Extensions/NVinject.kext /System/Library/Extensions/NVinject.kext.backup rm -r /System/Library/Extensions/Caches rm -r /System/Library/Extensions.mkext rm -r /System/Library/Caches diskutil repairPermissions / Then you would need to reboot if you left my file as is then use the hit any key option when the boot menu appears and type in -f and hit the enter key to boot if you removed the lines in my file hit the F8 to get the menu, when the machine boots the -f forces the reload of all .kext files and rebuilds the Caches. If all went well then you should have your CI/QE working with hardware instead of software acceleration once you get this setup you should not have to mess with it again by upgrading/installing any other .kext like the NV Inject. Now in addition to this I don't know that you are using the NVInject.kext (Do you even know which you are using right now??) so that part can change. Edit: If you show me the output of. ls -l /System/Library/Extensions/NV* I can tell if you are using the NVInject.kext. Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830104 Share on other sites More sharing options...
rmelv7 Posted July 23, 2008 Author Share Posted July 23, 2008 ok so that was teh out put of that /System/Library/Extensions/NVDANV10Hal.kext: total 0 drwxr-xr-x 10 root wheel 340 10 Jul 02:12 Contents /System/Library/Extensions/NVDANV20Hal.kext: total 0 drwxr-xr-x 10 root wheel 340 10 Jul 02:12 Contents /System/Library/Extensions/NVDANV30Hal.kext: total 0 drwxr-xr-x 10 root wheel 340 10 Jul 02:12 Contents /System/Library/Extensions/NVDANV40Hal.kext: total 0 drwxr-xr-x 10 root wheel 340 10 Jul 02:12 Contents /System/Library/Extensions/NVDANV50Hal.kext: total 0 drwxr-xr-x 10 root wheel 340 10 Jul 02:12 Contents /System/Library/Extensions/NVDAResman.kext: total 0 drwxr-xr-x 10 root wheel 340 10 Jul 02:12 Contents /System/Library/Extensions/NVinject.kext: total 0 drwxr-xr-x@ 4 root wheel 136 20 Apr 03:43 Contents Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830111 Share on other sites More sharing options...
MacUser2525 Posted July 23, 2008 Share Posted July 23, 2008 ok so that was teh out put of that /System/Library/Extensions/NVinject.kext: total 0 drwxr-xr-x@ 4 root wheel 136 20 Apr 03:43 Contents Alright so it is the inject you are using just continue with the commands in the post above this one and it should be alright. Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830112 Share on other sites More sharing options...
rmelv7 Posted July 23, 2008 Author Share Posted July 23, 2008 ok all i can say is thank you u over and over agian ur my mac hero and im sorry about how long it took Thanks Thanks Thanks :censored2: Peace be with u Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830115 Share on other sites More sharing options...
MacUser2525 Posted July 23, 2008 Share Posted July 23, 2008 ok all i can say is thank you u over and over agian ur my mac hero and im sorry about how long it took Thanks Thanks Thanks Peace be with u Your welcome I take it it worked then. Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830117 Share on other sites More sharing options...
rmelv7 Posted July 23, 2008 Author Share Posted July 23, 2008 lol yes like a charm aperture works visuylaers work now games soon lol u rock Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830119 Share on other sites More sharing options...
MacUser2525 Posted July 23, 2008 Share Posted July 23, 2008 lol yes like a charm aperture works visuylaers work now games soon lol u rock Thats good I knew there was no reason for it not too that was the same combination of hardware I had until a couple of weeks ago. If you want you can completely remove the nvinject with. rm -r /System/Library/Extensions/NVinject.kext.backup As root using the sudo -s or you can leave it there it won't harm anything and if you go the boot menu coming up every time with a text boot then you can edit the .plist again as root and remove the lines I suggested like. nano /Library/Preferences/SystemConfiguration/com.apple.Boot.plist Once you have completed the edit the CTRL + O keys at the same time will write it out when the file name comes up in the dialog at the bottom hit the enter key then CTRL + X to exit saving the changes the new settings will be used on the next boot. The lines I speak of. <key>Kernel Flags</key> <string>-v</string> <key>Timeout</key> <string>5</string> Remove just the -v to stop text boot the next two lines can be removed to stop the 5 second wait which brings up the boot menu. Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830131 Share on other sites More sharing options...
rmelv7 Posted July 23, 2008 Author Share Posted July 23, 2008 i got rid of the backup thanks for that everytime i boot i dont have to type -f do i i can just leave like they its always been Link to comment https://www.insanelymac.com/forum/topic/117064-8800gt-problem-help-would-be-great/#findComment-830153 Share on other sites More sharing options...
Recommended Posts