Rocky-9.2
Rocky 8 버전부터는 2개의 repository를 사용합니다.
BaseOS
– 운영체제의 기반이 되는 기본 기능의 코어 세트를 제공하는 데 사용
AppStream
– 운영 서비스에서 수행 가능한 Application, 런타임 언어 및 데이터베이스 등이 포함
# mkdir /etc/yum.repos.d/repo_backup
# mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/repo_backup/
# dnf repolist
No repositories available
# mount Rocky-9.2-x86_64-dvd.iso /mnt/
# dnf config-manager –add-repo file:///mnt/BaseOS
# ls /etc/yum.repos.d/
mnt_BaseOS.repo repo_backup
# echo “gpgcheck=0” >> /etc/yum.repos.d/mnt_BaseOS.repo
# cat /etc/yum.repos.d/mnt_BaseOS.repo
[mnt_BaseOS]
name=created by dnf config-manager from file:///mnt/BaseOS
baseurl=file:///mnt/BaseOS
enabled=1
gpgcheck=0
name: repo 이름
baseurl: package, repodata 위치
enabled: repo 활성, 비활성 설정
gpgcheck: GPG 서명 사용
※ GPG(GNU Privacy Guard)
– rpm package를 인증하는데 사용하는 암호화 서명
# dnf repolist
repo id repo name
mnt_BaseOS created by dnf config-manager from file:///mnt/BaseOS
# dnf config-manager –add-repo file:///mnt/AppStream
# echo “gpgcheck=0” >> /etc/yum.repos.d/mnt_AppStream.repo
# dnf repolist
repo id repo name
mnt_AppStream created by dnf config-manager from file:///mnt/AppStream
mnt_BaseOS created by dnf config-manager from file:///mnt/BaseOS
# dnf search nfs
# dnf -y install nfs-utils
# rpm -qa | grep nfs-utils
nfs-utils-2.5.4-18.el9.x86_64
1. 개요 Rocky Linux는 엔터프라이즈 환경에서 사용되는 RHEL(Red Hat Enterprise Linux)과 완전히 호환되는 오픈소스 Linux…
https://youtu.be/XwG4jBWakzQ 1. 개요 Supermicro IPMIView는 Supermicro에서 제공하는 IPMI (Intelligent Platform Management Interface) 기반의 통합 관리…
1. 개요 이 문서는 두 개의 NIC (enp5s0f0, enp5s0f1)를 bonding(active-backup) 방식으로 구성하고, 해당 bond 장치를 브리지(br0) 와 연결하여 KVM 가상머신에서…
1. 개요 KVM에서 NVIDIA GPU를 Passthrough 설정하여 VM에 할당할 때 RmInitAdapter failed 오류를 자주 접하게…
1. 개요 Proxmox에서 pGPU(Physical GPU)와 vGPU(Virtual GPU)를 동일한 서버에서 동시에 사용하는 방법을 정리합니다. 2. 버전…
1. 개요 Proxmox에서 vGPU를 설정하는 방법을 정리합니다. 2. 버전 Proxmox 8.2 3. vGPU란? vGPU(Virtual GPU)는…