■AlmaLinux 9_Clam AntiVirusのインストール

投稿者: | 2023年10月24日
LinkedIn にシェア
Pocket
このエントリーをはてなブックマークに追加
このエントリーを Google ブックマーク に追加
reddit にシェア
LINEで送る

■AlmaLinux 9_Clam AntiVirusのインストール
2023/8/15
(Windows 10 Version 22H2)
(AlmaLinux-9.2-x86_64-minimal.iso)
(ClamAV 0.103.8)

・SSHでログイン

・ルートに変更
sudo -s

・Clamavをインストール
dnf –enablerepo=epel -y install clamav clamd clamav-update

・設定ファイルをバックアップ
cp /etc/clamd.d/scan.conf /etc/clamd.d/scan.conf.org

・設定ファイルを開く
vi /etc/clamd.d/scan.conf

・以下編集し上書き保存
#LogFile /var/log/clamd.scan

LogFile /var/log/clamd.scan ←コメント解除(ログファイル設定)

#PidFile /run/clamd.scan/clamd.pid

PidFile /run/clamd.scan/clamd.pid ←コメント解除(Pid設定)

#LocalSocket /run/clamd.scan/clamd.sock

LocalSocket /run/clamd.scan/clamd.sock ←コメント解除(ローカルソケットを使う)

# Default: don’t drop privileges
User clamscan

# Default: don’t drop privileges
#User clamscan ←コメントアウト(root権限で動作するようにする)

・設定ファイルをバックアップ
cp /etc/freshclam.conf /etc/freshclam.conf.org

・ウイルス定義ファイル更新設定ファイルを開く
vi /etc/freshclam.conf

・以下編集し上書き保存
#DatabaseMirror database.clamav.net

DatabaseMirror db.jp.clamav.net ←変更(DatabaseMirrorサーバーdb.jp.clamav.net)

#NotifyClamd /path/to/clamd.conf

NotifyClamd /etc/clamd.d/scan.conf ←コメント解除(ウイルス定義ファイル更新をclamdに通知する)

・ウイルス定義ファイル最新化
freshclam

・clamd起動
systemctl start clamd@scan

・clamd自動起動設定
systemctl enable clamd@scan

・動作確認
systemctl status clamd@scan

・テスト用ウィルスをダウンロード
wget http://www.eicar.org/download/eicar.com

・ウィスルスキャンを実施
clamscan –infected –remove –recursive

・バージョン確認
clamd -V

<参考>
https://korodes.com/almalinux9-1_07/