web-dev-qa-db-ja.com

Freshclamを実行できません

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

/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

どうしたんだ?

4
msy

すべての種類の設定が欠落しているfreshclam configファイルのデフォルト例を実行しています。

実行する場合:

Sudo dpkg-reconfigure clamav-freshclam

/etc/clamav/フォルダーに新しいfreshclam.confファイルが作成されます。

/usr/local/etc/フォルダーから既存のfreshclam.confファイルを削除します。

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

次に、新しいファイルへのリンクを作成して、もう一度実行する必要がある場合に、confファイルが更新されたままになるようにします。

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

次に、freshclamを実行して更新します。

Sudo freshclam

次のエラーが表示される場合があります:freshclam: error while loading shared libraries: libclamav.so.7: cannot open shared object file: No such file or directory

Sudo apt-get install --reinstall libclamav6

またはUbuntu 16.04の場合:

Sudo apt-get install --reinstall libclamav7

または、私はまだこれを試していませんが、どのディストリビューションでも動作すると言われています:

Sudo ldconfig
8
Terrance

これを例にとると と言う

LogVerbose

有効なコマンドではないため、「yes」または「no」を続ける必要があります。リンクには次のように書かれています:

# 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

LogSysLogについても同じことが言えます。それはあなたの通知を説明するでしょう:

ERROR: Missing argument for option at line 33
1
Rinzwind