Ubuntu

How to clean virus by command line scan in Ubuntu and Linux Mint

How to clean virus by command line scan in Ubuntu and Linux Mint

Although Linux is less vulnerable to Virus infection, it is generally a good idea to still regularly scan entire PC, especially in a Windows-Linux dual-boot PC. Let's take a look at how to perform a virus scan in an Ubuntu PC using ClamAV opensource antivirus program.

Using this guide one can scan Windows partition too to remove the virus. This guide is tested on Ubuntu 17.10 but should work in older versions of Ubuntu, Linux Mint, and elementary OS too.

Installing ClamAV

ClamAV is a popular free and open source software (FOSS) that is used for cleaning up malware from various situations including email scanning, web scanning, and endpoint security. It provides a command line scanner and an advanced tool for automatic database updates. Its Virus database gets updated multiple times per day.

Launch 'Terminal' (keyboard shortcut: ) and enter the following command.

sudo apt-get install clamav

Pay attention to the Terminal and enter the root password and 'Y' when you see a prompt to complete the installation.

Installing ClamAV in Ubuntu 17.10

Updating ClamAV Virus Signature Database

Next, you should update ClamAV virus database with latest so that the scanner can detect the recent malware too.

Use the following command in the Terminal.

sudo freshclam

Did you see an error that resembles the following?

ERROR: /var/log/clamav/freshclam.log is locked by another process ERROR: Problem with internal logger (UpdateLogFile = /var/log/clamav/freshclam.log).

The error indicates that ClamAV is currently running in the background. You need to stop the program before installing updates.

Updates ClamAV Virus Signatures

Enter the following command:

sudo /etc/init.d/clamav-freshclam stop

Time to update the virus database now.

sudo freshclam

Finally, restart ClamAV using the following command:

sudo /etc/init.d/clamav-freshclam start

Scanning File System using ClamAV

ClamAV operates only in the command line. Therefore, it's important to know what commands are available with it. To know the complete list of commands for ClamAV, enter the following in Terminal.

man clamav

Enter 'q' to come out of man window.

You can use various combinations to do whatever you want. For example, if you want ClamAV to scan and list only the infected files in your home directory, the command would look like this:

 clamscan -i -r ~/

You will not see any progress in the terminal and may look like it's not responding, but it is completely normal. ClamAV reports the summary after the scan is finished.

ClamAV Scan Report

Use the following command to remove the virus as it finds:

 clamscan --remove=yes -i -r ~/

That's it!

SuperTuxKart for Linux
SuperTuxKart is a great title designed to bring you the Mario Kart experience free of charge on your Linux system. It is pretty challenging and fun to...
Battle for Wesnoth Tutorial
The Battle for Wesnoth is one of the most popular open source strategy games that you can play at this time. Not only has this game been in developmen...
0 A.D. Tutorial
Out of the many strategy games out there, 0 A.D. manages to stand out as a comprehensive title and a very deep, tactical game despite being open sourc...