Clamav: Difference between revisions
From James's Wiki
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
wget https://www.clamav.net/downloads/production/clamav-0.99.3.tar.gz | |||
tar zxf clamav-0.99.3.tar.gz | |||
cd clamav-0.99.3 | |||
./configure | ./configure |
Revision as of 19:56, 18 February 2018
wget https://www.clamav.net/downloads/production/clamav-0.99.3.tar.gz
tar zxf clamav-0.99.3.tar.gz
cd clamav-0.99.3
./configure
keeps getting error openssl not found for misconfigured.
so
sudo apt install libssl-dev
this fixed it.
./configure
make
sudo make install
sudo ldconfig
now when I run sudo freshclam I get errors can't find config file so:
sudo cp /usr/local/etc/freshclam.conf.sample /usr/local/etc/freshclam.conf
run freshclam again and still get errors, must edit file. put an # in front of example in the file like it sez to do
still errors WARNING: Can't get information about user clamav
so
sudo adduser --disabled-login clamav
and run freshclam again hey look another error...what a supprise! ERROR: Can't change dir to /usr/local/share/clamav
the directory dosen't exist and there is nothing in the config file about it so I guess I will create it
sudo mkdir /usr/local/share/clamav
sudo chown clamav:clamav /usr/local/share/clamav/
run sudo freshclam again and now its finally doing something...downloading the virus definitions I think.
no pcre support...
so...
sudo apt install libpcre3 libpcre3-dev libbz2-dev
time to recompile...
./configue
make
sudo make install