My favorites | Sign in
Project Home Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
LinuxAntivirus  
Installation and use anti-virus scanner in Linux
Linux, Antivirus, Antivir, ClamAV, F-PROT, AVG, BitDefender, COMODO
Updated Oct 6, 2014 by Robby@Zeitfuchs.org

Linux Antivirus

Avira

Download from: http://www.chip.de/downloads/AntiVir-Personal-Free-Antivirus-fuer-Linux_23188958.html

Installation

Installation via InstallScript:

sudo ./install

Upgrade license:

 sudo avguard stop
 sudo avupdate-guard --force
 

Download the license file from http://personal.avira-update.com/package/peclkey/win32/int/hbedv.key

Copy Key 'hbedv.key' to the folder '/usr/lib/AntiVir/guard/'

cp hbedv.key /usr/lib/AntiVir/guard/

sudo avguard start

Usage

avscan -s --scan-in-archive=yes --scan-mode=all --heur-level=3 --alert-action=none --heur-macro=yes --batch -r4 -rf=/mnt/smb/.../antivirAntivirusScan.txt /mnt/ntfs/

AVG

Installation

Download .deb-File from http://free.avg.com/de-de/download-free-all-product

Installation des AVG Virenscanners.

Usage

Update:

sudo avgupdate

Scannen:

avgscan -w -a --report=avgAntivirenScan.txt /mnt/ntfs/

BitDefender

Installation

sudo add-apt-repository 'deb http://download.bitdefender.com/repos/deb/ bitdefender non-free'
 

wget -q http://download.bitdefender.com/repos/deb/bd.key.asc -O- | sudo apt-key add -

sudo apt-get update

sudo apt-get install bitdefender-scanner

Speicherzugriffsfehler

Die folgende Meldung kann nach dem Starten aufgrund der Inkompatibilität zwischen den letzten Antiviren-Engines auftreten:

Loading plugins, please wait \ Speicherzugriffsfehler

Troubleshooting:

cat /opt/BitDefender-scanner/var/lib/scan/versions.dat.* | \
 awk '/bdcore.so.linux/ {print $3}' | \
 while read bdcore_so; do
   sudo touch /opt/BitDefender-scanner/var/lib/scan/$bdcore_so;
   sudo bdscan --update;
   sudo mv /opt/BitDefender-scanner/var/lib/scan/bdcore.so /opt/BitDefender-scanner/var/lib/scan/bdcore.so.old;
   sudo ln -s /opt/BitDefender-scanner/var/lib/scan/$bdcore_so /opt/BitDefender-scanner/var/lib/scan/bdcore.so;
   sudo chown bitdefender:bitdefender /opt/BitDefender-scanner/var/lib/scan/$bdcore_so;
 done

Usage

Update:

sudo bdscan --update

Scannen:

bdscan --action=ignore --no-list --log=bitdefenderAntivirenScan.txt /mnt/ntfs/

COMODO

Installation

Download COMODO von: http://www.comodo.com/home/internet-security/antivirus-for-linux.php

cav-linux_XXX_amd64.deb Datei installieren

Instalattion erfolgt nach /opt/COMODO

Usage

/opt/COMODO$ ./cavscan /mnt/ntfs/

Powered by Google Project Hosting