PDA

View Full Version : clamav where is it??


jacob0709
22nd July 2004, 02:55 AM
i installed clam antivirus using synaptic but i can't find it anywhere from startup menu.

does any of you know??

ilja
22nd July 2004, 03:44 AM
whereis clamav :D

deuch
22nd July 2004, 03:48 AM

or which clamav ...

deuch

Jman
22nd July 2004, 11:32 AM
There is no GUI, just run clamscan from a terminal (Main Menu > System Tools > Terminal).

One tip about finding programs' executables: if you know the package, just run rpm -ql package | grep bin this will find all the executables in a bin directory.

ewdi
22nd July 2004, 11:38 AM
clamd is the daemon exec, (/usr/local/sbin/clamd)
make sur eyou update your clam antivirus definition

run freshclam

jacob0709
22nd July 2004, 02:10 PM
got it.

then how to update it???

ilja
22nd July 2004, 08:29 PM
then how to update it???

please read all the given answer!
make sur eyou update your clam antivirus definition

run freshclam

jacob0709
22nd July 2004, 08:36 PM
i got it but it keeps saying command not found.

ilja
22nd July 2004, 08:41 PM
type

su -

and then

freshclam

deuch
23rd July 2004, 12:49 AM
do you find the binary of clamav ???

do you ckeck that this directory is in your PATH (type echo $PATH) ??

deuch

ac931274
5th November 2004, 10:51 AM
To figure out which program that you will run type :
which freshclam

If this returns nothing (because the program is not in your path) try
locate freshclam

but this will return any file with "freshclam" in it

moronbros
17th November 2004, 06:54 PM
yeah but it's better to use find instead of locate. We don't know if the filesystem is indexed.

find / -name freshclam

that will search your entire filesystem. try using some other path to search like /bin or /usr/bin