Add Clam Antivirus app
parent
2bf389cfac
commit
3e98312e27
@ -0,0 +1,8 @@
|
||||
Open-source antivirus for your pi
|
||||
Run with the command "clamscan" or go to Menu > Utility > ClamTK.
|
||||
∙ Open source
|
||||
∙ Install it, set a schedule and forget it
|
||||
∙ Scans your entire filesystem
|
||||
∙ Moves suspicious files to quaratine
|
||||
∙ Has a GUI to control it
|
||||
|
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.4 KiB |
@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
|
||||
#ClamAV install script by RPN News
|
||||
|
||||
#Define error function
|
||||
DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")"
|
||||
function error {
|
||||
echo -e "\\e[31m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Get package clamav
|
||||
# "${DIRECTORY}/pkg-install" "clamav" "$(dirname "$0")" || exit 1
|
||||
|
||||
wget https://bitbucket.org/davem_/clamtk-gtk3/downloads/clamtk_6.06-1_all.deb
|
||||
sudo apt install clamtk_6.06-1_all.deb -y
|
||||
sudo rm clamtk_6.06-1_all.deb
|
||||
|
||||
if [ -f /usr/local/bin/twistver ];then
|
||||
wget https://bitbucket.org/davem_/thunar-sendto-clamtk/downloads/thunar-sendto-clamtk_0.06-1_all.deb
|
||||
sudo apt install thunar-sendto-clamtk_0.06-1_all.deb -y
|
||||
sudo rm thunar-sendto-clamtk_0.06-1_all.deb
|
||||
fi
|
||||
|
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")"
|
||||
function error {
|
||||
echo -e "\\e[31m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
#if your app installs any packages, keep this command here so those packages will be removed.
|
||||
"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1
|
||||
|
||||
if [ -f /usr/local/bin/twistver ];then
|
||||
sudo apt purge thunar-sendto-clamtk -y
|
||||
fi
|
@ -0,0 +1 @@
|
||||
https://www.clamav.net/
|
Loading…
Reference in New Issue