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

Git Revert Command Explained (9 Practical Examples)

Learn how to use the git revert command with practical examples. This tutorial explains git revert syntax, reverting specific commits, multiple commits, merge …

By Steve Alila · 16 min read · devops

Python Delete File

Learn how to delete a file in Python using pathlib Path.unlink(), os.remove(), and os.unlink(), including delete-if-exists examples, error handling, and …

By Bashir Alam · 6 min read · programming

Install Kali Linux on Raspberry Pi

Step by Step instructions to install and setup Kali Linux on Raspberry Pi 2,3 and 4 with screenshots.

By Deepak Prasad · 5 min read · security

Python filter() function Usage [10+ Examples]

python filter, python filter list, python filter function, filter list, list filter, python filter array, python3 filter, filter example, python array …

By Bashir Alam · 15 min read · programming

Python Multiline Comments [Methods & Examples]

Python does not support multiline comments but does have docstring. We can achieve multiline comments in python by writing consecutive single line comments.

By Bashir Alam · 8 min read · programming

Python Reverse String Examples [5+ Methods]

python reverse string, how to reverse a string in python, how to reverse string in python, how to reverse a string python, python how to reverse a string, …

By Bashir Alam · 9 min read · programming

SQL LIKE | SQL NOT LIKE | SQL LIKE WILDCARD Examples

SQL like comparison operator is used to compare or to manipulate text with regular expression. There is a condition where we need to fetch records which do not …

By Falguni Thakker · 9 min read · databases

Git Pull --Rebase Explained: Examples & When to Use

Learn how to use git pull --rebase with examples. Understand the difference between git pull and git pull --rebase, when to use rebase, and how to keep a clean …

By Steve Alila · 4 min read · devops

Python List pop() Method: Remove and Return Items

Learn how Python list pop() removes and returns items by index, defaults to the last item, handles pop(0), raises IndexError, and compares with remove(), del, …

By Bashir Alam · 9 min read · programming

Python Class Example

Learn Python classes with simple examples to create a class, create objects, use __init__ and self, define attributes and methods, class variables, inheritance, …

By Bashir Alam · 7 min read · programming