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
Manual WordPress Deployment on Rocky Linux 8.9 with LAMP Stack
Environment Setup
Rocky Linux 8.9 is used as the depolyment environment. Install Apache, MariaDB, and PHP manually. Disable SELinux and firewalld for testing purposes:
# Set SELinux to permissive mode temporarily
setenforce 0
# Disable firewalld
systemctl stop firewalld
systemctl disable firewalld
Apache Configuration
Installation
yum install ...
Posted on Wed, 20 May 2026 01:59:38 +0000 by fragger
Deploying a Standalone MinIO Instance on Rocky Linux 9
Install Server and Client Packages
# Install MinIO server package
rpm -ivh https://dl.minio.org.cn/server/minio/release/linux-amd64/minio-20230518000536.0.0.x86_64.rpm
# Install MinIO client package
rpm -ivh https://dl.minio.org.cn/client/mc/release/linux-amd64/mcli-20230518165900.0.0.x86_64.rpm
Define Environment Variibles for MinIO
Create / ...
Posted on Sun, 17 May 2026 02:33:38 +0000 by lyealain