ウィルス対策ソフト導入


BitDefenderのインストール

http://www.bitdefender.com/bd/site/products.php?p_id=16

BitDefender-Console-Antivirus-7.0.1-3.linux-gcc3x.i586.rpmをダウンロードしました。「2004/3/4」

1.インストール作業の実施

# rpm -ihv BitDefender-Console-Antivirus-7.0.1-3.linux-gcc3x.i586.rpm
Preparing... ########################################### [100%]
1:BitDefender-Console-Ant########################################### [100%]
Created directory /var/bdc/infected...
Created directory /var/bdc/suspected...
Thank you for installing BitDefender for Linux console Free Edition
in the following path: /opt/bdc
Your quarantine directory is /var/bdc

IMPORTANT: Before using our product, make sure you read the LICENSE
file located in /opt/bdc/doc

Please also see README and FAQ files before reporting any problems to:

support@bitdefender.com

2.最新のウィルス定義を取得

# bdc --update
BDC/Linux-Console v7.0 (build 2490) (i386) (Dec 10 2003 16:11:35)
Copyright (C) 1996-2003 SOFTWIN SRL. All rights reserved.

/opt/bdc/Plugins/cab.xmd ....... updated
/opt/bdc/Plugins/cevakrnl.ivd ....... updated
/opt/bdc/Plugins/cevakrnl.rvd ..................................................
... updated
/opt/bdc/Plugins/cevakrnl.xmd ..................................................
.... updated
/opt/bdc/Plugins/cran.cvd ...... updated
/opt/bdc/Plugins/emalware.cvd ..................................................
................................................................................
................................................................................
................................................................................
................................................................................
.. updated
/opt/bdc/Plugins/emalware.ivd ........................................... update
d
/opt/bdc/Plugins/gzip.xmd . updated
/opt/bdc/Plugins/hqx.xmd updated
/opt/bdc/Plugins/java.cvd updated
/opt/bdc/Plugins/mdx_97.ivd ............. updated
/opt/bdc/Plugins/mdx_w95.cvd ....................................... updated
/opt/bdc/Plugins/mdx_x95.cvd ..... updated
/opt/bdc/Plugins/mime.xmd ... updated
/opt/bdc/Plugins/mso.xmd updated
/opt/bdc/Plugins/na.cvd updated
/opt/bdc/Plugins/na.xmd ....... updated
/opt/bdc/Plugins/nelf.cvd ......... updated
/opt/bdc/Plugins/pst.xmd .. updated
/opt/bdc/Plugins/rup.cvd updated
/opt/bdc/Plugins/rup.xmd .......... updated
/opt/bdc/Plugins/sdx.ivd .................. updated
/opt/bdc/Plugins/unpack.cvd ............................................. update
d
/opt/bdc/Plugins/unpack.ivd ................................ updated
/opt/bdc/Plugins/unpack.xmd .............. updated
/opt/bdc/Plugins/update.txt updated
/opt/bdc/Plugins/ve.cvd .. updated
/opt/bdc/Plugins/ve.xmd .................................................... upd
ated
/opt/bdc/Plugins/zip.xmd ......... updated

3.BitDefenderを使ったウィルススキャン

すべてのファイルを検査対象 --all
ウィルス感染があった場合はそれを削除 --delete
作業状況を表示 --list
作業に関するlogを残したい場合は --log
感染ファイルをクリーニングする場合はdeleteの代わりに --disinfect

# bdc --all --delete --list /

Results:
Folders :30683
Files :148970
Packed :373
Infected files :0
Suspect files :0
Warnings :0
Deleted files :0
I/O errors :129
Files/second :72
Scan time :00:34:20

以上の結果になりました。

4.定期的に自動検査を行う設定

以下のディレクトリ内に作成する。

# pwd
/etc/cron.daily

viにて以下のファイルを作成

# vi hdc

内容は以下のとおり

/opt/bdc/bdc --update
/opt/dbc/dbc --all --delete /

このhdcに実行権限を付加します。

# chmod +x /etc/cron.daily/hdc