-

Why is Linux so dominant in servers and supercomputers?
We all know Linux failed badly in desktop market but it is leading on the other hand in servers and supercomputers. As new age kids are getting smarter they too start to adopt Linux as…
-

Installing MariaDB and secure it on Debian
MariaDB is one of the best relational databases and we can use it on Debian Linux to host databases for apps, blogs, and websites. In this article we’ll learn installing MariaDB and securing it on…
-

Installing latest PHP on Debian
Debian Linux distribution is stable so it is common that most packages it shipped with will be not latest and that’s the reason we’ll be installing latest PHP on Debian. See how: 1. Update the…
-

Installing Let’s Encrypt SSL/TLS certificate on Debian running Nginx
Using Debian Linux and Nginx web server to manage your applications and websites, now it is easy to install free SSL/TLS certificates as Let’s Encrypt enabled us to make website HTTPS enabled. We will be…
-

Make Let’s Encrypt folder accessible
Using Let’s Encrypt is the best way to get free SSL/TLS certificates and their is a client certbot that makes it easy to install and manage all the job of creating and automatically renewing them.…
-

Linux vs. Windows servers – which one should I choose?
Imagine that you are a talented chef who prepares and sells meals in a tiny kitchen at home. You have several pots and pans, and you always get the job done on time, but after…
-

How To Disable or Enable OS Prober From the Grub?
Linux has an OS Prober feature that allows us to choose other operating systems installed in the system using Grub. By default, on the latest version of Linux, it’s disabled and will remain disable, but…
-

How to install Nginx on Fedora?
Nginx is an open-source web server (free HTTP Server software), in addition to its HTTP Server capabilities, it can also function as a Proxy Server for email (IMAP, POP3, and SMTP) and a Reverse Proxy…
-

How to search files by extension in Linux?
Want to search files using a file extensions like: *.css, *.js, *.php, *.txt, or *.zip etc. in Linux. Use the following command. sudo find /home/user/Documents -type f -name “*.css” Let’s understand the above command. sudo…