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

How to slice dictionary in Python? [SOLVED]

In this article, we will see one of the most asked and confusing problems: slicing a dictionary in Python. Slicing a dictionary means obtaining the subsets of

By admin · 4 min read · programming

How to get current directory in Golang? [SOLVED]

There are 4 different methods to get current directory in golang. Method-1: The os package and Executable() function Method-2: file/filepath and the Abs() …

By tuannguyen · 4 min read · programming

How to make Golang POST JSON request? [SOLVED]

In the previous chapter, we have shown you some examples of working with the HTTP server and client in Golang. The built-in package net/http in Go provides

By tuannguyen · 4 min read · programming

How to install AWS CLI on Ubuntu? [SOLVED]

AWS CLI (AWS Command Line Interface) is a unified tool you can use to manage your AWS services. With the AWS CLI, you can control multiple AWS services from

By omercakmak · 3 min read · linux

/etc/network/interfaces missing in Ubuntu [SOLVED]

If you are using Ubuntu, you must have encountered the "/etc/network/interfaces missing" error. Because Ubuntu 18.04 and above uses netplan to configure your

By omercakmak · 4 min read · linux

Perform VNC Brute Force Attack [100% Working]

In this guide, I will illustrate ways a bad actor may perform a VNC brute force attack to gain access and control a target computer.

By kennedymuthii · 5 min read · security

How to turn html body tag into string in GO? [SOLVED]

In order to make the string printable as plain text, we need to strip the string of its tags. In today's post, we will examine some methods to convert HTML to

By tuannguyen · 4 min read · programming

Golang cobra Tutorial [With Examples]

Golang is a perfect programming language for creating CLI applications. In today's post, I will introduce you Cobra - a library for creating powerful modern

By tuannguyen · 8 min read · programming

How to multiply duration by integer in GO? [SOLVED]

In this tutorial, we will walk through some examples of converting int to time.Duration and doing some operations (division, multiply) with it. The built- in

By tuannguyen · 3 min read · programming