Linux LVM Operations: Configuration and Management Guide
Table of Contents
LVM Overview
Core Concepts
Common Operations
Disk Scanning
Creating LVM Volumes
Expanding Logical Volumes
Shrinking Logical Volumes
Swap Partition Expansion
Command Reference
LVM Overview
LVM (Logical Volume Manager) is a storage device management technology that provides logical abstraction layer between physical storage de ...
Posted on Mon, 10 Aug 2026 16:34:36 +0000 by Scooby Doo
Setting Up Python 3.7.2 and Related Services on CentOS 7
Install System Dependencies
Update the system and install required development libraries and tools:
yum -y update
yum -y install gcc openssl-devel zlib-devel readline-devel libffi-devel
bzip2-devel mysql-devel python-devel java wget
git redis nginx supervisor
Enable services to start automatically after a reboot:
syst ...
Posted on Sat, 01 Aug 2026 16:54:54 +0000 by charp
Installing and Setting Up Nginx on CentOS 7
Prerequisites
Log in to your CentOS 7 server using an account that has sudo privileges. Ensure that no other service (such as Apache) is occupying port 80 or 443, as this would prevent Nginx from starting.
Installing Nginx
Nginx is available from the EPEL (Extra Packages for Enterprise Linux) repository. Follow these steps to install it:
Inst ...
Posted on Fri, 31 Jul 2026 16:43:08 +0000 by dougmcc1
Engineering a Private KMS Host Infrastructure
Deployment Environment
To establish a local Key Management Service (KMS) infrastructure, access to a Linux server with root privileges is required. This guide utilizes CentOS 7 x64 as the baseline environment. Ensure that network connectivity allows for downloading resources and that port 1688 (TCP/UDP) remains accessible for client connections ...
Posted on Tue, 28 Jul 2026 16:38:03 +0000 by JoeBuntu
Configuring Network Settings in Linux
IP Address ClassificationIPv4 addresses are categorized into five classes (A through E), although D (multicast) and E (experimental) are rarely configured on standard hosts.Class A: The first octet represents the network (1-127). The loopback address consumes 127.0.0.0/8, leaving 126 valid networks. Each network supports 2^24 - 2 hosts. Default ...
Posted on Sun, 26 Jul 2026 16:16:19 +0000 by George Botley
Implementing Custom Metrics for MySQL in Zabbix via Percona Plugins
While the standard Percona Monitoring Plugins provide a robust baseline, they often omit critical database performance indicators such as Queries Per Second (QPS), Transactions Per Second (TPS), and Input/Output Operations Per Second (IOPS). To maintain comprehensive observability, the monitoring configuration must be extended to include these ...
Posted on Wed, 22 Jul 2026 16:34:58 +0000 by loveranger
Essential Linux Command Reference
In Linux, there are several ways to execute commands that continue running even after you close your terminal session:
Background execution with &: The ampersand symbol allows a command to run in the background. However, if you close your terminal (like Xshell), the process will terminate.
nohup command: This allows a command to keep runni ...
Posted on Tue, 21 Jul 2026 16:41:07 +0000 by imstupid
Deploying Apache DolphinScheduler in a Single-Node Pseudo-Cluster Environment
System Account and SSH Automation Setup
Establishing a dedicated service account with passwordless SSH access streamlines the deployment workflow for all cluster components.
# Provision the deployment user and assign passwordless sudo rights
sudo useradd -m -s /bin/bash ds_user
echo "ds_user:SecurePass123" | sudo chpasswd
sudo tee -a ...
Posted on Fri, 17 Jul 2026 16:36:28 +0000 by XtacY
Comprehensive Guide to Redis Configuration Parameters
Memory Units and General SettingsRedis configuration supports standard memory units. Units are case-insensitive, meaning 1GB, 1Gb, and 1gb are equivalent.1kb = 1024 bytes1k = 1000 bytes1mb = 1024*1024 bytes1m = 1000000 bytesBy default, Redis runs in the foreground. To run as a background daemon, modify the daemonize setting.daemonize yes
pidfil ...
Posted on Tue, 14 Jul 2026 17:14:02 +0000 by hhheng
Rocky Linux Post-Installation Setup and Customization Guide
Creating a Bootable USB Drive
Download the ISO from a local mirror, such as Alibaba Cloud, or the official site, wich automatically selects the fastest route.
When using tools like UltraISO, select RAW mode for writing the image to avoid many common issues.
Alternatively, write the USB on Linux:
sudo dnf install -y epel-release ntfsprogs ntfs ...
Posted on Sun, 12 Jul 2026 16:49:44 +0000 by hyperpcs