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

2342 articles

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

How to Remove a Commit in Git (Undo, Delete or Revert) with Examples

Learn how to remove a commit in Git using reset, revert, or rebase. This guide explains how to undo the last commit, delete a specific commit, remove commits before or after push, rewrite commit history, and safely …

Deepak Prasad17 min read
devops

Git Revert to Previous Commit: Reset, Checkout, or Rollback (Examples)

Learn how to revert to a previous commit in Git using reset, revert, checkout, and restore commands. This guide explains how to go back to earlier commits, rollback changes safely, restore files from history, undo pushed …

Steve Alila15 min read
devops

Git Commit --Amend Explained (Edit Last Commit Message, Files & Author)

Learn how to use git commit --amend to modify the last commit in Git. This guide explains how to change commit messages, add forgotten files, update commit author details, modify commit timestamps, undo amend operations, …

Deepak Prasad10 min read
devops

How to Rename Git Branch (Local & Remote) with Examples

Learn how to rename Git branches locally and remotely with practical examples. This guide explains how to rename the current branch, rename another branch, rename remote branches, migrate from master to main, and update …

Deepak Prasad10 min read
devops

Git Clean Command (Remove Untracked Files Safely)

Learn how to use the git clean command to remove untracked files, delete untracked directories, and clean your Git repository safely. This guide explains git clean options such as -f, -fd, -fx, and -fX with practical …

Steve Alila7 min read
devops

Git Command Cheat Sheet (40+ Commands with Examples)

Complete Git command cheat sheet with 40+ essential Git commands, syntax, examples, and workflow tables. Learn commonly used Git commands such as git clone, git commit, git branch, git push, git pull, and git reset with …

Steve Alila13 min read
devops

Git Remove Untracked Files (Delete Untracked Files Safely)

Learn how to remove untracked files in Git using git clean and other safe methods. This guide explains how to delete untracked files, remove untracked directories, discard untracked changes, and clean Git repositories …

Steve Alila6 min read
devops

Git Clone Command in Linux (Examples for Ubuntu, SSH, Branch & Depth)

Learn how to use the git clone command in Linux with practical examples. This guide explains how to clone Git repositories in Ubuntu, clone using SSH keys or HTTPS, clone specific branches, perform shallow clones, and …

Steve Alila8 min read
databases

SSRS Email Subscription: Send Reports Hourly Between Specific Hours

Learn how to send SSRS reports by email hourly between specific hours using SQL Server Reporting Services subscriptions. This step-by-step guide explains configuring email delivery, report scheduling, standard and …

Falguni Thakker12 min read
devops

Git Branch Explained with Examples (Create, Switch, Delete Branches)

Learn how Git branches work with practical examples. This guide explains how to create, switch, rename, merge, and delete Git branches locally and remotely. Understand Git branch workflow, HEAD pointer behavior, tracking …

Deepak Prasad14 min read
cloud

AWS CodeDeploy and CodePipeline Tutorial: Deploy Applications Using CI/CD Pipeline

Learn how to deploy applications using AWS CodeDeploy and automate CI/CD workflows with AWS CodePipeline. This tutorial explains how to create deployment groups, configure EC2 instances, build CI/CD pipelines, add manual …

Mahnoor Malik14 min read
cloud

AWS CodeCommit and CodeBuild Tutorial: Build a CI/CD Pipeline on AWS

Learn how to implement a CI/CD pipeline on AWS using CodeCommit and CodeBuild. This step-by-step tutorial explains how to create a CodeCommit repository, connect using Git, configure build projects in AWS CodeBuild, and …

Mahnoor Malik17 min read
cloud

AWS Lambda Tutorial: Getting Started with AWS Lambda with Practical Examples

Learn AWS Lambda with this beginner-friendly tutorial. Understand how AWS Lambda works, create Lambda functions, run and test them, and integrate Lambda with services like Application Load Balancer, Amazon EventBridge, …

Mahnoor Malik17 min read
cloud

AWS Application Load Balancer Tutorial: Step-by-Step Setup & Configuration (ALB)

Learn how to create and configure an AWS Application Load Balancer (ALB) step-by-step. This tutorial covers EC2 setup, target groups, listeners, HTTPS configuration, Auto Scaling integration, monitoring, and testing …

Mahnoor Malik17 min read
cloud

AWS Auto Scaling Tutorial: Auto Scaling Groups Explained with Practical Examples

Learn AWS Auto Scaling Groups with practical examples. This tutorial explains dynamic scaling, predictive scaling, scheduled scaling, scaling policies, CloudWatch alarms, and how Auto Scaling automatically adjusts EC2 …

Mahnoor Malik16 min read
cheatsheet

Nmap Command in Linux: 30+ Nmap Command Examples and Cheat Sheet

Learn the Nmap command in Linux with 30+ practical examples and a quick cheat sheet. This guide explains how to perform host discovery, port scanning, service detection, OS detection, firewall detection, and network …

Rohan Timalsina15 min read
devops

git blame Command in Git: Syntax, Options & Practical Examples

Learn the git blame command with syntax, options, and practical examples. Understand how to identify who modified a line of code, trace commit history, debug issues, and analyze file changes using git blame in CLI, …

Steve Alila16 min read
devops

Git Fix: fatal: couldn't find remote ref main (Complete Guide)

Learn how to fix the Git error "fatal: couldn't find remote ref main" during git pull, fetch, or clone operations. This guide explains branch naming issues, renamed branches (main vs master), missing remote branches, …

Steve Alila11 min read
devops

Git Fix: fatal: Could not read from remote repository

Learn how to fix the Git error "fatal: Could not read from remote repository." Step-by-step solutions for SSH authentication failures, repository access problems, incorrect remote URLs, permission denied (publickey) …

Steve Alila13 min read
devops

Git Error: Cannot Delete Branch Checked Out or Used by Worktree

Learn how to fix the Git error "cannot delete branch checked out at" and "cannot delete branch used by worktree". This guide explains the causes, quick fixes, and practical solutions using git checkout, git worktree …

Steve Alila10 min read
devops

Git Fix: error cannot open .git/FETCH_HEAD permission denied (Complete Guide)

Learn how to fix the Git error "cannot open .git/FETCH_HEAD: permission denied" during git pull or git fetch. Step-by-step solutions for permission issues, ownership problems, Docker volumes, NFS repositories, and CI/CD …

Steve Alila12 min read
cloud

Azure Backup MARS Agent Tutorial: Backup On-Premises Servers to Azure

Learn how to configure Azure Backup for on-premises servers using the Microsoft Azure Recovery Services (MARS) Agent. This step-by-step tutorial explains Recovery Services Vault creation, agent installation, backup …

Sahil Hulage17 min read
databases

SQL RIGHT JOIN Explained with Syntax, Scenarios & Practical Examples

Learn SQL RIGHT JOIN with syntax, visual explanation, and practical scenarios. Understand how RIGHT JOIN works, how it differs from LEFT JOIN, how NULL values appear, and see multiple real-world examples using MySQL, …

Falguni Thakker18 min read
cheatsheet

grubby Command in Linux: Syntax, Options & Practical Examples

Learn how to use the grubby command in Linux with syntax, options, and practical examples. This guide explains how to list installed kernels, change the default kernel, add or remove kernel boot arguments, and manage …

Deepak Prasad12 min read
cheatsheet

ipcs Command in Linux: Syntax, Options, Cheat Sheet & IPC Monitoring Examples

Learn how to use the ipcs command in Linux with syntax, options, cheat sheet, and practical examples. This guide explains how to view shared memory segments, message queues, and semaphore arrays, inspect IPC resources, …

Rohan Timalsina14 min read
cheatsheet

ip route Command in Linux: Syntax, Examples, Cheat Sheet & Routing Guide

Learn how to use the ip route command in Linux with syntax, cheat sheet, and practical examples. This guide explains how to view routing tables, add and delete routes, configure multiple gateways, troubleshoot routing …

Rohan Timalsina17 min read
cheatsheet

iotop Command in Linux: Syntax, Options, Cheat Sheet & Practical Examples

Learn how to use the iotop command in Linux with syntax, options, cheat sheet, and practical examples. This guide explains how to monitor disk I/O usage by processes, identify applications causing high disk activity, and …

Rohan Timalsina15 min read
cheatsheet

hping3 Command in Linux: Syntax, Options, Cheat Sheet & Practical Examples

Learn how to use the hping3 command in Linux with syntax, options, cheat sheet, and practical examples. This guide explains how to perform packet crafting, port scanning, firewall testing, traceroute analysis, and …

Rohan Timalsina22 min read
cheatsheet

groupadd Command in Linux: Syntax, Options & Practical Examples

Learn how to use the groupadd command in Linux with syntax, options, and practical examples. This guide explains how to create groups, assign custom GIDs, create system groups, manage users in groups, and troubleshoot …

Rohan Timalsina10 min read
cheatsheet

iostat Command in Linux Explained: Syntax, Options, Cheat Sheet & Practical Examples

Learn how to use the iostat command in Linux with syntax, options, cheat sheet, and practical examples. This guide explains how to monitor CPU utilization, disk I/O performance, device throughput, and storage bottlenecks …

Rohan Timalsina16 min read