hardening security policy
I am runing Redhat workstation 8.4 all uptodate on T61 Lenovo 4GB RAM, SSD.
I am constantly getting AVC denials and some malware multiply times a day prompts me for my password (which I did NOT enter).
My question is how to make my system more robust and stable, as from time to time my screen freezes and I lose all the work (only in X graphical mode not in pure terminal mode)?
What are the good practices about it?
What antimalware and antivirus software do You suggest (payable and free)?
I tried to rectify problem myself and wrote this script (in file listed1) (but to no avail):
!/bin/bash
listed=
dnf list installedlisted1='dnf reinstall '
k=0;
for i in $listed
do
((k++));
if [[ $k -lt 7 ]]
then
continue
fi
if [[ $k%3 -eq 1 ]]
then
listed1+=$i' ';
fi
done
$listed1
Please help me, thank You in advance, sincerely, Grega Leskovšek from Slovenia
Responses