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

[SOLVED] Define GO function with multiple types

We can either use an empty interface using interface{} or use generics to define golang function accept two types or multiple types as an input.

By tuannguyen · 4 min read · programming

Why Application Support Services is Important

Information technology is currently at the center of driving business growth and performance hence the need to implement them. However, businesses may not

By admin · 5 min read · devops

Golang Context Complete Tutorial with Examples

The golang context package is part of the standard library. It defines a Context struct type and three functions— withDeadline(), withCancel(), and …

By admin · 9 min read · programming

[SOLVED] Upload file to Linux server from Windows

3 different methods to upload file to Linux server from Windows. Using SCP or PSCP CLI tool, or Using WinSCP and/or FileZilla which are GUI based tool

By omercakmak · 5 min read · system-administration

[SOLVED] Restrict FTP user to a directory in Linux

Use chroot_local_user to restrict FTP user to a directory in vsftpd.conf in Linux. You can specify the directory name and path which acts as home directory for …

By omercakmak · 6 min read · system-administration

How to PROPERLY write multiline strings in GO?

How to declare golang multiline string. Declare a multiline string with and without special characters and escape characters used for new line or Tab delimiter. …

By tuannguyen · 4 min read · programming

Getting started with CGO using Visual Studio Code

Getting started with cgo language. How to use it with Visual Studio Code. Calling C code with GO or calling GO code with C. Create Hello World cgo code.

By admin · 9 min read · programming

SOLVED: How to reverse sort slice of integer in GO

There are two methods to sort slice of integer in reverse or descending order. To sort in descending order, you have to implement the sort.Interface interface …

By tuannguyen · 3 min read · programming