Search

[Oracle Linux 9] htop 설치 방법

작성일시
2024/09/21 06:08
수정일시
2024/11/14 14:51
스택
Linux
카테고리
Tip
태그
htop
Oracle Cloud
1 more property

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
복사

참조