-TiLT- Posted December 8, 2006 Share Posted December 8, 2006 Hi, just wanted to report, that I was not able to get natit to work on my configuration. I get a kernel panic from Geforce.kext with IOPCIFamily, IOGraphicsFamily, IONDRVSupport and BVDAResman. Once removed the Geforce.kext, everythings fine except acceleration. I checked the dependencies in the panic backtrace one by one and the problematic one is in my opinion the IOPCIFamily. Removed it from the Info.plist of Geforce.kext and panic was gone, but no acceleration. Am I doing something wrong? Does this need some editing of files? In #kernel several people told me, that this issue might be related to nforce chipsets. As a sidenote. The installer crashed, so I did the installation by hand with pre- and postinstall files + copying of the System folder in the pkg. -TiLT- Link to comment https://www.insanelymac.com/forum/topic/35252-kernel-panic-natit-uni-10-geforcekext-iopcifamily/ Share on other sites More sharing options...
Rammjet Posted December 8, 2006 Share Posted December 8, 2006 Edit 3 kexts: http://forum.insanelymac.com/index.php?sho...mp;#entry243175 Link to comment https://www.insanelymac.com/forum/topic/35252-kernel-panic-natit-uni-10-geforcekext-iopcifamily/#findComment-250461 Share on other sites More sharing options...
-TiLT- Posted December 8, 2006 Author Share Posted December 8, 2006 This could not help me, but thank you Rammjet. Link to comment https://www.insanelymac.com/forum/topic/35252-kernel-panic-natit-uni-10-geforcekext-iopcifamily/#findComment-250511 Share on other sites More sharing options...
SaxMachine Posted December 27, 2006 Share Posted December 27, 2006 I have same problem...I have deleted al GeForce kext and work on my X1600 but with nvidia GeForce 7300LE dont' work because with natit call GeForce and i have black screen. PS. I have A8N SLI SE Link to comment https://www.insanelymac.com/forum/topic/35252-kernel-panic-natit-uni-10-geforcekext-iopcifamily/#findComment-262848 Share on other sites More sharing options...
sjoer Posted January 16, 2007 Share Posted January 16, 2007 I got the same problem. Have tried hours now, 100% devids are set right etc etc etc. I get full resolution support running nicely 1280x1024x32@85hz (set from display panel) and System Profiler also mentions my 7900 GT/GTO but NO CI/QE When I try to load Geforce.kext I get a kernel panic, so there lies a problem Link to comment https://www.insanelymac.com/forum/topic/35252-kernel-panic-natit-uni-10-geforcekext-iopcifamily/#findComment-276974 Share on other sites More sharing options...
Svein_Jarle Posted January 24, 2007 Share Posted January 24, 2007 How can I not load geforce.kext, and how can I replace it? After installing OS X I get kernel panic, and cannot boot into the gui - without accelleration or not... Has been messing around in the terminal when booted with the parameters -v -s, but nothing makes sense. The geforce.kext that is in /system/library/extensions/ is protected, along with the entire system folder. Sudo chmod dosen't work, but I'm sure you knew that already... Link to comment https://www.insanelymac.com/forum/topic/35252-kernel-panic-natit-uni-10-geforcekext-iopcifamily/#findComment-283958 Share on other sites More sharing options...
Crazor Posted February 2, 2007 Share Posted February 2, 2007 Same problem here. Any solutions so far? Link to comment https://www.insanelymac.com/forum/topic/35252-kernel-panic-natit-uni-10-geforcekext-iopcifamily/#findComment-292021 Share on other sites More sharing options...
King George Posted February 3, 2007 Share Posted February 3, 2007 Have you guys tried your other outputs? like other vga or dvi ports. I had the panic you're describing as well, when I edited my devID in all possible kexts.` I can only manage to fully have my second output working anyway, and it works better when I don't edit any kexts at all (just titan or natit and maybe geforce.kext). So if you have not tried that yet, connect monitor on 2nd output and also try without editing kexts. The kext standardly look for a range of GPU's (the original 0x000010de&0x0000ffff string), and if that does not cause any trouble, you can get it working without kext editing (i think) Could be a mistake by me of course, but if I edit ALL of them, mine panics as well. Link to comment https://www.insanelymac.com/forum/topic/35252-kernel-panic-natit-uni-10-geforcekext-iopcifamily/#findComment-292386 Share on other sites More sharing options...
dot Posted February 3, 2007 Share Posted February 3, 2007 (edited) How can I not load geforce.kext, and how can I replace it? After installing OS X I get kernel panic, and cannot boot into the gui - without accelleration or not... Has been messing around in the terminal when booted with the parameters -v -s, but nothing makes sense. The geforce.kext that is in /system/library/extensions/ is protected, along with the entire system folder. Sudo chmod dosen't work, but I'm sure you knew that already... When booting the computer, press F8, and then write -s to get the prompt. (-v is for verbose output, not needed...) Then follow onscreen instructions, ie write /sbin/fsck -fy and then /sbin/mount -uw / You now have write access to the disk you are in. To Turn off write halt, type logout to try to boot osx write (FYI...). On nvidia-based systems, you can't access SATA-disks, so if you want to transfer files you'll have to put it on another IDE-disk or partition on IDE-disk. NTFS is treated as read-only, and to get access to a IDE-NTFS-volume, do this (To mount NTFS ...) Go to /Volumes (cd /Volumes) Create a folder (mkdir YourFolderName), a tip: name it the label of the NTFS partition... Try the TAB to complete text if you can't remember... Go to /dev (write cd /dev ) List items here (write ls), or if your lucky enough to find the "pipe"-key on the keyboard, write lsPIPEgrep disk (where PIPE is the pipe character...) Whatever you've chosen, you'll se a lot of files, or devices, on the screen, the important ones are those beginning with disk. You'll have to find out which one that is the volume you want. To mount and use, do this: mount_ntfs /dev/disk0s1 /Volumes/YourFolderName (replace /disk0s1 with the chosen disk from ls output above...) If mounted correctly, you can access the disk by typing cd /Volumes/YourFolderName If you want to unmount and try another, write umount /Volumes/YourFolderName Try-and-retry is the solution here... somewhere is the volume (Notice again, SATA is NOT accessible) To copy files, do cp /The/path/to/the/file To copy whole directories, do cp -R /The/path/to/the/file /New/path To move file or dir, do mv /The/path/to/the/file /New/path To remove file, do rm -d /The/path/to/the/file To kick out GeForce.kext, go to /System/Libraries, create a folder, (Extensions.disabled maybe...), go to Extensions folder, move out GeForce.kext from here into Extensions.disabled: - cd /System/Libraries - mkdir Extensions.disabled - mv ./Extensions/GeForce.kext ./Extensions.disabled (and logout...) Edited February 3, 2007 by dot Link to comment https://www.insanelymac.com/forum/topic/35252-kernel-panic-natit-uni-10-geforcekext-iopcifamily/#findComment-292863 Share on other sites More sharing options...
akazone Posted December 10, 2007 Share Posted December 10, 2007 Thanks Dot. Helped me sort out some confusion in the terminal. Good Teacher :censored2: ty!! Link to comment https://www.insanelymac.com/forum/topic/35252-kernel-panic-natit-uni-10-geforcekext-iopcifamily/#findComment-533844 Share on other sites More sharing options...
Recommended Posts