Please note the new address for this forum : forum.excito.org. The old address redirects here but I don't know for how long. Thanks !
New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !

modprobe error

Got problems with Bubba? Then this forum is for you.
Locked
Ubi
Posts: 1549
Joined: 17 Jul 2007, 09:01

modprobe error

Post by Ubi »

This is probably dumb but I'm not so up to speed with kernel modules.

daemon.log keeps on giving me this:
Oct 24 13:54:27 korona modprobe: FATAL: Error inserting ipv6 (/lib/modules/2.6.16.16/kernel/net/ipv6/ipv6.ko): Unknown symbol in module, or unknown parameter (see dmesg)

I havent knowingly installed ipv6, although I did install the kernel modules... ANy easy method to switch this off?

thanks

Ubi
tor
Posts: 703
Joined: 06 Dec 2006, 12:24
Contact:

Post by tor »

The reason you are seing this is due to the kernel being compiled without crypto support and thus misses the symbols crypto_alloc_tfm and crypto_free_tfm.

Then some aplication, most likely udev(?) tries to load the ipv6 module that requires these symbols generating the log messages you see.

Two possible solutions might be available, if one will make these warinings go away. Either one has to recompile the kernel and add crypto support. Or simply remove the ipv6 modules and do a depmod -a and it should go away.

/Tor
Co-founder OpenProducts and Ex Excito Developer
Ubi
Posts: 1549
Joined: 17 Jul 2007, 09:01

Post by Ubi »

Sorry to ask a stupid question: how do I remove the module?

as I mentioned, kernels really aren;t my thing
albert
Posts: 69
Joined: 09 Jul 2007, 14:35
Location: The Netherlands

Post by albert »

rm -f /lib/modules/2.6.16.16/kernel/net/ipv6
depmod -a

does the trick. Better is to keep a copy of this directory tucked away somewhere.

I checked with the ntpdate command (which triggers the ipv6 module as well). Works like a charm and no annoying messages anymore.

Thanks Tor,

Albert

P.S. I assumed you have root access.
Locked