|
|
|
Quick Install:
#!/bin/bash
wget -P ~/Desktop "http://dlpe.antivir.com/package/wks_avira/unix/en/pers/antivir_workstation-pers.tar.gz"
wget -P ~/Desktop "http://dlpro.antivir.com/package/scancl/linux_glibc22/en/scancl-linux_glibc22-en.tar.gz"
tar -xzf ~/Desktop/antivir_workstation-pers.tar.gz -C /tmp
sudo /tmp/antivir-workstation-pers-3.1.3.4-1/install
# these are the recommended settings during the installation
# Do you agree to the license terms? [n] y
# Would you like to create a link in /usr/sbin for avupdate-guard ? [y] y
# Would you like to setup Scanner update as cron task ? [y] n
# Would you like to check for Guard updates once a week ? [n] n
# Would you like to install dazukofs now ? [y] n
# Would you like to create /home/quarantine ? [y] n
# Would you like to install the AVIRA Guard GNOME plugin ? [n] n
# Would you like to create a link in /usr/sbin for avguard ? [y] y
# Set up boot scripts ? [y] n
# Would you like to start AVIRA Guard now? [y] n
mkdir -p ~/Quarantine/Avira
tar -xzf ~/Desktop/scancl-linux*.tar.gz -C /tmp
sudo cp /tmp/scancl*/scancl* /usr/lib/AntiVir/guard
# REPLACE YourUserName below with your own
sudo sed -i "s/^quarantine=.*$/quarantine=\/home\/YourUserName\/Quarantine\/Avira/g" /usr/lib/AntiVir/guard/scancl.conf
|
|
|
|