sono un nuovo un nuovo utente di ubuntu. Ho provato ad installare antivir ma quando faccio partire l'installazione da terminale mi dice
It is not possible to install AVIRA AntiVir Workstation (UNIX), because your system platform is not supported.
ho provato a cercare con google e ho trovato sul forum inglese uno che è riuscito a risolvere ma sinceramente non ci ho capito niente... il link è http://ubuntuforums.org/showthread.php?t=1314051
la soluzione è (copio/incollo):
Quick and dirty workaround, worked for me, ymmmv!
Go to the script folder under where you expanded the antivir program.
The problem arises because the getsysteminfo script returns linuxglibc20 as the version of libc installed in Karmic. Actually the version is not 2.1 but 2.10, but the grep test does not know that.
I just modified the script as below:
do_classification()
{
CLASS="unknown"
case "${OS}" in
linux)
CLASS=""
if [ -f "/lib/libc.so.6" ]
then
grep "C Library.*version 2.0" /lib/libc.so.6 > /dev/null
RET=$?
if [ $RET -ne 0 ]
then
grep "C Library.*version 2.1" /lib/libc.so.6 > /dev/null
# comment out the next line
#RET=$?
# add in a dummy exit code
RET=2
fi
Non è che mi sapreste spiegare bene cosa devo fare? grazie

