InfiniteMac OSx86

InfiniteMac OSx86 (http://infinitemac.com/forum.php)
-   Leopard 10.5 (http://infinitemac.com/forumdisplay.php?f=85)
-   -   Kernel panic downloading BIG torrent file (http://infinitemac.com/showthread.php?t=1834)

nuttzy 12-29-2008 07:56 PM

Kernel panic downloading BIG torrent file
 
I am using iPC osx86 10.5.6 version. Voodoo kernel 1.0 and i have seatbelt fix.
Why do i get this panic ?

My system:

AMD x2 6400+
MSI k9n SLI platinum
4GB DDRII 800mhz
400GB Sata hdd
Geforce 8800GTX

UPDATE:

I got kernel panic downloading 7.75 GB and 11GB files.

Puttabong 12-29-2008 07:58 PM

Hi,

Please list your system specifications (edit your post)!

naquaada 12-29-2008 08:34 PM

Do you have a system with 4 GB RAM or more? Maybe you need one of the 64bit-adapted chipset drivers, mainly for nForce, VIA and so.

nuttzy 12-29-2008 11:53 PM

Yes i have 4GB ram and what drivers where i should get them ?

nuttzy 12-30-2008 12:31 AM

Update.

Here is picture of kernel panic, but i am not sure if they are allways the same. "BSD process name corresponding to current thread: kernel_task" was utorrent one time i remember.

http://www.ipix.lt/desc/34416829/

lanceomni 12-30-2008 04:49 PM

We corrected the issue Naquaada talks about above while in the IRC channel but I figured we would add it here too. In your case you have an nForce 570 chipset which is the same as mine. I was able to use Slashacks 64bit modified kexts to prevent freezing.
Slashack's Post: http://forum.insanelymac.com/index.php?showtopic=127611
64Bit AppleNforceATA.kext: http://darwin-ata.googlecode.com/files/AppleNForceATA.kext.zip

1. Remove /System/Library/Extensions/AppleNForceATA.kext if it exists
2. Copy AppleNForceATA.kext to /System/Library/Extensions
3. Entered your admin password when prompted
4. In Terminal write:
Code:

sudo chown -R root:wheel /System/Library/Extensions/AppleNForceATA.kext
sudo rm -R /System/Library/Extensions.kextcache
sudo rm -R /System/Library/Extensions.mkext

5. Restart using the boot flags:
Code:

-v -f -F
Sometimes Extensions.kextcache is not there. This isn't an issue. What we are trying to do is make 100% for sure that the cache is recreated with the new kexts. So basically we are deleting the cache and then booting with -f to force OSX to pull from the Extensions Folder

If your still having problems you can repair disk permissions in Disk Utility or by using Terminal with the following:
Code:

sudo diskutil repairPermissions /
This method can be used to install any kext you want. When installing homebrew kexts repairPermissions will make no difference as OSX wouldn't know the proper permissions to assign.

naquaada 12-30-2008 05:49 PM

@nuttzy:

I always use these commands for adding new kexts:

Code:

sudo -s
(enter your password, it's not shown)

chmod -R 755 /System/Library/Extensions && chown -R root:wheel /System/Library/Extensions

diskutil repairpermissions /

after this reboot with -f -v to recreate Extensions.mkext. Extensions.kextcache was only existing in Tiger. But please add your system specs in the signature.


@lanceomni:


Interesting that you rember things I said in IRC. I didn't ;-) Say, what is nForceLAN.kext? I'm using skge.kext on my board, but it also has a nForce LAN port. What is the difference between forcedeth or forcedeth-v ?

lanceomni 12-30-2008 06:20 PM

> naquaada - Yeah I worded that wrong. I was referring to your post about 4GB of memory and that nuttzy and I discussed it over on #infinitemac.

I thought your board, the one in your signature, had the same lan version as mine. I tried forcedeth but it didn't work out for me. Dies pointed me to nForceLan and it worked like a charm. Ive been curious as to the difference between forcedeth & forcedeth-v I remember seeing something that said forcedeth-v was the preffered version but im not sure. I might pull my nForceLan.kext and try the others just to see if they work.

Thanks for the info about Extensions.kextcache I was wondering why I have not seen that file in a while.

So all kexts need to be 755?

naquaada 12-30-2008 06:49 PM

forcedeth.kext crashed sometimes when transferring large files over network. forcedeth-v didn't have this problem, but it's not as good as skge.kext. I'll test nForceLAN sometimes.

nfoav8or 12-30-2008 07:50 PM

These kexts freeze when your system spikes during downloads (speed is too high) so I use little snitch and my router to put a cap on an instantaneous download speed (anything under 500 KB/sec I can live with). I have yet to try the skge.kext you mentioned. How is this better? right now I'm using the nForceEthernetDriver.kext (probably a variation of one of the above mentioned kexts too). Because of the editing of plist files, we are Forcing the ethernet to work with it so naturally we will get some backlash if not regulated (hence my cap). are any of the other files specifically for certain boards and not to be messed with on others?

also, just thought I'd throw my hat in on permissions ;)
Code:

sudo -s
cd /System/Library/
chmod -R 755 Extensions/ && chown -R 0:0 Extensions/ && touch Extensions/
diskutil repairPermissions /

I've found that the touch actually makes the system think they are native extensions instead or recognizing some as non-Apple and therefore will repair all of them. Oh well, 21 more characters in the same line won't kill me if this is overdoing it. :cool: