Blog

Latest Articles

Browse the latest tutorials, guides, and practical examples across Linux, DevOps, security, databases, and programming on GoLinuxCloud.

Explore the latest tutorials and guides across Linux, DevOps, programming, and more.

You can also browse content by category below:

  • Linux: Commands, administration, troubleshooting, and system operations
  • DevOps: CI/CD, Kubernetes, containers, and automation
  • Cloud: AWS, Azure, OpenStack, and hybrid cloud administration
  • Programming: Coding tutorials, scripting, and development concepts
  • Security: Ethical hacking, system security, and best practices
  • Databases: MySQL, MariaDB, PostgreSQL, and database management
  • Networking: Network setup, troubleshooting, and protocols
  • Storage: Disk management, file systems, and storage solutions
  • Tools: Useful tools and utilities for productivity

2329 articles

Blog illustration with latest articles, tutorials, guides, and how-to content across Linux and DevOps topics
programming

SHELL/BASH: How to create an interactive calculator in Linux

Sample shell script to create an interactive calculator using bc command to perform add, subsctract, multiply. divide, sine, cosine etc mathematical function.

Deepak Prasad3 min read
programming

Calculate Loan EMI Amount in Bash script Linux

Calculate loan EMI amount, interest and principle using bash or shell script in Linux with example. The script can be created online and runtime value.

Deepak Prasad5 min read
storage

How to boot Linux host from LVM snapshot using BOOM (CentOS/RHEL 8)

Step by Step guide to boot CentOS/RHEL 8 or 7.5 and higher Linux with LVM snapshot using BOOM. with examples. Merge LVM snapshot and delete boom profile later.

Deepak Prasad8 min read
networking

Step-by-Step Tutorial: Configure Master Slave DNS Server (RHEL/CentOS 7)

Steps to configure master slave dns server using bind chroot environment in RHEL/CentOS 7 Linux. Sample master dns server and slave dns server with examples.

Deepak Prasad9 min read
linux

Secure Master Slave DNS Server with DNSSEC key in Linux (RHEL/CentOS 7)

Steps to secure master slave dns server using various algorithm types to secure the data replication between master and slave dns server using dnssec key Linux

Deepak Prasad7 min read
linux

Register RHEL 7 host to RHN using subscription manager (with or without proxy)

Register RHEL 7 system to Red Hat Satellite Network using subscription manager. Attach pool, enable and disable repositories with or without proxy in RHSM.conf

Deepak Prasad6 min read
linux

Unregister RHEL 7 using Subscription Manager and Remove System Profile

Unregister RHEL 7 from Red Hat Network using subscription manager and remove system profile. subscription-manager unregister, clean to remove subscription data

Deepak Prasad3 min read
databases

SQL select first row in GROUP

In this tutorial we will cover different methods and examples to select first row in GROUP BY clause group in SQL. But before that let us create a sample

Falguni Thakker5 min read
databases

Insert results of stored procedure into temp table

In this article of Insert into temp table stored procedure, We have covered overview of SQL stored procedure, how to create stored procedure in SQL, syntax of SQL stored procedure, overview of temp table in SQL, what are …

Falguni Thakker5 min read
programming

HackerRank Solution: Python Pilling Up [Collections]

There are 3 methods to solve hackerrank python piling up problem. Using collection module, Using loops, Using if-else statement

Bashir Alam5 min read
security

Browser-in-the-Browser Attack

A browser-in-the-browser attack is an exploit that involves an attacker using a malicious browser to gain access to a target system. This type of attack is

Kennedy Muthii4 min read
cloud

Azure ARM Templates Explained with Examples

Azure ARM templates are an Infrastructure as Code (IaC) methodology of deploying resources in the Azure cloud. They use declarative JSON to define resources and configurations.

Sahil Hulage10 min read
cloud

Azure Policy Explained with Example [Step-by-Step]

