การติดตั้ง EPEL Repository บน Rocky Linux 9
1. ติดตั้งด้วยคำสั่ง
dnf install epel-release

2. ตรวจสอบ
[root@agriserv ~]# yum repolist
repo id repo name
appstream Rocky Linux 9 – AppStream
baseos Rocky Linux 9 – BaseOS
crb Rocky Linux 9 – CRB
epel Extra Packages for Enterprise Linux 9 – x86_64
extras Rocky Linux 9 – Extras

3. กรณีต้องการติดตั้ง Package ภายใต้ EPEL Repo
# dnf –enablerepo=”epel” install <package_name>
OR
# yum –enablerepo=”epel” install <package_name>

เช่น
yum –enablerepo=epel info htop

Note.
ไฟล์เก็บคอนฟิกอยู่ที่ /etc/yum.repos.d/epel.repo



Write by SysAdmin Knowledge
https://www.sysadmin.in.th
January 24, 2023


 

Explore More

การติดตั้ง NTP Server บน Rocky Linux

การติดตั้ง NTP Server บน Rocky Linux 1. ทำการอัปเดทระบบ sudo dnf update -y 2. ตรวจสอบ Time Zone 3. กำหนด Time Zone sudo timedatectl set-timezone Asia/Bangkok 4. ตรวจสอบ Time Zone ที่ใช้งานอยู่ timedatectl […]

การติดตั้ง Apache Web Server บน Rocky Linux 9

การติดตั้ง Apache Web Server บน Rocky Linux 9 1. ทำการอัปเดทระบบ sudo dnf update 2. ติดตั้งแพ็กเกจ Apache HTTPd Server sudo dnf install httpd 3. กำหนดให้ Apache ทำงานตอนบู๊ตระบบ sudo systemctl enable httpd […]

การติดตั้ง Web Server ด้วย Nginx บน Rocky Linux

การติดตั้ง Nginx บน Rocky Linux 1. ทำการอัปเดทระบบ sudo dnf update 2. ติดตั้งแพ็กเกจ Nginx sudo dnf install nginx 3. ทำการสต๊าทระบบพร้อมกำหนดให้ทำงานตอนบู๊ตระบบ sudo systemctl start nginx sudo systemctl enable –now nginx 4. ตรวจสอบสถานะ […]