It is very important to emphasize that they are reliable if and only if they are updated regularly so that they are able to detect and remove the latest security threats.
Some free-of-charge antivirus software are: ClamAv (an open source antivirus engine for detecting trojans, viruses, malware & other malicious threats), Free AVG Antivirus, Avast, and Ad-Aware Free.
# First, we need to install the clamav package.
sudo pacman -Sy clamav
# Update the virus definition
sudo freshclam
# Get the latest definitions at boot so that the virus definitions are kept recent.
sudo systemctl enable --now clamav-freshclam.service
# Start the daemon
sudo systemctl enable --now clamav-daemon.service
# Test ClamAV. The output must contain: stdin: Win.Test.EICAR_HDB-1 FOUND
curl https://secure.eicar.org/eicar.com.txt | clamscan -
# Install more signatures (databases) from other repositories
yay -S clamav-unofficial-sigs
# Enable the clamav-unofficial-sigs.timer. It will regularly update the unofficial signatures.
sudo clamav-unofficial-sigs.sh--install-all
# Scan for viruses and remove them
clamscan --recursive--remove /home/yourUserName
The best free firewalls are: ZoneAlarm Free Firewall (one of the world’s most downloaded firewall software programs) and Comodo Firewall Free, a personal firewall software.
# Install necessary packages
sudo pacman -s firewalld ipset ebtables
# Enable and start firewalld.service.
sudo systemctl enable--now firewalld.service
# Change the default zone to home.
sudo firewall-cmd--set-default-zone=home
# Open ftp and htpp services:--permanent because changes made in Runtime configuration are lost when the firewalld service is restarted.
sudo firewall-cmd --add-service=ftp--permanent
sudo firewall-cmd --add-service=http--permanent
# Allow traffic on an incoming port (24800) -Barrier-
sudo firewall-cmd --add-port=24800/tcp--permanent
# Restart the firewall.
sudo firewall-cmd --reload
# List allowed service and ports on the system
sudo firewall-cmd --list-service
LastPass:
Other options you may consider are: A. Clonezilla is a partition and disk imaging/cloning program. It is a free alternative to Norton Ghost. B. Paragon Backup & Recovery is one of the best, free backup solutions. C. Déjà Dup Backup Tool is a very simple and yet powerful GUI tool for backup in Ubuntu. D. Timeshift is an open-source backup and restore application for Linux similar to the Time Machine tool in Mac OS. It protects your system by taking incremental snapshots of the file system at regular intervals.
This brief tutorial shows you how to install and configure it in Arch, GNU/Linux.
git clone https://aur.archlinux.org/timeshift.git
cd timeshift
makepkg -si
cd ..
rm -rf
D. Change the default SSID ― your network name ―. E. If you want to go one step further, enable MAC address filtering, so only the devices with MAC addresses listed in the router will be allowed to connect.
To find out your MAC address type ipconfig /all at the command prompt in Windows or ifconfig in GNU/Linux.