Understanding Linux Capabilities for Privilege Management

Introduction to Capabilities Traditional UNIX privilege checks divide processes into two categories: privileged processes (effective user ID 0, known as superuser or root) and unprivileged processes (effective UID non-zero). Privileged processes bypass all kernel permission checks, while unprivileged processes undergo full permission checks bas ...

Posted on Mon, 18 May 2026 07:23:20 +0000 by renno

Understanding Nginx Installation Directories and Compilation Parameters

Nginx Installation Directory Structure To view all files installed by the Nginx package, execute the following command: rpm -ql nginx The output includes configuration files, log files, and executable binaries. /etc/logrotate.d/nginx Type: Configuration file Purpose: Configures log rotation for Nginx using the logrotate service, enabling auto ...

Posted on Sun, 10 May 2026 22:26:22 +0000 by canadian_angel

Comprehensive Guide to the Linux find Command

Command Structure The find command syntax consists of three primary components: find /etc -name "passwd" The first segment is the commmand itself, followed by the target directory path. Multiple paths can be specified: find /etc /var /usr -name "passwd" The third segment contains expressions that define search criteria and ...

Posted on Sun, 10 May 2026 01:54:51 +0000 by Ty44ler

Essential Debian System and Development Commands

Package Management with dpkg Install a local .deb package: sudo dpkg -i package.deb Remove a package while keeping configuration files: sudo dpkg -r package_name Purge both the package and its configuration files: sudo dpkg --purge package_name List all installed packages: dpkg -l Display information about a .deb file: dpkg -I package.deb ...

Posted on Fri, 08 May 2026 20:08:11 +0000 by naskar

Working with Docker Images: Search, Management, and Persistence

Querying the Registry The docker search command queries public repositories, primarily Docker Hub, to locate available images. The basic syntax follows docker search [OPTIONS] <TERM>. $ docker search postgres NAME DESCRIPTION STARS OFFICIAL AUTOMATED postgres ...

Posted on Fri, 08 May 2026 04:12:44 +0000 by thefortrees

User Account Management in CentOS 7

Key Configuration Files User and group information in Linux is stored in specific text files within the /etc directory. Understanding these files is crucial for system administration. /etc/passwd: Contains user account information. Each line represents a user with fields separated by colons: username:password:UID:GID:comment:home_directory:log ...

Posted on Thu, 07 May 2026 20:00:22 +0000 by davestevens_uk