ติดตั้ง Clam AntiVirus บน centos 6

การสนับสนุนสำหรับการรักษาความปลอดภัยเช่นไฟร์วอลล์และการรักษาความปลอดภัยลินุกซ์ CentOS
ตอบกลับ
รูปประจำตัวสมาชิก
slwt2002
Administrator
โพสต์: 126
ลงทะเบียนเมื่อ: พุธ 24 มิ.ย. 2015 18:03

ติดตั้ง Clam AntiVirus บน centos 6

โพสต์ โดย slwt2002 »

This article will guide you through the installation of ClamAV on CentOS. Once installed, we will also configure a daily scan on our CentOS server.

ClamAV is an open source (GPL) antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats on Linux. In this article, we will only be configuring ClamAV to run scheduled/on-demand scans; not resident scans.
A. Install ClamAV
1. Install EPEL repo

Before we can do proceed, you must ensure that you have the EPEL yum repository enabled. To do this, click here.
2. Install required ClamAV packages

โค้ด: เลือกทั้งหมด

yum install clamav clamd
3. Start the clamd service and set it to auto-start

โค้ด: เลือกทั้งหมด

/etc/init.d/clamd o
n

โค้ด: เลือกทั้งหมด

chkconfig clamd on

โค้ด: เลือกทั้งหมด

/etc/init.d/clamd start
4. Update ClamAV’s signatures

โค้ด: เลือกทั้งหมด

/usr/bin/freshclam
Note: ClamAV will update automatically, as part of /etc/cron.daily/freshclam.
B. Configure Daily Scan

In this example, we will configure a cronjob to scan the /home/ directory every day:
1. Create cron file:

โค้ด: เลือกทั้งหมด

vi /etc/cron.daily/manual_clamscan
Add the following to the file above. Be sure to change SCAN_DIR to the directory that you want to scan:

โค้ด: เลือกทั้งหมด

	#!/bin/bash
	SCAN_DIR="/home"
	LOG_FILE="/var/log/clamav/manual_clamscan.log"
        /usr/bin/clamscan -i -r $SCAN_DIR >> $LOG_FILE
Give our cron script executable permissions:

โค้ด: เลือกทั้งหมด

chmod +x /etc/cron.daily/manual_clamscan
You can even run the above script to ensure that it works correctly.

And you’re done! That should be the minimum required to 1. install ClamAV and 2. Perform a daily scan of a specific directory.

https://www.centosblog.com/how-to-insta ... on-centos/
ไม่มีลายเซ็นต์ ขอเขียนแล้วกัน
ตอบกลับ