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
  • 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
  • System Administration: User management, services, and system-level tasks
  • Tools: Useful tools and utilities for productivity
  • Cheat Sheet: Quick reference guides for commands and tools
  • Interview Questions: Common interview questions with answers

2076 articles

How to add label to running pod in Kubernetes

There are two methods to add label to running pod in Kubernetes. Using kubectl label pods or kubectl edit command to edit a resource object.

By admin · 6 min read · devops

Kubernetes sidecar container examples

In the Kubernetes space, the container providing helper functionality is called a sidecar container. It lives alongside the main application container within …

By admin · 4 min read · devops

5 effective ways to unlock user account in Linux

How to unlock the password for user account in Linux. If an account is locked due to login failure then use pam_tally2 or pam_fallock to unlock user account.

By admin · 9 min read · linux

OpenSSL: Generate ECC Certificates for Apache Server

Elliptic Curve Cryptography (ECC) is an encryption technique that provides public-key encryption similar to RSA. We can generate ECC certificates using openssl …

By admin · 9 min read · security

10 simple ways to sort dictionary by key in Python

After Python 3.6, now dictionary can remember the order in which items are added. So we can easily sort dictionary by key using sorted() and many other modules …

By admin · 7 min read · programming

Python while loop examples for multiple scenarios

python while loop, python while loop example, python exit while loop, nested while loops python, how to end a while loop in python, python infinite while loop, …

By admin · 10 min read · programming