How to Install Raspberry Pi OS – Windows

Raspberry Pi OS is the official operating system for the Raspberry Pi boards. Though it is possible to install different kinds of OS on the raspberry Pi. We will only cover how to install Raspberry Pi OS using a windows machine. First we need to download Raspberry Pi Imager. This user friendly tool will enable … Read more

Monitoring SoC Temperature Using ADT7473

SoC typically include an embedded sensor device for monitoring the temperature. This device is also known as the thermal diode. Thermal diodes are commonly used in CPUs and GPUs. They are simple, reliable and allow remote monitoring of the die temperature. The diode is forward biased with a fixed current running throw it (1uA – … Read more

Apache – Redirect IP to URL

When you enter your server’s IP address in the browser address bar, you are in fact sending an HTTP request over TCP/IP to your server with the URL field equal to http://IP. It is recommended that you redirect this request to your domain. So, without further ado, let’s redirect IP to domain using htaccess Configure … Read more

SSL Certificate; How to Get one for Free?

SSL certification is very important for the security of a website. It has become the de facto standard on the web. Therefore it is crucial that you get an SSL certificate and have your website communicate over HTTPS. For that we will use SSL certification provided by Let’s Encrypt. Let’s Encrypt is a none profit … Read more

Why Do You Need fail2ban on Your Linux Server?

Most server administrators use the Secure Shell Protocol (SSH) to connect to servers. While SSH is very robust and secure for data transfer, it does not protect your server against brute-force attacks by default. An attacker can attempt to access your server for an unlimited number of times. These attacks could lead to server slow … Read more

Code Syntax Block Plugin for WordPress

Code Syntax Block is a plugin for the Gutenberg block editor, which is the default WordPress editor. Code Syntax Block adds syntax highlighting to a wide range of programming languages, markup languages and even certain config files. Installing Code Syntax Block plugin Using WordPress dashboard The simplest way to install Code Syntax Block plugin is … Read more

Linux Users and Groups

Understanding users and groups is essential for becoming an effective Linux user. How to assign a user to a group Assigning a user to an existing group. first you can see which groups the user is part of For example the root user is part of the root group To add a user to an … Read more