PDA

View Full Version : clamav where is it??


jacob0709
2004-07-21, 07:55 PM CDT
i installed clam antivirus using synaptic but i can't find it anywhere from startup menu.

does any of you know??

ilja
2004-07-21, 08:44 PM CDT
whereis clamav :D

deuch
2004-07-21, 08:48 PM CDT
or which clamav ...

deuch

Jman
2004-07-22, 04:32 AM CDT
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
2004-07-22, 04:38 AM CDT
clamd is the daemon exec, (/usr/local/sbin/clamd)
make sur eyou update your clam antivirus definition

run freshclam

jacob0709
2004-07-22, 07:10 AM CDT
got it.

then how to update it???

ilja
2004-07-22, 01:29 PM CDT
then how to update it???

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

run freshclam

jacob0709
2004-07-22, 01:36 PM CDT
i got it but it keeps saying command not found.

ilja
2004-07-22, 01:41 PM CDT
type

su -

and then

freshclam

deuch
2004-07-22, 05:49 PM CDT
do you find the binary of clamav ???

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

deuch

ac931274
2004-11-05, 03:51 AM CST
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
2004-11-17, 11:54 AM CST
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