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

Move content to another Git Repo and Preserve History

It is easy to move content from one git repo to another by following straightforward steps. It starts by understanding the key commands needed in the process.

By Steve Alila · 4 min read · devops

Find merge point of two lists in Java

In this article we explored three different methods which can be used in Java to find merge point of two lists i.e Brute Force Approach, Marking Node as visited …

By Deepak Prasad · 8 min read · programming

How to use AAA with Network Policy Server (Part 1)

Network Policy Server (NPS) is the Microsoft implementation of a Remote Authentication Dial-in User Service (RADIUS) server and proxy. A RADIUS server provides …

By Celal Dogan · 6 min read · networking

How to convert List to Map in Java

In this tutorial, we covered three different approach to convert List to Map in Java i.e Using the put() method, Collectors.toMap() method and …

By Deepak Prasad · 14 min read · programming

Analyze phishing email using Thephish [100% Working]

In this tutorial we shared step by step instructions to analyze phishing email using ThePhish which uses other open source yet powerful tools (MISP, Cortex and …

By Kennedy Muthii · 5 min read · security

SQL TOP Explained

SQL TOP clause is used to limit the records returned as the result set of SQL select query by specified number of rows or percentage of rows in SQL Server.

By Falguni Thakker · 8 min read · databases

4 programs that shows how Java global variables work

A Java global variable is a variable that is declared outside a method or at the start of a code is a global variable, there are no access restrictions on a …

By Azka Iftikhar · 6 min read · programming

How to make HTTP GET Request in Node.js

In NodeJS, several methods that provide the functionalityto make HTTP GET request from the http module provided in the standard library. While the HTTP module …

By Steve Alila · 5 min read · programming