Month: January 2021

How to Disable or Remove Windows Defender

Step 1: Disable Real-time monitoring immediately to minimize current runtime memory resource utilization Set-MpPreference -DisableRealtimeMonitoring…

The 10 Commandments of C Programming

Source: some ancient programming god Thou shalt run lint frequently and study its pronouncements with…

Java Virtual Machine Optimal Memory Tuning

Overview: There are five available garbage collectors (GC) for Java Virtual Machines (JVM). Here are…

How To Install Zabbix Client on CentOS 8

# Open the commonly known Zabbix ports firewall-cmd --zone=public --add-port=10050/tcp --permanent firewall-cmd --zone=public --add-port=161/tcp --permanent…

Linux: Using Bash to Search for Files Matching Certain Extensions

# using tree: list any files in a directory parentDirectory=/home tree --prune $parentDirectory # using…