How to Install ClamAV on Ubuntu 22.04 or 20.04

ClamAV, short for Clam AntiVirus, is an open-source, cross-platform antivirus software tool designed to detect and remove malicious software from computer systems, such as viruses, malware, and spyware. ClamAV is based on a signature-based detection mechanism, meaning it uses a database of virus signatures to scan files and directories for known viruses and malicious code.

ClamAV was first developed by Tomasz Kojm in 2001 and has since become one of the most popular open-source antivirus software tools available, with millions of users worldwide. It is particularly popular among Linux users, often used as a command-line tool to scan files, emails, and web traffic for viruses and other malware.

Some reasons for ClamAV’s popularity include its ease of use, low system requirements, and ability to detect a wide range of known viruses and malware. In addition, being an open-source tool, it has a large and active community of developers who continually improve and update the software.

One of the most significant benefits of ClamAV is its ability to integrate with other software tools, such as email servers and firewalls, making it a versatile and useful tool for system administrators and security professionals.

This guide will demonstrate how to install ClamAV on Ubuntu 22.04 Jammy Jellyfish or Ubuntu 20.04 Focal Fossa using the command-line terminal and how to use ClamAV to perform basic scanning. By the end of this guide, you should understand how to use ClamAV to scan your computer system for viruses and other malicious software and be better equipped to protect your system from potential threats.

Step 1: Update Ubuntu

To avoid any potential conflicts during the installation of ClamAV, it is essential to ensure that all packages on your Ubuntu system are up-to-date. Before proceeding with the ClamAV installation, run a quick update by executing the following command in a terminal window:

sudo apt update && sudo apt upgrade

This command will update the package lists on your system and ensure that all packages are up-to-date before installing ClamAV.

Step 2: Install ClamAV with Ubuntu Repository

The simplest way to install ClamAV on Ubuntu is to use the default APT repository. To install ClamAV, execute the following command in a terminal window:

sudo apt install clamav clamav-daemon

This command will install ClamAV and its daemon from the default Ubuntu repository, making it easy to install and use.

To verify that ClamAV is installed correctly, you can check the version installed by running the following command:

clamscan --version

Optional: Install ClamAV TK

Installing the ClamAV GUI (clamtk) is optional for Ubuntu users who prefer a graphical interface for managing the ClamAV virus scanner. To install the ClamAV GUI (clamtk) from the Ubuntu repository, run the following command:

sudo apt install clamtk

After installing ClamTK, you can launch it from the Applications menu or by running the following command in the terminal:

clamtk

Using ClamTK, you can easily configure the ClamAV virus scanner and perform scans with a graphical interface. The ClamAV GUI can be useful for the novice or intermediate Linux users who are uncomfortable using the command line.

Example of ClamTK user interface:

Step 3: Update the ClamAV Virus Database

After installing ClamAV, it is crucial to update the virus database before using the virus scanner (clamscan). This ensures that your system is up-to-date and protected against the latest threats. Here’s how you can update the ClamAV virus database:

First, you must stop the “clamav-freshclam” service to update the virus definition database. To do this, type in the following command in a terminal window:

sudo systemctl stop clamav-freshclam

Update your virus definition database by executing the following command in a terminal window:

sudo freshclam

This command will download the latest ClamAV virus databases and definitions in the directory “/var/lib/clamav.”

Example output:

Once the database is updated, you can start the “clamav-freshclam” service by running the following command:

sudo systemctl enable clamav-freshclam --now

This command will activate the service and automatically enable it on system boot, which is highly recommended.

To view the directory of ClamAV and the dates of files, use the “ls -l” command. For example, to list the contents of the “/var/lib/clamav/” directory, run the following command:

ls -l /var/lib/clamav/

This command will display the contents of the “/var/lib/clamav/” directory, along with their file permissions, owners, and modification dates.

Example output:

In case you need to disable “clamav-freshclam” in the future, you can run the following command:

sudo systemctl disable clamav-freshclam --now

ClamAV Terminal Commands

The primary function of ClamAV is to scan files and directories for viruses and malware. Here are some commands that can help you perform scans:

Scan a specific file

clamscan /path/to/file

This command scans a specific file for viruses and malware.

Scan a specific directory

clamscan -r /path/to/directory

This command scans a specific directory and all its subdirectories for viruses and malware.

Scan a specific file and write the results to a file

clamscan /path/to/file -l /path/to/logfile

This command scans a specific file for viruses and malware and writes the results to a file.

Scan a specific directory and write the results to a file

clamscan -r /path/to/directory -l /path/to/logfile

This command scans a specific directory and all its subdirectories for viruses and malware and writes the results to a file.

Scan a specific file and remove infected files

clamscan /path/to/file --remove

This command scans a specific file for viruses and malware and removes any infected files.

These are just some commands; run the following command to print help into your terminal to get a full list of commands.

clamscan --help

Additional Tips

Limit ClamAV CPU Usage

ClamAV scanning can be CPU-intensive, and older or limited hardware may struggle to keep up. To mitigate this issue, you can use the “nice” command to limit ClamAV CPU usage. This can be especially helpful when performing system scans or running other resource-intensive applications.

The “nice” command adjusts the priority level of a process, allowing you to allocate more or fewer system resources to specific tasks. By default, ClamAV has a priority level of zero, but using the “nice” command can reduce this level, freeing up more system resources for other tasks.

Here’s an example of how to use the “nice” command to limit ClamAV CPU usage during a scan:

sudo nice -n 15 clamscan && sudo clamscan --bell -i -r /home

In this command, the “nice” command sets the priority level of the “clamscan” command to 15. ClamAV will use fewer system resources during the scan, allowing other processes to take priority. The “&&” operator is then used to run a second “clamscan” command with the options “–bell -i -r /home” after the first scan completes.

