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 …
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.
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 …
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, …
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.
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 …
Ansible Block and Rescue Advanced Guide: Thank Me Later
We can use ansible block, rescue and always to perform different kinds of error handling where with the rescue block we can perform cleanup action
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 …
How to repeat tasks using ansible loop with examples
Ansible loop is used to iterate over multiple tasks in playbook. It supersedes with_items in Ansible with later version as with_* are deprecated
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 …
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
Working with different Ansible operators
Different ansible operators are arithmetic, logical, comparison and test operator which we can use with ansible playbook.
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 …
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.
A complete guide to write your first Ansible Playbook
Ansible playbooks are rrdered lists of tasks, saved so you can run those tasks in that order repeatedly. Playbooks can include variables as well as tasks.
