PDA

View Full Version : [SOLVED] Avira AntiVir won't install - system platform not supported



xq2003
November 4th, 2009, 01:56 PM
Hi everybody,

today, I tried to install AntiVir on my Ubuntu 9.10 (Kernel 2.6.31-14). As I ran the install script, the message "It is not possible to install AVIRA AntiVir Workstation (UNIX), because your system platform is not supported." I then did some research but it strangely seems that I'm the only one experiencing this problem. Is there anybody out there who has managed to install AntiVir on Karmic? Any help would be greatly appreciated :D

PS: If you wonder why I hold it necessary to install antivirus software on Ubuntu: I'm planning to install it to my Live USB to scan a friend's windows PC ;)

yus253
November 4th, 2009, 04:06 PM
Hi everybody,

today, I tried to install AntiVir on my Ubuntu 9.10 (Kernel 2.6.31-14). As I ran the install script, the message "It is not possible to install AVIRA AntiVir Workstation (UNIX), because your system platform is not supported." I then did some research but it strangely seems that I'm the only one experiencing this problem. Is there anybody out there who has managed to install AntiVir on Karmic? Any Help would be greatly appreciated :D

PS: If you wonder why I hold it necessary to install antivirus software on Ubuntu: I'm planning to install it to my Live USB to scan a friend's windows PC ;)

When I opened the folden of ../ariva/antivir-workstation-pers-3.0.5-11/contrib /dazuko
I was finding a file that named supported_distros.Reading it ,I know what system it will be supported,but it not includ Karmic koala.so……we just waiting avira supported.:lolflag:
终于明白为什么avira for linux不能安装了。打开你下载的../ariva/antivir-workstation-pers-3.0.5-11/contrib /dazuko,你可以找到这个文件 supported_distros中文翻译过来叫做支持版本:
dazukofs-3.0.0-rc4_2.6.16_SLES10SP1:
SLES10 SP 1 with kernel 2.6.16
vanilla kernel 2.6.16

dazukofs-3.0.0-rc4_2.6.16_SLES10SP2:
SLES10 SP2 with kernel 2.6.16

dazukofs-3.0.0-rc4_2.6.18:
Debian 4 (etch)
vanilla kernel 2.6.18

dazukofs-3.0.0-rc4_2.6.20:
Redhat 5.x with kernel 2.6.18.x
vanilla kernel 2.6.20

dazukofs-3.0.0-rc4_2.6.22:
vanilla kernel 2.6.22

dazukofs-3.0.0-rc4_2.6.22_Ubuntu7.10:
Ubuntu 7.10 with kernel 2.6.22

dazukofs-3.0.0-rc4_2.6.24:
vanilla kernel 2.6.24

dazukofs-3.0.0-rc4_2.6.25:
vanilla kernel 2.6.25

dazukofs-3.0.0-rc4_2.6.26:
Debian 5 (lenny)
vanilla kernel 2.6.26

dazukofs-3.0.0-rc4_2.6.27:
vanilla kernel 2.6.27

dazukofs-3.0.0-rc4_2.6.27_ub_os11.1:
Ubuntu 8.10
OpenSuse 11.1
Ubuntu 9.04
SLES11 with kernel 2.6.27.19

yus253
November 4th, 2009, 04:10 PM
Hi everybody,

today, I tried to install AntiVir on my Ubuntu 9.10 (Kernel 2.6.31-14). As I ran the install script, the message "It is not possible to install AVIRA AntiVir Workstation (UNIX), because your system platform is not supported." I then did some research but it strangely seems that I'm the only one experiencing this problem. Is there anybody out there who has managed to install AntiVir on Karmic? Any Help would be greatly appreciated :D

PS: If you wonder why I hold it necessary to install antivirus software on Ubuntu: I'm planning to install it to my Live USB to scan a friend's windows PC ;)

You know Karmic koala had linux kernel 2.6.31,but dazukofs in avira don't supposed it .I also find dazukofs3.1.1 can supposed this kernel ,I have no way install it.

butibum
November 5th, 2009, 08:43 AM
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

Now try the install again.
hth
Badwolf9

kixome
November 5th, 2009, 08:45 AM
use clam

running_rabbit07
November 5th, 2009, 08:58 AM
Bitdefender is free for home users.

sliketymo
November 5th, 2009, 09:22 AM
I think there is an AVG,but I'm not sure about the support for 9.1.Don't bother with the stuff myself.

xq2003
November 5th, 2009, 11:52 AM
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

Now try the install again.
hth
Badwolf9

It worked, thanks a lot! I wonder how long it will take for Avira to fix it though :p

running_rabbit07
November 5th, 2009, 05:07 PM
I think there is an AVG,but I'm not sure about the support for 9.1.Don't bother with the stuff myself.

I never realized Ubuntu had a January release.

gas85
November 11th, 2009, 12:20 PM
edit