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
- 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
2257 articles
Python Set add() Explained (Add Elements, Multiple Items, Common Mistakes)
Learn how to add elements to a set in Python using add() and update() methods. This guide covers adding single and multiple elements, handling duplicates, …
programmingPython Compare Strings (==, Ignore Case, Substring, Examples)
Learn how to compare strings in Python with practical examples. This guide covers string equality, case-insensitive comparison, substring matching, …
programmingPython floor() Function Explained (math.floor, Examples, vs int & round)
Learn how to use floor() in Python with practical examples. Understand math.floor(), differences between floor vs int vs round, handling negative numbers, …
devopsHow to Delete a Repository in GitHub (Step-by-Step Guide)
Learn how to delete a repository in GitHub using both the web interface and command line. This guide explains how to remove GitHub repositories, delete …
devopsHow to Unstage Files in Git (Without Losing Changes)
Learn how to unstage files in Git using git restore, git reset, and git rm commands. This guide explains how to remove files from the staging area, undo …
devopsGit Switch vs Checkout Explained (How to Switch Branch in Git)
Learn how to use git switch to change branches in Git. This guide explains git switch vs git checkout, switching branches, creating new branches, commands, …
devopsGit Show Command Explained (View Commit Details, Diff & Files with Examples)
Learn how to use git show to view commit details, file changes, and diffs. This guide explains git show command usage, examples, viewing specific commits, …
devopsGit Stash Explained (Save Local Changes Without Commit + Examples)
Learn how to use git stash to save local changes without committing. This guide covers git stash commands, examples, applying and popping stashes, listing …
devopsGit Tag Explained (Create, Push, Delete & Best Practices)
Learn how to use git tag to create, list, push, delete, and manage tags in Git. This guide covers tagging concepts, version tagging, commands, examples, …
devopsHow to Squash Commits in Git (Combine, Clean History, Before & After Push)
Learn how to squash commits in Git using rebase and merge. This guide covers combining commits, squashing last N commits, squashing all commits in a …
devopsGit Set Upstream Explained (origin vs upstream + Fix Errors + Examples)
Learn how to set upstream in Git with practical examples, fix common errors like no upstream branch, and understand origin vs upstream. This guide covers …
devopsGit 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, …
devopsHow 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 …
devopsGit 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 …
devopsGit 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 …
cheatsheetPacman 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 …
cheatsheetPaste 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 …
cheatsheetip 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 …
cheatsheetHow 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 …
linuxHow 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 …
programmingFix "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 …
cheatsheetwget 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 …
programmingnpm 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 …
system-administrationHow 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 …
programmingHexagonal 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, …
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, …
devopsDocker 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 …
cheatsheet100+ 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, …
devopsHow 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 …
devopsRun 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 …
