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

Steps to install Kubernetes Cluster with minikube

Deploy single node Kubernetes Cluster using minikube using Oracle VirtualBox on Windows environment. The cluster node will be on Ubuntu Linux.

By Deepak Prasad · 6 min read · devops

How to limit Kubernetes resources (CPU & Memory)

We can add a limit (quota) to different Kubernetes resources such as CPU, memory, hugepages for containers. We can restrict a soft and hard limit to these …

By Deepak Prasad · 7 min read · devops

Beginners guide to learn Kubernetes Architecture

Kubernetes Cluster Architecture contains a controller (master) and worker node. There are three main components in the Kubernetes Cluster i.e. Nodes, Pods and …

By Deepak Prasad · 10 min read · devops

4 ways to SSH & SCP via proxy (jump) server in Linux

You can use either ProxyCommand or ProxyJump with ssh and scp respectively to connect target host or transfer files through any jump host with examples.

By Deepak Prasad · 4 min read · system-administration

Python enumerate() Function

Learn Python enumerate() with simple for loop examples. Use enumerate() to get index and value while looping through lists, strings, tuples, dictionaries, and …

By Deepak Prasad · 6 min read · programming

5 simple examples to learn python string.split()

Python split string using string.split() function. Split strings using for loop in one liner. python split string by space. python split string by comma

By Deepak Prasad · 5 min read · programming

10+ simple examples to learn Python functions in detail

Python functions provide a way to compartmentalize your code into small tasks that can be called from multiple places within a program. The three main types of …

By Deepak Prasad · 11 min read · programming