View Single Post
  #18  
Old 28th Oct 04, 11:06 PM
marcovaleriof's Avatar
marcovaleriof marcovaleriof is offline
Senior Member
 
Join Date: Sep 2001
Location: Italy
Posts: 114
marcovaleriof
Send a message via ICQ to marcovaleriof Send a message via MSN to marcovaleriof
antivirus for linux
I don't know if there is a virus for linux, but this puppy from BitDefender could come in andy when in your linux box share file with a windows box

link: http://www.bitdefender.com/index.php?tab=2

products:

x Linux Mail Server Protection

x Linux File Server Protection <- bit defender for samba

x LinuxDefender <- A Linux distro complete with BitDefender tools on a bootable CD

x BitDefender Linux Edition <- Complete virus defense solution designed for easy virus prevention on Linux systems

x BitDefender Web Installer <- Download bitdefender for linux by iussing this command from a console (U must be logged as root)
Code:
wget -q -O - http://linux.bitdefender.com/webinstall.sh | sh
------------------------------------------------------------------------------------------------------------//-------

Then U could run this from a cron job:

Ex 1)
updating:
put a file called update (with permission set to 755) in /etc/cron.daily/
Code:
marco@apollo ~ $ cat /etc/cron.daily/update #! /bin/sh nice -n 10 /opt/BitDefender/bdc/bdc --update
Ex 2)
running antivirus control:
put in /etc/cron.daily/

Code:
marco@apollo ~ $ cat /etc/cron.daily/dl.scan #! /bin/sh if [ -x /opt/BitDefender/bdc/bdc ] then nice -n 10 /opt/BitDefender/bdc/bdc /home/marco/scarico --log=/var/log/dl.scan --append --all --move --moves fi

Last edited by marcovaleriof : 28th Oct 04 at 11:08 PM. Reason: check spelling
Reply With Quote