Linux 下的病毒防护
没有绝对安全的系统,linux下也存在病毒及安全后门。记录linux下的杀毒引擎clamav的安装及使用。
安装
CentOS直接通过yum安装。
1 2
| sudo yum install epel-release -y sudo yum install clamav -y
|
Ubuntu直接通过atp安装。
使用
安装后,更新病毒库。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
............... ClamAV update process started at Sun Apr 7 11:10:18 2019 Downloading main.cvd [100%] main.cvd updated (version: 58, sigs: 4566249, f-level: 60, builder: sigmgr) Downloading daily.cvd [100%] daily.cvd updated (version: 25422, sigs: 1552110, f-level: 63, builder: raynman) Downloading bytecode.cvd [100%] bytecode.cvd updated (version: 328, sigs: 94, f-level: 63, builder: neo) [LibClamAV] ****************************************************** [LibClamAV] *** Virus database timestamp in the future! *** [LibClamAV] *** Please check the timezone and clock settings *** [LibClamAV] ****************************************************** Database updated (6118453 signatures) from database.clamav.net (IP: 104.16.219.84)
|