Oracle Linux 9
$ sudo dnf install htop
# ... 중간 메시지 생략
No match for argument: htop
Error: Unable to find a match: htop
Shell
복사
Oracle Linux 9 에서 htop 명령어를 설치하려고 dnf 명령어를 사용하여 설치를 하려고 해도 위의 로그처럼 찾을 수 없다고 나온다.
해결 방법
TL;DR
htop 명령어는 EPEL 리포지토리에 포함되어 있으므로 EPEL 리포지토리를 활성화 해주면 된다.
sudo dnf config-manager --enable ol9_developer_EPEL
sudo dnf install -y htop
Shell
복사
이건 해결 방법은 아니지만 EPEL 리포지토리에 어떤 패키지들이 있는지 확인하는 명령어
dnf --disablerepo="*" --enablerepo="ol9_developer_EPEL" list available
Shell
복사