InfiniteMac OSx86  


Reply
 
Thread tools Display modes
  #1  
Old 08-14-2009, 01:55 AM
brandonw1 brandonw1 is offline
Cheetah
 
Join Date: Aug 2009
Posts: 5
Video Driver Question

Where could I find drivers for my video card or some how change the resolution so it looks better?

My Video Card is NVIDIA GeForce 6800 XT.


Im using iATKOS v7 10.5.7
Reply With Quote
  #2  
Old 08-18-2009, 01:33 PM
lanceomni's Avatar
lanceomni lanceomni is offline
 
Join Date: Nov 2008
Location: Florida, US
Posts: 521
You can try NVinject.

The process:
1. Get NVinject
2. Backup your extensions
3. Remove any existing graphics drivers
4. Install NVinject
5. Reboot

1. You can go to http://nvinject.free.fr and check the download section. Here is a direct link http://nvinject.free.fr/files/Latest_NVinject.0.2.1.zip
Extract NVinject.kext to your desktop (It is important that it is on your desktop as the following commands will require)

2. Backup your extensions folder
1. Give yourself root privileges so that you can modify files.
Code:
sudo -s
2. Make a backup copy of your kexts. First we will make a directory called "backup" in our root directory to store them. Open Terminal and type:
Code:
mkdir /backup
3. Change directories to /System/Library This will shorten some of the commands we have to type in.
Code:
cd /System/Library
4. Copy your kexts to the new "backup" folder.
Code:
cp -r Extensions/ /backup/
3. Remove any existing graphics drivers. Press enter after each line.
Code:
rm -Rf Extensions/natit.kext
rm -Rf Extensions/titan.kext
rm -Rf Extensions/NVinject.kext
rm -Rf Extensions/NVkush.kext
4. Install NVinject. (Assuming that the Terminal Window is still open and you are still in the /System/Library folder from the previous step.)
1. Copy the kext from your desktop to the extensions folder
Code:
cp ~/Desktop/NVinject.kext Extensions/NVinject.kext
2. Set the proper permissions for the extensions folder.
Code:
chmod -r 755 Extensions/NVinject.kext
3. Set the proper ownership for the extensions folder.
Code:
chown -r root:wheel Extensions/NVinject.kext
4. Touch the extensions folder
Code:
touch Extensions/
5. Remove the extensions cache to force OSX to rebuild it with our new kext.
Code:
rm -Rf Extensions.mkext
6. Repair permissions to your drive.
Code:
diskutil repairpermissions /
5. Reboot using the boot-flags -v -f
-v Verbose Mode displays useful information during the boot process.
-f Forces OSX to load kexts from the extensions folder instead of the cache file. We did delete the cache file so this is just a precaution.



💡 Deploy cloud instances seamlessly on DigitalOcean. Free credits ($100) for InfMac readers.


MOBO: Z77MX-QUO-AOS CPU: Core i7 3770K GPU: MSI N760 TF 2GD5/OC Case: Modded MacPro2,1
Memory: 32GB Corsair Vengeance (CMY32GX3M4A1600C9) Wifi: Airport Extreme bcm94321MCA BIOS: HermitCrab Labs H3A.816M
Monitor: AOC Q2963Pm 29" WFHD 2560x1080 21:9
Interests: KDE on Apple Darwin, Keeping it real with the command line, Helping those that help themselves
Reply With Quote
Reply