Installing Rocky Linux 10 on ESXi: A Comprehensive Guide

Installing Rocky Linux 10 on ESXi: A Comprehensive Guide

ESXi Meets Rocky Linux 10: A Comprehensive Installation Guide Follow the author for more technical sharing 1. Introduction In the fast-paced evolution of technology, we often face various challenges in system maintenance and updates. The news of CentOS 7 reaching its end of life has left many users who rely on it in a difficult … Read more

From CentOS to Rocky Linux: Continuing the Open Source Legend

From CentOS to Rocky Linux: Continuing the Open Source Legend

The Birth of Rocky Linux: A Ray of Hope Amidst the End of CentOS In the vast world of Linux, CentOS was once a favorite among many server users. Built on the source code of Red Hat Enterprise Linux (RHEL), it occupied an important position in the server operating system domain due to its stability, … Read more

One-Click Installation of Oracle 11gR2 Database on Rocky Linux 10

One-Click Installation of Oracle 11gR2 Database on Rocky Linux 10

One-Click Installation Script Preparation steps before using the script Install the operating system Configure the host network Set up the software source; the script will configure it automatically, and you need to mount the ISO image Create a directory for storing software: mkdir /soft Upload the software package Upload the installation script Check Host and … Read more

Rocky Linux Has Been Updated to Version 9.6!

Rocky Linux Has Been Updated to Version 9.6!

As a downstream enterprise-level Linux distribution of RHEL, Rocky Linux has released its latest version 9.6. Since CentOS ceased to release traditional versions, Rocky Linux has emerged to fill the gap left by the discontinuation of CentOS, providing a stable and reliable operating system that is fully binary compatible with RHEL. Currently, Rocky Linux offers … Read more

Complete Guide to Installing Nginx on Rocky Linux 9

Complete Guide to Installing Nginx on Rocky Linux 9

Complete Guide to Installing Nginx on Rocky Linux 9 1. Environment Preparation 1. System Update sudo dnf update -y sudo dnf install epel-release -y 2. Firewall Configuration sudo firewall-cmd –permanent –add-service=http sudo firewall-cmd –permanent –add-service=https sudo firewall-cmd –reload 2. Installing Nginx Install via EPEL Repository sudo dnf install nginx -y 2. Verify Installation Version nginx … Read more

Rocky Linux 9.6 Has Been Officially Released!

Rocky Linux 9.6 Has Been Officially Released!

We are pleased to announce that Rocky Linux 9.6 has been officially released. The updated installation images, container images, cloud images, and Live images are available for download from the Rocky Linux download page. Please refer to the **release notes** published in the official Rocky Linux documentation for important information including known issues and detailed … Read more

Installing Samba Service on Rocky Linux 9.5

Installing Samba Service on Rocky Linux 9.5

To install and configure the Samba server on Rocky Linux 9.5, follow the steps below. Samba is an open-source software that implements the SMB/CIFS protocol, allowing Linux systems to share files with Windows. 1. Install Samba sudo dnf install samba samba-client samba-common -y 2. Create a Shared Directory sudo mkdir -p /srv/samba/share sudo chmod -R … Read more

Configuring and Managing an Admin User with Sudo Privileges on Rocky Linux 9.5

Configuring and Managing an Admin User with Sudo Privileges on Rocky Linux 9.5

In Linux system administration, the Principle of Least Privilege (PoLP) is one of the core principles of secure operations. Directly using the <span>root</span> user for operations carries high risks; it is recommended to create an administrator user with <span>sudo</span> privileges (such as <span>admin</span>) to reduce the impact of accidental operations and security threats. This article … Read more