ClamAV杀毒
ClamAV
ClamAV®是一款开源且免费的杀毒软件,支持Linux,Windows,Mac,Source系统,它能够扫描病毒、恶意及威胁。
点击进入 >> ClamAV官网 | GitHub
Linux安装指南Ubuntu/Debian 系统: sudo apt update sudo apt install clamav clamav-daemon 更新病毒库: sudo freshclam 启动服务: sudo systemctl start clamav-daemon sudo systemctl enable clamav-daemon 手动扫描: sudo clamscan -r /path/to/directory 安装 ClamTK 图形界面(可选) sudo apt install clamtk 卸载 ClamAV 停止 ClamAV 服务 sudo systemctl disable clamav --now 卸载 ClamAV 及其守护进程 sudo apt remove clamav clamav-daemon 卸载 ClamAV 图形界面(可选) sudo apt remove clamavtk