Advertisement
Guest User

Untitled

a guest
Oct 21st, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. # installation
  2. sudo apt-get install clamav clamav-daemon
  3.  
  4. # build the database
  5. sudo freshclam
  6.  
  7. # Scan the home to find virus, make sound when found
  8. sudo clamscan -r /home/user --bell
  9.  
  10. # Clean any potential virus found
  11. sudo clamscan --infected --remove --recursive /home/user
  12.  
  13. # Activate background daemons
  14. sudo /etc/init.d/clamav-daemon start
  15. sudo /etc/init.d/clamav-freshclam start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement