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

Git rm Command Explained (Remove Files, Undo & --cached Examples)

Learn how to use the git rm command with practical examples. This guide covers removing files and folders, git rm vs rm differences, git rm --cached usage, undoing git rm, and handling real-world scenarios safely without …

Steve Alila8 min read
devops

How to Rename File or Directory in Git (git mv Explained)

Learn how to rename a file or directory in Git using git mv and other methods. This guide covers renaming files, folders, and directories with practical examples, preserving history, handling case sensitivity issues, and …

Deepak Prasad7 min read
devops

Git Restore Explained with Examples (Files, Staged, Undo Changes)

Learn how to use git restore command with practical examples. Understand how to restore files, undo changes, unstage files using git restore --staged, and compare git restore vs reset vs checkout. Includes syntax, use …

Deepak Prasad8 min read
devops

Git Reset Explained (Soft vs Mixed vs Hard) with Examples

Learn Git reset with practical examples including soft, mixed, and hard reset. Understand the differences, use cases, and how git reset affects the working directory, staging area, and commit history. Fix common errors …

Deepak Prasad9 min read
cheatsheet

Pacman Command in Arch Linux: Install, Update, Remove & Examples (2026 Guide)

Learn how to use pacman command in Arch Linux with practical examples and cheat sheet. Install, update, remove packages, and understand pacman usage for efficient package management.

Deepak Prasad5 min read
cheatsheet

Paste Command in Linux: Examples, Use Cases & Cheat Sheet (2026 Guide)

Learn how to use the paste command in Linux with practical examples and real-world use cases. Understand how to merge files, use delimiters, and compare paste vs copy-paste in terminal with a quick cheat sheet.

Deepak Prasad4 min read
cheatsheet

ip Command in Linux: Add IP, Configure Routes & Network Interfaces (Examples)

Learn how to use the ip command in Linux with practical examples. Add IP addresses, configure routes, manage interfaces, and troubleshoot network issues using ip addr, ip link, and ip route.

Deepak Prasad5 min read
cheatsheet

How to Use lbzip2 on Linux

Learn how to use lbzip2 command in Linux with practical examples. Install lbzip2 on Ubuntu, compress/decompress files, use multithreading, and fix common errors like tar lbzip2 not found.

Deepak Prasad4 min read
linux

How to Check CPU Usage in Linux (Top, htop, vmstat & More)

Learn how to check CPU usage in Linux using top, htop, vmstat, mpstat, sar, and ps commands. Monitor CPU utilization, load, and processes in real-time with practical examples.

Deepak Prasad10 min read
programming

Fix "Setting an Array Element with a Sequence" in Python (NumPy ValueError Explained + Examples)

Learn how to fix the "ValueError: setting an array element with a sequence" in Python and NumPy. Understand inhomogeneous shape errors, causes, real examples, and step-by-step solutions to resolve array shape mismatch …

Azka Iftikhar4 min read
cheatsheet

wget Command in Linux (Syntax, Examples, Cheat Sheet + Interview Questions)

Master the wget command in Linux with syntax, examples, options, and a quick cheat sheet. Includes real-world use cases and wget interview questions for quick revision.

Deepak Prasad8 min read
programming

npm run pass arguments (with & without --) – Complete Guide + Examples

Learn how to pass arguments to npm scripts using double dash (--) and without it. Includes real examples, npm_config usage, environment variables, and best practices for Node.js scripts.

Steve Alila4 min read
system-administration

How to Clear System Storage on Mac Using Terminal (Advanced Guide)

Learn how to clear system storage on Mac using terminal commands. This advanced guide covers disk usage analysis, cache cleanup, log removal, and troubleshooting system data taking excessive space on macOS.

Deepak Prasad5 min read
programming

Hexagonal Architecture in Golang: Project Structure, Example & Best Practices

Learn Hexagonal Architecture in Golang with a real-world example, project structure, and best practices. Understand ports and adapters, dependency flow, testing strategies, and when to use this architecture in Go …

Antony Shikubu15 min read
devops

[SOLVED] Unable to Delete Docker Image (Image Has Dependent Child Images)

Learn how to fix the Docker error "unable to delete image (cannot be forced) - image has dependent child images". This guide explains why the error occurs, how Docker image dependencies work, and step-by-step solutions …

Deepak Prasad4 min read
devops

Docker Build Without Cache (docker build --no-cache Explained)

Learn how to build Docker images without using cache using the docker build --no-cache option. This guide explains when to disable cache, how Docker layer caching works, and provides practical examples for DevOps …

Deepak Prasad4 min read
cheatsheet

100+ Linux Commands Cheat Sheet (With Practical Examples)

A complete Linux commands cheat sheet with 100+ essential commands and practical examples. Learn file management, system monitoring, networking, permissions, and DevOps-related Linux commands used by administrators, …

Deepak Prasad13 min read
devops

How to Find and Remove Unused Docker Containers (5 Safe Methods + Best Practices)

Learn how to find and remove unused Docker containers using safe and practical methods. Compare docker rm, docker container prune, filters, and automation techniques with real-world examples for production and …

Deepak Prasad6 min read
devops

Run Multiple Commands in Docker Compose (4 Methods + Examples & Best Practices)

Learn how to run multiple commands in Docker Compose using 4 practical methods including &&, multiline scripts, shell scripts, and Supervisor. Understand execution order, failure handling, and best practices with …

Deepak Prasad5 min read
devops

Stop All Docker Containers (4 Easy Methods + Examples & Best Practices)

Learn how to stop all Docker containers using multiple methods including docker stop, docker kill, and filtered commands. Understand differences, safe practices, and real-world use cases with examples.

Deepak Prasad3 min read
devops

Docker .dockerignore Explained (Best Practices + Examples to Optimize Builds)

Learn how to use .dockerignore to optimize Docker builds by excluding unnecessary files. Improve build speed, reduce image size, and follow best practices with real-world examples.

Deepak Prasad4 min read
devops

Rename Docker Container (3 Easy Methods with Examples & Best Practices)

Learn how to rename a Docker container using simple commands with practical examples. Understand how docker rename works, when to use it, and best practices for managing container names.

Deepak Prasad3 min read
devops

Docker Logout Explained (How to Logout from Registry + Best Practices)

Learn how to logout from Docker registry using the docker logout command. Understand how credentials are stored, when to logout, and best practices for securing Docker authentication.

Deepak Prasad2 min read
devops

Git Push Explained: Syntax, Examples, Errors & Best Practices

Learn how to use git push with practical examples. Understand git push syntax, push branches, tags, and fixes for common errors like rejected push and force push safely.

Deepak Prasad11 min read
devops

Git Workflow Explained: Lifecycle, Diagram, Steps & Examples

Learn Git workflow with lifecycle, diagram, steps, and examples. Understand Git process flow, file lifecycle, and commands like add, commit, and push in a beginner-friendly guide.

Deepak Prasad5 min read
devops

Git Pull --Rebase Explained: Examples & When to Use

Learn how to use git pull --rebase with examples. Understand the difference between git pull and git pull --rebase, when to use rebase, and how to keep a clean commit history without merge commits.

Steve Alila4 min read
devops

Git Pull Force Explained: Safely Overwrite Local Changes (Step-by-Step)

Learn how to force git pull safely to overwrite local changes. Understand git pull force alternatives using fetch, reset, and stash with real examples to avoid data loss and conflicts.

Steve Alila4 min read
devops

Git Pull Explained: Commands, Examples, Rebase & Safe Usage Guide

Learn how to use git pull with practical examples. Understand git pull, git pull origin, git pull --rebase, conflict handling, and safe workflows to update your repository efficiently.

Steve Alila6 min read
devops

Git Prune Explained: fetch --prune, gc & Safe Cleanup Guide

Learn how to use git prune safely along with git fetch --prune and git gc. Understand what git prune does, when to use it, and how to clean up your repository with practical examples and best practices.

Steve Alila7 min read
devops

Git Merge vs Rebase: Differences, Use Cases & When to Use Each

Understand the difference between git merge and git rebase with clear examples. Learn when to use merge vs rebase, fast-forward vs rebase workflows, and avoid common mistakes with this decision-focused guide.

Steve Alila5 min read