Scan a windows drive for virus with linux, knoppix, clamscan, f-prot

#boot knoppix without compiz fusion
knoppix no3d
#boot knoppix in text mode
knoppix 2
#list partitions
fdisk -l
#mount partitions
mount /dev/sda1 /media/sda1

# Set your time and date if you want
apt-get update
apt-get install ntpdate
dpkg-reconfigure tzdata
ntpdate 2.us.pool.ntp.org

# Scan with http://www.clamav.net/
apt-get update
apt-get install clamav-freshclam
#Remove proxy
vi /etc/clamav/freshclam.conf
freshclam
clamscan -ir /media/sda1

#Scan with f-prot - fpupdate does not work in the unix-trial version so you will be scanning with old definitions.  clamscan above will be current.
http://www.f-prot.com/download/corporate/

cd /tmp
#wget http://files.f-prot.com/files/unix-trial/fp-Linux.x86.64-ws.tar.gz
wget http://files.f-prot.com/files/unix-trial/fp-Linux-x86_32-ws.tar.gz
tar -xvzf fp-Linux-x86_32-ws.tar.gz
rm fp-Linux-x86_32-ws.tar.gz
cd f-prot
./install-f-prot.pl
fpscan /media/sda1

No comments: