ClamAv and freshclam are my incubus!How to manually remove them

gmcfuerte

Verified User
Joined
May 26, 2010
Messages
16
Hello!
i' m tryng to remove ClamAv and freshclam rom my centos 6 server.
something was removed with yum i think i had two different versions one of Direct admin and one from centos.
yum remove clamav*
Now
clam process is stopped
freshclam start multiple process and suck my ram until i manually kill them.
How can i remove them all?
Thanks in advice!
Giulio
 
Last edited:
remove them with rpm commands

just reinstall the directadmin version with custombuild...there is no easy way to remove it
 
remove them with rpm commands

just reinstall the directadmin version with custombuild...there is no easy way to remove it
when i make


yum remove clamav*

Loaded plugins: downloadonly, fastestmirror, security
Setting up Remove Process
No Match for argument: clamav*
Loading mirror speeds from cached hostfile
* epel: fr2.rpmfind.net
* remi: fr2.rpmfind.net
Package(s) clamav* available, but not installed.
No Packages marked for removal


process freshclam is still trying to update. and starts 2 times for minutes without arriving to goal and closing itself.
Sorry not so easy for me...
 
I would just use this command to see what is installed:

Code:
rpm -aq | grep -i clam

Then you can remove them with:

Code:
rpm -e package-name
 
Back
Top