ClamAV 0.104.0, Nginx 1.21.3

"ClamAV 0.104.0"
I am getting the following error while installing the version.
I am using "Centos 8".



I am getting the following error while installing the version.
I am using "Centos 8".

I ran the command below and installed it. I tried again, still didn't install.
"ClamAV 0.104.0" how can I install it.

yum install libuv-devel
It must be an old version of cmake, maybe your yum repos are broken?
 
# yum list cmake
This system is receiving updates from CloudLinux Network server.
Last metadata expiration check: 1:17:34 ago on Tue 05 Oct 2021 01:57:12 AM +03.
Installed Packages
cmake.x86_64 3.11.4-7.el8 @cloudlinux-AppStream

What codes do I need to run? How can I run a code and install it? for CENTOS 8.
 
@agasar
that cloudlinux-appstream
centos-appstream will be V3.18

maybe you should run
Code:
yum update
if still not update, Please contact cloudlinux to get update current version of centos
 

@jamgames2

yum update

I have done the above. But I still can't install "ClamAV 0.104.0" I still couldn't install it.
[root@server ~]# yum list --showduplicates clamav
This system is receiving updates from CloudLinux Network server.
Last metadata expiration check: 2:07:08 ago on Tue 05 Oct 2021 11:11:22 PM +03.
Installed Packages
clamav.x86_64 0.103.3-5.el8 @epel
Available Packages
clamav.x86_64 0.103.3-5.el8 epel
Can anyone let me know how to install "ClamAV 0.104.0"?
What commands do I need to run I am using CENTOS 8.
 
I have the same issue on a Ubuntu 18.04 machine.
I checked the Cmake version and it was very old. Used the method described here by cjd:

Code:
pip3 install cmake
apt-get install libbz2-dev

libbz2-dev was already installed, but cmake was upgraded to version 3.21.3.
But the problem with ClamAV still exists, even after two reboots of the machine:

Code:
Installing clamav 0.104.0 ...
Found /usr/local/directadmin/custombuild/clamav-0.104.0.tar.gz
Extracting ...
Done.
Configuring clamav 0.104.0 ...
cmake: /usr/local/lib/libcurl.so.4: no version information available (required by cmake)
CMake Error: The source directory "/usr/local/directadmin/custombuild/clamav-0.104.0/build/ENABLE_TESTS=OFF" does not exist.
Specify --help for usage, or press the help button on the CMake GUI.
*** There was an error while trying to configure clamav.
Done!

Custombuild 2.0.0 (rev: 2764)
Directadmin 1.62.9
 
I suggest you run the following commands sequentially.

I'm using "CloudLinux" I'm using "Centos 8"

yum clean all
yum update cmake

cd /usr/local/directadmin/custombuild
./build update
./build clamav
 
I had the kind of the same problem with Debian 9:
Custombuild update ClamAv wouldn't execute with:

cmake : Depends: libarchive13 (>= 3.3.3) but 3.2.2-2+deb9u2 is to be installed

Finally found this post which suggested to use pip3 to get cmake to work. So here are the steps I took:

apt update
apt install python-pip
apt update
apt install python3-pip
pip3 install cmake
apt-get install libbz2-dev (which was already installed)

After that I returned to Custombuild and updated ClamAv from 0.103 to 0.104 succesfully
 
I had the kind of the same problem with AlmaLinux 8
I had the kind of the same problem with Debian 9:
Custombuild update ClamAv wouldn't execute with:

cmake : Depends: libarchive13 (>= 3.3.3) but 3.2.2-2+deb9u2 is to be installed

Finally found this post which suggested to use pip3 to get cmake to work. So here are the steps I took:

apt update
apt install python-pip
apt update
apt install python3-pip
pip3 install cmake
apt-get install libbz2-dev (which was already installed)

After that I returned to Custombuild and updated ClamAv from 0.103 to 0.104 succesfully

I had the kind of the same problem with AlmaLinux 8
i use
# yum update
# yum install python3-pip
# pip3 install cmake

After that I returned to Custombuild and install clamav and done

Image 503.jpg
 
Back
Top