Azure Policy is a service in Azure that you use to create, assign and manage policies. These polices are a mechanism through which we enforce compliance and enable auditing across our organization. Azure Policy does this …

Sahil Hulage8 min read
cloud

Azure Active Directory Basics Explained

Azure Active Directory is the IAM service for the Azure cloud. Different AD features are IAM Platform, Identity Security, Collaboration and Development, Monitoring, identity Integration and Enterprise Access

Sahil Hulage8 min read
cloud

Azure Blob Storage Lifecycle Management with Examples

Configure Object Replication, create storage account and configure Azure blob storage lifecycle management with step by step examples and screenshots from Azure portal

Sahil Hulage10 min read
cloud

Azure File Share Explained [Tutorial With Examples]

Azure Files is a completely managed file share that you can mount just like any SMB file share. Create Azure File Share and mount the share on Linux VM with example screenshots and commands.

Sahil Hulage9 min read
cloud

Configure Azure Point To Site VPN Connection [Step-by-Step]

Step by step instructions to configure azure point to site vpn connection (P2s) with screenshots.

Sahil Hulage6 min read
cloud

Create Azure Function in Visual Studio [Step-by-Step]

Step by step instructions to create azure function in visual studio with examples. Create HTTP trigger based azure function.

Sahil Hulage7 min read
cloud

Azure Logic Apps Tutorial [Practical Examples]

The Azure Logic Apps are a logical container for one workflow you can define using triggers and actions. A trigger can instantiate a workflow, which can consist of one or many activities (actions).

Sahil Hulage5 min read
cloud

Azure App Service Tutorial

Azure App Service is a Hypertext Transfer Protocol (HTTP)-based web application hosting service. It can be integrated with Visual Studio for creating, deploying, and debugging with the dedicated available tools.

Sahil Hulage5 min read
cloud

Azure Site Recovery (ASR) Tutorial

Step by Step instructions to learn about Azure Site Recovery (ASR). Practical example by performing a site recovery using a VM in Microsoft Azure with Replication.

Sahil Hulage5 min read
cloud

Deploy and Configure Azure Application Gateway

Step by step instructions to deploy and configure Azure Application gateway with practical example

Sahil Hulage5 min read
cloud

How To Deploy Azure Cosmos DB

Step by Step instructions to configure and deploy Azure Cosmos DB with practical examples

Sahil Hulage5 min read
cloud

Azure Web Application Firewall Deployment [Hands On]

Step by step instructions to create an Azure WAF (Web Application Firewall) to protect Front Door applications with hand on.

Sahil Hulage5 min read
cloud

Steps to deploy and configure Azure Front Door

Step by step instructions to deploy and configure Azure Front Door with screenshots and examples

Sahil Hulage5 min read
cloud

How to deploy Web App for CI/CD Pipeline using Azure DevOps

This article will show you how you can use the Azure WebApp CI/CD deployment feature with help of Azure Repos and Azure DevOps Services.

Sahil Hulage5 min read
system-administration

8 ways to prevent brute force SSH attacks in Linux (CentOS/RHEL 7)

Prevent brute force SSH attacks in RHEL CentOS 7 with examples using Fail2ban, account lockout, SSH rate limit using iptables, sshd_config, SHA512 hashing

Deepak Prasad10 min read
linux

6 ssh authentication methods to secure connection (sshd_config)

Overview on different openssh authentication methods using sshd_config in RHEL/CentOS 7/8 Linux with Examples. Authenticate your sshd connection in Linux

Deepak Prasad7 min read
storage

Overview on different disk types and disk interface types

different disk types, different disk interface types. HDD vs SSD vs Optical Disks. Learn all about SCSI, IDE, ATA, SATA, Fibre Channel disk interface types

Deepak Prasad6 min read
programming

How to trim leading and trailing spaces GO?

In this tutorial, we are going to examine some examples of trim leading and trailing white spaces of a string in Golang. Golang provides the built-in package

Tuan Nguyen3 min read