Comment 5 for bug 118842

Revision history for this message
wren (8to8) wrote :

I found out what was going wrong. Currently I use:
- one small 6.06 LTS Dapper Drake published in June 2006 containing still applications installed by default.
This one works very well with the dazuko.ko module shipped with the "linux-image-2.6.15-28-386" package.

- one big 6.06 LTS Dapper Drake published in June 2006 containing dozens of applications from all Ubuntu repositories found and additionally this one listed at http://www.skype.com/download/skype/linux/repositories.html
This one doesn't work. It contains the "linux-image-2.6.15-28-386" package, too. But the system decided not to use the newer kernel. Instead of the old "linux-image-2.6.15-23-386" one is used. I have no idea why.

Anyway, I found out that using the "uname -a" and "slocate /lib/modules/ dazuko.ko" commands give you some details to decide how to follow up. If they give you different kernel versions the 2.6.15-28 shipped dazuko.ko will not work together with your active kernel.

If you would proceed ignoring this issue you will get the error
"insmod: error inserting './dazuko.ko': -1 Unknown symbol in module
AntiVir Status: avguard-workstation (Dazuko unavailable, 0 daemons)"

So in result: 6.06 LTS Dapper Drake 2.6.15-28 works fine with the shipped dazuko.ko.

sudo modprobe -r capability
sudo modprobe dazuko
sudo modprobe capability

Insert following into the /etc/init.d/avguard file after the first # character.
#!/bin/sh
#
# Start/Stop AvGuard
#
# Copyright (c) 2006 Avira GmbH
#
sudo rmmod capability
cd /path/to/your/dazuko/folder/
sudo insmod ./dazuko.ko
sudo modprobe capability
PATH="/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin"

That's it. Found at the German http://wiki.ubuntuusers.de/AntiVir
regards,