While the “nice” command is the best option for limiting ClamAV CPU usage, other options are also available. For example, you could adjust ClamAV’s configuration file to reduce the number of threads used during a scan. However, using the “nice” command is a simple and effective way to balance system resources between ClamAV and other processes.

Creating a Cron Job for ClamAV

Cron is a built-in utility in Ubuntu that allows users to automate tasks on a schedule. This can be especially helpful when running regular virus scans with ClamAV. This section will demonstrate creating a cron job for ClamAV on Ubuntu.

Create a shell script that will run the ClamAV scan. To do this, enter the following command in the terminal:

nano clamscan.sh

This will open a new file in the nano text editor, where you can enter the ClamAV command you want to run. For example, if you want to scan the entire “/home” directory, you can enter the following command:

#!/bin/bash
clamscan -r /home

Once you have entered the command, press “Ctrl + X” to exit nano, and then press “Y” to save the file.

Before you can run the shell script, you must make it executable. To do this, enter the following command in the terminal:

chmod +x clamscan.sh

This will give the shell script execute permissions.

Now that the shell script is ready, you can create a cron job that will run the script regularly. To do this, enter the following command in the terminal:

crontab -e

This will open the cron table in the nano text editor. In this file, you can enter the schedule for the ClamAV scan. For example, if you want to run the scan every day at 3:00 am, you can enter the following line:

0 3 * * * /path/to/clamscan.sh

Replace “/path/to/clamscan.sh” with the actual path to your shell script. Once you have entered the line, press “Ctrl + X” to exit nano, and press “Y” to save the changes.

To confirm that the cron job is set up correctly, you can use the following command in the terminal:

crontab -l

This will display the list of cron jobs set up on your system. If the ClamAV cron job is set up correctly, you should see it here.

Remove ClamAV

If you no longer need ClamAV on your system, you may want to remove it to free up space and reduce clutter. Fortunately, removing ClamAV is straightforward and can be completed using just a few terminal commands.

To begin, you’ll want to disable the ClamAV service to ensure it isn’t running during uninstallation. To do this, enter the following command in the terminal:

sudo systemctl disable clamav --now

This command disables the ClamAV service, preventing it from running in the background and interfering with the uninstallation process.

Next, you’ll want to remove all traces of ClamAV from your system. This includes the ClamAV software and any dependencies or associated files that may have been installed alongside it. To do this, enter the following command in the terminal:

sudo apt remove clamav clamav-daemon

Also, ClamAV TK installations can remove the graphical interface by themselves running the command:

sudo apt remove clamavtk

Conclusion

In conclusion, ClamAV is a powerful and effective antivirus software that can help keep your Linux system safe from malware and other threats. Whether you’re a novice or intermediate Linux user, there are various ways to install and configure ClamAV to suit your needs and preferences.

Using the ClamAV terminal commands discussed in this guide, you can customize and configure ClamAV to optimize performance and ensure your system stays protected against the latest threats. You can also use these commands to manage the ClamAV service, update the virus database, and remove ClamAV from your system if you no longer need it.

Overall, ClamAV is an essential tool for any Linux user who values security and wants to keep their system free from viruses and malware. With the help of the ClamAV terminal commands outlined in this guide, you can take full advantage of this powerful antivirus software and stay protected against a wide range of threats.

For more information on using ClamAV, visit the official documentation.

FAQ on ClamAV with Ubuntu

Q: What is ClamAV, and why is it important for Ubuntu or Linux users?

A: ClamAV is an open-source antivirus software specifically designed for Linux systems. It is important for Linux users because it can help protect your system against various threats, including viruses, malware, and other malicious software.

Q: How do I update the ClamAV virus database?

A: To update the ClamAV virus database, use the “freshclam” command in the terminal. This command will download the latest virus definitions from the ClamAV website and update your local virus database. Refer to the article for detailed instructions.

Q: How do I scan my system for viruses using ClamAV?

A: To scan your system for viruses using ClamAV, use the “clamscan” command in the terminal. This command will scan your system for viruses and other malicious software and report any findings. Refer to the article for detailed instructions and additional options.

Q: Can I limit ClamAV CPU usage during a scan?

A: Yes, you can use the “nice” command to limit ClamAV CPU usage during a scan. This can be helpful for older or limited hardware that may struggle to keep up with a resource-intensive scan. Refer to the article for detailed instructions.

Q: Can ClamAV detect all types of viruses and malware?

A: While ClamAV is a powerful antivirus software, it may not be able to detect all types of viruses and malware. It is important to keep your system up-to-date and use additional security measures to ensure the highest level of protection.

Q: How often should I update the ClamAV virus database?

A: It is recommended to update the ClamAV virus database at least once daily to ensure your system stays protected against the latest threats. You can automate this process using the “freshclam” command and setting up a scheduled task.

Q: Can I configure ClamAV to scan specific directories or files?

A: Yes, you can use the “clamscan” command with various options to scan specific directories or files. For example, you can use the “-r” option to scan directories recursively or the “-i” option to show only infected files. Refer to the article for detailed instructions and additional options.

Q: What should I do if ClamAV detects a virus or malware on my system?

A: If ClamAV detects a virus or malware on your system, it is important to take action immediately. You can use the “clamscan” command with the “–remove” option to delete infected files or the “–move” option to move them to a quarantine folder for further analysis. Additionally, you may want to run additional antivirus software or seek the advice of a security professional.

Q: Is ClamAV compatible with other antivirus software?

A: Yes, ClamAV is compatible with other antivirus software and can be used alongside other security measures to provide an additional layer of protection. However, it is important to ensure that your system does not have conflicting antivirus software that can interfere with each other

Share to...