I use Ubuntu as a file server, is there a virus scanner on Ubuntu for scanning Windows files? Since most of the files are saved on the server, this would greatly help minimize the spread of viruses.
Asked
Active
Viewed 2,814 times
7
-
It is not so much viruses but rootkits that are dangerous to Linux. Just be careful with root access, sudo and su commands. – Feb 24 '11 at 00:00
2 Answers
13
- You can use clamav
- If you want a GUI front end then you should install clamtk
as well
- More information about antivirus can be found here in the Ubuntu help wiki.

Zanna
- 70,465

karthick87
- 81,947
-
Writing in 2020, this does not really work on Ubuntu 18.04 due to https://askubuntu.com/questions/909273/clamav-error-var-log-clamav-freshclam-log-is-locked-by-another-process, comes down to a bug in Clam if one follows. I was also unable to get Avast Linux to work, seems no longer supported. – CoderGuy123 Apr 14 '20 at 03:43
5
Yes of course. Ubuntu comes with ClamAV in the packages:
ClamAV (sudo apt-get install clamav
) which will install as a service and you can tell it where to check, you can use it joined with sendmail, etc..
If you want to have it in the gui you can also use it there and including with nautilus with nautilus-clamscan (sudo apt-get install nautilus-clamscan
)
Or look for it in the Software Center or with Synaptic.

Luis Alvarado
- 211,503