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

10+ simple examples to learn python sets in detail

Python sets are collections of unique and unordered items. It implements all the fundamental operations from set theory, like union, intersection, subset tests …

By admin · 9 min read · programming

Python range() Function [In-Depth Tutorial]

Python range() function is a built-in function that generates a list of numbers. This list is mostly used to iterate over using a for loop.

By admin · 13 min read · programming

Python dictionary (15 easy examples with syntax)

Python Dictionary are indexed using keys, which are usually strings. There are two kinds of dictionaries in Python: the default dict, which is unordered, and …

By admin · 13 min read · programming

Python for loop (10 easy examples with syntax)

The Python for loop is also referred to as the for…in loop. This is due to its unique syntax that differs a bit from for loops in other languages. We use range, …

By admin · 14 min read · programming

Ansible Tutorial for Beginners [RHCE EX294 Exam]

This contains a consolidated list of topics from Ansible tutorial to help you go from beginner to pro. Prepare for EX407 Ansible Automation Specialist Exam.

By admin · 2 min read · devops

Working with include and import module in Ansible

We can use Ansible import module to add playbook, tasks from another file into a different playbook. This can help use the same set of tasks across multiple …

By admin · 6 min read · devops

Ansible Tags: Your Shortcut to Smarter Automation

Explore the dynamic world of Ansible Tags to streamline your automation tasks. Our guide delves into the essentials of using tags in Ansible playbooks, offering …

By admin · 12 min read · devops

Use Ansible Handlers Like a PRO: Don't be a Rookie

Handlers are tasks that only run when notified. Each handler should have a globally unique name. Ansible Handlers always run in the order they are defined, not …

By admin · 11 min read · devops

Working with Ansible conditional statements

Control structures are mainly of the following two types Conditional & Iterative. We will cover when, failed_when, changed_when conditions in playbooks

By admin · 9 min read · devops

Working with different Ansible operators

Different ansible operators are arithmetic, logical, comparison and test operator which we can use with ansible playbook.

By admin · 9 min read · devops

Writing Ansible playbook with Visual Studio Code

We can also use virtual studio code editor to write ansible playbooks by using the ansible extension and configuring settings.json. You can use Windows or Linux …

By admin · 3 min read · devops

Getting started with Ansible

What is Ansible? Ansible is an open source tool (with enterprise editions available) developed using Python and runs on Windows, Mac, and UNIX-like systems.

By admin · 2 min read · devops