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

2329 articles

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

15+ ping command examples in Linux [Cheat Sheet]

ping command is one of the most used commands in Linux. It is mostly used to check the connectivity between local and remote server. In most cases ICMP traffic is not impacted by firewall so this is very much reliable. …

Rohan Timalsina5 min read
cheatsheet

25 ps command examples in Linux [Cheat Sheet]

25 ps command examples used in Linux to monitor the running processes. Complete cheat sheet of ps command with practical examples.

Rohan Timalsina9 min read
cheatsheet

10+ lvcreate command examples in Linux [Cheat Sheet]

lvcreate command is used to create different types of Logical Volumes in Linux. You can create linear, striped, mirrored logicla volumes. You can also create snapshot volumes used for backup and restore purpose.

Rohan Timalsina8 min read
cheatsheet

10+ lvchange command examples in Linux [Cheat Sheet]

lvchange command allows you to change attributes of a logical volume in the volume group. You can perform different operations such as activate/deactivate, change access permission and set/reset contiguous allocation …

Rohan Timalsina5 min read
cheatsheet

lvremove command examples in Linux [Cheat Sheet]

lvremove command is used to remove a logical volume from a volume group in Linux

Rohan Timalsina3 min read
cheatsheet

5+ lvscan command examples in Linux [Cheat Sheet]

lvscan command scans for all logical volumes in the Linux system and lists them. It displays the status, path, size, and allocation policy in one line per

Rohan Timalsina6 min read
programming

Golang Testing Examples | How to test GO Code?

Step by Step instructions to understand golang testing and write unit tests in go code.

Antony Shikubu8 min read
databases

How to combine rows into one string in SQL

We have covered an overview of combine string rows, list out all three methods of combining rows into one string which are using COALESCE, USING XML PATH, and using string_AGG methods

Falguni Thakker6 min read
security

Wordlist Generator using Crunch

Use crunch as wordlist generator or generating password strings for brute force attacks

Kennedy Muthii5 min read
linux

How to install ARPACK in Linux?

Step by Step instructions to install ARPACK on RedHat, Arch and Debian based Linux distribution.

Omer Cakmak4 min read
linux

How to modify smbd process limit in Linux? [SOLVED]

We can use max smbd processes parameter in smb.conf to modify smbd process limit in Linux

Omer Cakmak4 min read
databases

Select duplicate records in SQL table [SOLVED]

In this article of select duplicate records in SQL, we have covered an overview of SQL duplicate records, steps to select duplicate records in SQL , why to

Falguni Thakker5 min read
databases

SQL INNER JOIN Explained with Simple Examples

The SQL INNER JOIN clause allows you to query data from multiple tables. It returns all rows from Table1, Table2, and Table 3 so on with exact matching rows from all tables.

Deepak Prasad12 min read
databases

SQL Date Functions Explained with Practical Examples

Different types of SQL Date Functions explained with examples. Some SQL Date Functions are similar in most database management systems. Few SQL Date Functions like CURDATE() and GETDATE() does the same functionality but …

Deepak Prasad13 min read
databases

SQL CREATE TABLE Statement with Practical Examples

Data stored in the database is logically stored in data tables, using SQL Create Table statement we can create data tables in the database management system

Falguni Thakker8 min read
databases

SQL GROUP BY Statement Explained with Practical Examples

The GROUP BY clause is part of SQL SELECT statement. Optionally it is used in conjunction with aggregate functions to produce resulting group of rows from the database. SQL GROUP BY clause is placed after the WHERE …

Falguni Thakker8 min read
databases

SQL LIKE | SQL NOT LIKE | SQL LIKE WILDCARD Examples

SQL like comparison operator is used to compare or to manipulate text with regular expression. There is a condition where we need to fetch records which do not match with pattern, in such situation we need to use SQL NOT …

Falguni Thakker9 min read
databases

SQL SUBSTRING Function Explained

SQL mainly provides three truncate functions which are working with string. SQL Substring Function, SQL Left Function, SQL Right Function

Falguni Thakker10 min read
databases

SQL Server COALESCE Function with Practical Examples

The SQL Server Coalesce() function is a basic SQL function which is used to evaluate the list of values and return the first occurrence of non-NULL value. The SQL Server Coalesce and IsNull functions both are used to …

Falguni Thakker8 min read
databases

SQL COUNT, AVG, SUM Functions | Aggregate Functions in SQL

SQL COUNT, AVERAGE and SUM are most commonly used aggregate functions of SQL.

Falguni Thakker9 min read
databases

SQL Union Operator Explained [Easy Examples]

SQL Union Operator or clause is a one of the SQL Set operators which is used to merge or combine two or more SQL Select Query results into single result set.

Falguni Thakker8 min read
databases

SQL Left Join Multiple Tables [Easy Examples]

Examples to use SQL LEFT JOIN Multiple tables. In SQL Left join, if a specific row is present in the left table but not in the right, the result will include this row but with a NULL value in each column from the right. …

Falguni Thakker8 min read
databases

SQL NOT NULL Constraint Explained [Easy Examples]

The SQL NOT NULL constraint on an attribute or column specifies that the NULL value is not allowed for that attribute, in other word, the constraint in SQL excludes the null value from the domain of that column values.

Falguni Thakker6 min read
databases

Concat SQL Function Explained [Practical Examples]

Concat SQL function is used to concatenate strings. difference between SQL concat and SQL concat_ws.

Falguni Thakker8 min read
databases

SQL WITH Clause Explained

The SQL WITH clause allows you to give the name to the output of referenced in subsequent queries, this process is interchangeably called as common table expression (CTE) or sub-query refactoring,

Falguni Thakker9 min read
databases

SQL DISTINCT Explained [Practical Examples]

SQL Distinct with SQL select statement, on one column and on multiple columns, difference between SQL Distinct and Group By clause and SQL Distinct with SQL Unique constrain and SQL distinct with Order By has explained …

Falguni Thakker8 min read
databases

SQL BETWEEN Explained with Practical Examples

SQL between syntax and examples. Using with update and delete statement. SQL NOT between examples and syntax, SQL Between Range with Numeric values

Falguni Thakker8 min read
databases

SQL Replace Function Explained

SQL REPLACE performs comparisons based on the collation of the input. To perform a comparison in a specified collation, you can use COLLATE to apply an explicit collation to the input

Falguni Thakker8 min read
databases

SQL RANK Function Explained

Practical examples of SQL RANK function with a single table, multiple tables, with partition argument and ORDER BY ASC and DESC, also mention an example of SQL RANK Function with Where a condition

Falguni Thakker10 min read
databases

SQL If Statement Tutorial [Practical Examples]

practical examples to use sql if statement explained. Use multiple if conditions, sql if else condition, sql nested if else condition with examples

Falguni Thakker8 min read