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
  • Tools: Useful tools and utilities for productivity

2233 articles

Python Concatenate Lists

Learn how to concatenate, combine, and merge lists in Python using the + operator, extend(), +=, unpacking, itertools.chain(), and list comprehension, with …

By Deepak Prasad · 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 Deepak Prasad · 10 min read · programming

Python Numbers | Integers | Float | Complex Number

In this tutorial we learn about Python integers, python numbers with examples. What is an integer in Python. WHat are numbers in Python programming.

By Deepak Prasad · 6 min read · programming

Install Kubernetes on Ubuntu 24.10 [Step-by-Step]

In this tutorial we will share step by step instructions to install Kubernetes on Ubuntu 24.10 using containerd container runtime and Calico CNI. We will be

By Deepak Prasad · 10 min read · devops

How to perform kubernetes health check using probes

Kubernetes performs three layer of health checks using probes. You can use readiness, liveness or startup probes with tcpget, exec and httpget methods.

By Deepak Prasad · 15 min read · devops

kubectl port-forward examples in Kubernetes

Use kubectl port-forward to Pods if you need to directly communicate from your local machine to a given port on the Pod. This is achieved without manually …

By Deepak Prasad · 7 min read · devops

How to Renew Expired Root CA certificate with OpenSSL

Technically you can't renew expired root CA certificate instead you can create a new root ca certificate using private key with openssl. The new root CA …

By Deepak Prasad · 6 min read · security

Helm hook-weight examples to order Jobs in Kubernetes

You can use the helm.sh/hook-weight annotation to hook resources that need to be created in a specific order. This weight can be any positive or negative …

By Deepak Prasad · 7 min read · devops