I have never tried to install Dazuko or AVG. However if you want antivirus protection for linux I would recommend
f-prot antivirus . It's free and it's very easy to install.
In any event, what you want to do is compile the dazuko module from source. You probably downloaded the source in .tar.gz format. You should move the source to /usr/src.
Code:
cp programname.tar.gz /usr/src
Next uncompress and untar the file.
Code:
cd /usr/src
tar -xzf programname.tar.gz
Now you need to change to the directory that was just created and run "./configure", what you mentioned earlier.
Code:
cd programname
./configure
Now compile and install the module
Code:
make && make install
Thomas