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
Golang string to uint8 type casting [SOLVED]
We can use strconv.Atoi, fmt.Sscan, and strconv.ParseInt functions for golang string to uint8 type casting.
println JS alternative available? [SOLVED]
The alternative of java println in javascript is console.log()
What the Hell is Golang Anonymous Structs? How to Use it?
Explore the dynamic world of Golang Anonymous Structs! Dive into this insightful guide to uncover powerful strategies, avoid common pitfalls, and harness the …
How to install Issabel PROPERLY [Step-by-Step]
Step by step instructions to install Issabel with screenshots in Linux
[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.
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
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 …
[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
[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 …
Set GOPATH Variable in Linux & Windows PROPERLY
Steps to modify or set GOPATH variable in go env in both Linux and Windows. Make the changes permanent (persistent)
Golang power calculation using math.Pow() function
Calculate the power of integers and float number using math.pow() function and other possible methods.
Golang string interpolation Explained [With Examples]
The golang string interpolation can be done using different fmt packages such as Printf(), Sprintf(). Fprintf() and Errorf()
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. …
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.
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 …
