Skip to Content

understanding user password authentication in Linux The user authentication process in Linux typically involves validating the entered credentials against the stored user information in the /etc/passwd and /etc/shadow files. When a user attempts to log in, they provide a username and password. The system then performs the following steps to authenticate the user: The system …

Read More about 2 ways to check if user account is locked or not in Linux

CIDR stands for Classless Inter-Domain Routing. It is a method used for allocating and routing IP addresses on the Internet. A /24 CIDR, such as 192.168.1.0/24, indicates that the first 24 bits are the network part of the address, leaving the remaining 8 bits for host addresses. Traditionally, IP addresses were divided into different classes, …

Read More about understanding network CIDR /24

Linux is designed to be a multi-user operating system, allowing multiple users to access and utilize the system concurrently. To effectively list the users on a Linux system, two powerful methods come into play: using the “cat /etc/passwd” command and using the the “getent” command. In this article, we’ll explore these methods that allow you …

Read More about 2 ways to list all users in Linux

This article is part of the following series. A Beginner’s Guide to Linux File Permissions 2 ways to check file permissions in Linux 2 ways to change file permissions in Linux   In Linux, file permissions play a crucial role in determining who can access, modify, or execute files and directories. The permissions are typically …

Read More about 2 ways to change file permissions in Linux

A multipath disk, also known as a “multipath device,” is a logical representation of a storage device in a storage area network (SAN) environment that utilizes multiple physical paths. In a multipath configuration, a storage device, such as a disk array or a storage area network (SAN) volume, can be accessed through multiple physical paths. …

Read More about Resize Multipath disk on Linux