centos 6.5 x64 following Perfect server tutorial, step 14. getting error: Code: /etc/init.d/clamd.amavisd start /etc/init.d/clamd.amavisd: line 7: /usr/share/clamav/clamd-wrapper: No such file or directory All previous steps are ok and running. There is no "clamd-wrapper" file on system. What provides it or how to fix this problem? Can't get any reasonable help over google/internet.
Yum can tell you what package installed the file. Code: yum whatprovides "*/clamd-wrapper*" On my server the clamd-0.98.4-1.el6.x86_64 package installed the file
yeah, thanks forgot about whatprovides options. And yes, found problem. clamd was installed from rpmforge repo. Clamd from epel provides proper package. Good idea to have node in tuturial for disabling rpmforge during this step. Code: yum -y install --disablerepo="rpmforge" ...