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
  • Cloud: AWS, Azure, OpenStack, and hybrid cloud administration
  • 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

2342 articles

Blog illustration with latest articles, tutorials, guides, and how-to content across Linux and DevOps topics
programming

How to use Node.js with Sublime Text IDE

Step by Step instructions to use node.js with sublime text IDE. Install Node.Js and Sublime Text IDE for the Integration.

Steve Alila5 min read
devops

Weather Data Made Easy: Mastering API Integration for Developers

Weather information is vital in our daily lives, from planning outdoor activities to making informed decisions in sectors like agriculture, transportation,

Deepak Prasad7 min read
devops

Install ELK stack on Rocky Linux 8

Step by step instructions to install ELK Stack on Rocky Linux. Install Elasticsearch, Logstash and Kibana

Deepak Prasad7 min read
linux

Setup Grafana with Prometheus Rocky Linux 8

In this guide, we shall setup Grafana with Prometheus on Rocky Linux 8, we will use Grafana instance on the same server so that we can visualize metrics populated by the Prometheus service.

Deepak Prasad8 min read
devops

Create Pod Security Policy Kubernetes [Step-by-Step]

Step by step instructions to create pod security policy in Kubernetes. Verify securitycontext and linux capabilities with pod security policy

Deepak Prasad11 min read
linux

How to Enable Wake-on-LAN in Ubuntu 22.04? [SOLVED]

In this article we will tell you how to enable Wake-on-LAN in Ubuntu and example usage.

Omer Cakmak4 min read
cheatsheet

How to PROPERLY rename Logical Volume

Step by step instructions to rename logical volume i.e. both root and non- root. Update fstab, grub2 and generate initramfs to make sure the server reboots properly after renaming.

Rohan Timalsina9 min read
devops

Writing Ansible playbook with Visual Studio Code

We can also use virtual studio code editor to write ansible playbooks by using the ansible extension and configuring settings.json. You can use Windows or Linux with VSC

Deepak Prasad3 min read
system-administration

Create KVM virtual machine | virt-manager | RHEL CentOS 8

Step-by-Step Guide to create KVM Virtual Machine using Virtual Manager in RHEL and CentOS 8 Linux. Create VM, Take Snapshot, Assign Networks using Virtual manager GUI

Deepak Prasad6 min read
linux

How to properly remove old kernels RHEL/CentOS 8

You can now use dnf command to remove old kernels from RHEL/CentOS 8 Linux. package-cleanup doesn't work any more. Use oldinstallonly with installonly_limit

Deepak Prasad5 min read
devops

Ansible Installation Guide on RHEL/CentOS 8

There are different methods using which you can install ansible using default package manager such as yum, dnf, apt, Using pip and using source compile file

Deepak Prasad3 min read
linux

Install MongoDB on AlmaLinux 8 [Step-by-Step]

Step by Step instructions to install mongodb on AlmaLinux 8. Access mongodb shell, create admin user, establish a connection with mongodb server using a different client. configure firewall and selinux

Deepak Prasad5 min read
linux

Could not resolve host: mirrors.rockylinux.org

3 possible solutions to Could not resolve host: mirrors.rockylinux.org and Failed to connect to mirrors.rockylinux.org port 443: Connection timed out

Omer Cakmak6 min read
linux

Install Rancher on Rocky Linux 9 [Step-by-Step]

Step by step instructions to install rancher on Rocky Linux 9 with screenshots.

Omer Cakmak6 min read
linux

Complete tutorial on tmux commands with examples from scratch

In this tutorial I will cover the basics of tmux from scratch using various tmux commands to create session, windows, splitting panes, killing session etc

Deepak Prasad13 min read
system-administration

3 simple and useful tools to grep multiple strings in Linux

How to grep multiple strings and patterns in single line from a file in Linux or Unix? Is it possible to grep multiple strings using single command from a file?

Deepak Prasad10 min read
linux

Install DVWA on Kali Linux (Step-by-Step)

Step by step instructions to install DVWA in Kali Linux with screenshots.

Deepak Prasad7 min read
security

Install Node.js and NPM Kali Linux

Step by Step instructions to install node.js and npm on kali linux with screenshots. Two different methods to install node.js and NPM using default repository and official archive

Deepak Prasad5 min read
cheatsheet

10+ lzop command examples in Linux [Cheat Sheet]

File compression is a process in which the file or group of files is compressed into a single archive file to reduce the size. It is used to store or share

Rohan Timalsina5 min read
cheatsheet

10+ xz command examples in Linux [Cheat Sheet]

The syntax for xz command is as follows:

Rohan Timalsina6 min read
cheatsheet

5+ lvdisplay command examples in Linux [Cheat Sheet]

In this tutorial we explore lvdisplay command which is used to display the logical volume status and many other details such as name, UUID, status, size etc

Rohan Timalsina4 min read
linux

Remove Directory in Linux PROPERLY & SAFELY

In this tutorial I have shared the commands and examples to remove directory in Linux properly without loosing any data. Delete directories and sub directories using single command with and without regex

Deepak Prasad5 min read
cheatsheet

15+ rpm command examples in Linux [Cheat Sheet]

rpm command in Linux is used to manage packages. Install, upgrade and remove packages with or without dependencies. Verify rpm packages

Rohan Timalsina6 min read
cheatsheet

15+ scp command examples in Linux [Cheat Sheet]

Use scp command in linux to transfer files securely from one host to one or more remote hosts in Linux. Tutorial Cheat sheet to use scp command

Rohan Timalsina11 min read
cheatsheet

15+ SSH command examples in Linux [Cheat Sheet]

ssh command in Linux (SSH client) is a program for logging into a remote machine and for executing commands on a remote machine.

Rohan Timalsina7 min read
cheatsheet

20 sar command examples in Linux [Cheat Sheet]

Complete cheat sheet with examples to use use sar command to view reports about CPU utilization, memory utilization, I/O usage, swapping statistics, filesystems statistics, network statistics, etc

Rohan Timalsina10 min read
cheatsheet

15+ tar command examples in Linux [Cheat Sheet]

Create and extract any archive using tar command. List content of an archive, exclude files, create bzip2 or gzip archive using tar command in Linux

Rohan Timalsina6 min read
programming

SOLVED: Get script directory path in Node.js

Node.js get script directory, node.js get current directory, node.js get absolute path, node.js get absolute directory path

Steve Alila5 min read
programming

How to setup Laravel in Docker? [2 Methods]

It would help to know Laravel, Docker, and Linux basics.- In this article, we will explore how to setup Laravel in Docker using two different methods:

Steve Alila12 min read
programming

HackerRank Solution: Python Capitalize!

In this tutorial we will cover following solutions for hacker rank problem capitalize in python Solution-1: Using for loop, Solution-2: Using a user- defined function, Solution-3: Using .join() method, Solution-4: Using …

Bashir Alam5 min read