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

Password Cracker - John The Ripper (JTR) Examples

John The Ripper (JTR) is one of the most popular password cracking tools available in most Penetration testing Linux distributions like Kali Linux, Parrot OS, …

By admin · 6 min read · security

Python List Comprehension [In-Depth Tutorial]

Python list comprehension allows you to generate this same list in just one line of code. A list comprehension combines the for loop and the creation of new …

By bashiralam · 11 min read · programming

Azure Tags Examples to Organize Resources

Azure tags are name and value pairs which can be assigned to resources in order to mange said resources more efficiently within the Azure cloud.

By sahilhulage · 8 min read · devops

Python Operators Explained in Detail with Examples

There are different Python operators. Arithmetic operators, logic operators, assignment operators, augmented operators, bitwise operators, and two special kinds …

By bashiralam · 19 min read · programming

Install MariaDB on Rocky Linux 8.4 [Step-by-Step]

In this tutorial, we will learn how to install MariaDB on Rocky Linux 8.4. You may also check the mariadb page link for the official instructions to install

By admin · 5 min read · linux

Python map() function explained with examples

The python map function is a Python built-in function that allows us to iterate over iterable without using explicitly any loop

By bashiralam · 14 min read · programming

Python lambda function - with simple examples

Python Lambda is also known as an anonymous function because of its anonymous behavior. It can take any number of arguments but only one expression.

By bashiralam · 11 min read · programming