Não é possível executar o Freshclam

3
root@msy-Inspiron-One-2020:/home/msy# freshclam
ERROR: Missing argument for option at line 33
ERROR: Can't open/parse the config file /usr/local/etc/freshclam.conf

Aqui está o /usr/local/etc/freshclam.conf :

#Example
DatabaseDirectory /var/lib/clamav
##

## Example config file for freshclam
## Please read the clamav.conf(5) manual before editing this file.
## This file may be optionally merged with clamav.conf.
##

# You can change the default database directory here.
#DatabaseDirectory /var/lib/clamav
DatabaseDirectory /usr/local/clamav/share/clamav

# Path to the log file (make sure it has proper permissions)
UpdateLogFile /var/log/freshclam.log

# Enable verbose logging.    
LogVerbose

# Use system logger (can work together with UpdateLogFile).
LogSyslog

# By default when freshclam is started by root it drops privileges and
# switches to the "clamav" user. You can change this behaviour here.
#DatabaseOwner clamav

# The main database mirror is database.clamav.net (this is a round-robin
# DNS that points to many mirrors on the world) and in most cases you
# SHOULD NOT change it.
DatabaseMirror database.clamav.net

# How many attempts to make before giving up.
MaxAttempts 3

# How often check for a new database. We suggest checking for it every
# two hours.    
Checks 12

# Proxy settings
#HTTPProxyServer myproxy.com
#HTTPProxyPort 1234
#HTTPProxyUsername myusername
#HTTPProxyPassword mypass    

# Send the RELOAD command to clamd.
#NotifyClamd [/optional/config/file/path]

# Run command after database update.
#OnUpdateExecute command

# Run command if database update failed.    
#OnErrorExecute command

O que há de errado com isso?

    
por msy 20.09.2014 / 14:04

2 respostas

8

Você está executando um exemplo padrão do arquivo de configuração freshclam que não possui todos os tipos de configurações.

Se você executar:

sudo dpkg-reconfigure clamav-freshclam

ele criará um novo arquivo freshclam.conf na pasta /etc/clamav/ .

Remova o arquivo freshclam.conf existente da pasta /usr/local/etc/ .

sudo rm -f /usr/local/etc/freshclam.conf

Em seguida, crie um link para o novo arquivo para que, se você precisar executá-lo novamente, o arquivo conf permaneça atualizado.

sudo ln -s /etc/clamav/freshclam.conf /usr/local/etc/freshclam.conf

Em seguida, execute o freshclam para atualizar.

sudo freshclam

Você pode receber este erro: freshclam: error while loading shared libraries: libclamav.so.7: cannot open shared object file: No such file or directory , que pode ser corrigido executando:

sudo apt-get install --reinstall libclamav6

Ou para o Ubuntu 16.04:

sudo apt-get install --reinstall libclamav7

Ou ainda não tentei este, mas já foi dito que funciona em qualquer distribuição:

sudo ldconfig
    
por Terrance 24.11.2014 / 21:25
1

Se eu tomar isso como um exemplo , eu diria

LogVerbose

NÃO é um comando válido e deve ser seguido por "yes" ou "no". No link diz:

# Use system logger (can work together with LogFile).
# Default: no
LogSyslog yes

# Specify the type of syslog messages - please refer to 'man syslog'
# for facility names.
# Default: LOG_LOCAL6
#LogFacility LOG_MAIL

# Enable verbose logging.
# Default: no
#LogVerbose yes

E o mesmo vale para o LogSysLog. Isso explicaria seu aviso:

ERROR: Missing argument for option at line 33
    
por Rinzwind 24.11.2014 / 21:50