Windows 7 is the latest stable Windows operati...

Image via Wikipedia

Just because you run linux does not mean you completely forgo anti virus. Your website can be broadcasting Windows viruses or malware. Clamav, run from the command line, will scan your web directories recursively to identify various concerns. Install Clamav:

sudo apt-get install clamav

Then you can run Clam manually or you can install a cron job for it to be run automatically. Running Clam as root allows you to scan the higher level directories. The following command will scan the entire computer and remove viruses and malware:

sudo clamscan -r / --remove

Set this as a cronjob to run in the middle of the night; add it to the root crontab list:

0 2 * * * clamscan -r / --remove

Reblog this post [with Zemanta]