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

Helm hooks examples in Kubernetes for beginners

Helm hooks provides a means to hook into events in the release process and take action. Hooks like pre-install can be used to pass configmaps and secrets to the …

By Deepak Prasad · 14 min read · devops

Simple Kubernetes Helm Charts Tutorial with Examples

Kubernetes Helm Charts are package manager used to deploy charts (package). This can contain all type of resources and deploy or un-deploy them instantly. It …

By Deepak Prasad · 14 min read · devops

Integrate Samba with Active Directory (Linux & Windows)

To integrate Samba share with Active Directory we can use winbind to join Linux client with domain controller and use smbclient to access the windows share

By Deepak Prasad · 8 min read · system-administration

9 easy steps to create custom ISO RHEL/CentOS 8

To create custom ISO in RHEL/CentOS 8, create a kickstart file and modify the isolinux.cfg for boot menu. You can also minimze the package list and update …

By Deepak Prasad · 15 min read · linux

6 Tools making Automation Testing easy in Linux

The QA automation testing tools mentioned in this article enable the deployment of tests integrated with the DevOps workflow. They support continuous testing …

By Deepak Prasad · 5 min read · linux

SSH port forwarding | SSH Tunnel (Forward & Reverse)

Configure SSH Port forwarding tunneling between local and remote host in Linux. Example SSH session to forward port 8080 with ssh connection RHEL/CentOS

By Deepak Prasad · 19 min read · linux

Python Concatenate Strings: +, f-strings, join, and +=

Learn how to concatenate strings in Python with +, f-strings, str.join, +=, spaces, mixing variables and numbers, performance in loops, mistakes, and a quick …

By Deepak Prasad · 5 min read · programming

8 simple ways to sort dictionary by value in Python

We can use different methods to sort dictionary by value or keys in Python. With Python 3.7 dictionaries remember the order of items inserted so we can use …

By Deepak Prasad · 6 min read · programming

Steps to expose services using Kubernetes Ingress

Kubernetes Ingress provides a granular mechanism for routing requests into a cluster. Ingress does not replace Services but augments them with capabilities such …

By Deepak Prasad · 9 min read · devops

How to List Disks and Check Disk Type in Linux

Learn how to list disks in Linux and check disk type, HDD or SSD status, transport interface, model, serial number, partition table, and filesystem details with …

By Deepak Prasad · 11 min read · storage

4 practical examples - Python string replace in file

perform find and replace action string in same and different file using Python programming. Pythong string replace in a file using fileinput module.

By Deepak Prasad · 5 min read · programming