Software & Apps

Home » Software & Apps

Finding all files containing a text string on Linux

October 10, 2023    By admin

Do the following: grep -rnw ‘directory’ -e “pattern” -r is recursive, -n is line number and -w stands match the whole word. Along with these, –exclude or –include parameter could be used for efficient searching. Something like below: grep –include=\*.{c,h} -rnw ‘directory’ -e “pattern” This will only search through the... Read More

Web Server Installation Resources

October 10, 2023    By admin

List of resources to consider looking up for Instructions & Steps to Install an Ubuntu 14.04 LTS Web Server. Summarized steps.. LAMP Installation Resources Postfix Resources: Firewall & Security

The Importance of an Antivirus

October 10, 2023    By admin

What is an Antivirus?Antivirus software is a program or set of programs that are designed to prevent, search for, detect, and remove software viruses, and other malicious software like worms, trojans, adware, and more.  Some examples of anti virus software include McAfee, Norton, and Kaspersky. Why it’s important?It is important... Read More