본문 바로가기
IT/LINUX

[Linux] 리눅스 명령어 패키지 찾기

by 양눈 2024. 12. 13.
반응형

리눅스에서 특정명령어를 사용하려고 하는데 어떤 패키지를 설치해야 할지 모를 때가 있습니다. 
이때는 아래 명령어로 조회 하면 repository 안에 포함 되는 경우 조회가 됩니다. 
(repository 안에 없는 경우 조회되지 않음.) 

1. yum provides [명령어] 

아래와 같이 iostat 명령어가 sysstat 패키지에 포함 됨을 알수 있습니다. 

[root@ip-10-0-2-60 ~]# yum provides iostat
Last metadata expiration check: 9:49:32 ago on Thu Dec 12 16:09:55 2024.
sysstat-12.5.6-1.amzn2023.0.2.x86_64 : Collection of performance monitoring tools for Linux
Repo        : amazonlinux
Matched from:
Filename    : /usr/bin/iostat

sysstat-12.5.6-1.amzn2023.0.3.x86_64 : Collection of performance monitoring tools for Linux
Repo        : @System
Matched from:
Filename    : /usr/bin/iostat

sysstat-12.5.6-1.amzn2023.0.3.x86_64 : Collection of performance monitoring tools for Linux
Repo        : amazonlinux
Matched from:
Filename    : /usr/bin/iostat

2. yum search [명령어] 

yum search 명령어로도 특정 명령어가 어떤 패키지에 포함 되는지 확인 할 수 있다. 
다만 amazon linux에서는 어떤 이유인지 패지지명으로는 검색 되지만 명령어로는 찾을 수 없었다. 

(redhat)

# yum search ifconfig
============================ Name & Summary Matched: ifconfig ============================
net-tools.x86_64 : Basic networking tools

(amazon linux)
# yum search iostat
Last metadata expiration check: 10:08:09 ago on Thu Dec 12 16:09:55 2024.
No matches found.
# yum search sysstat
Last metadata expiration check: 10:08:15 ago on Thu Dec 12 16:09:55 2024.
============================================ Name Exactly Matched: sysstat =============================================
sysstat.x86_64 : Collection of performance monitoring tools for Linux
# yum search ifconfig
Last metadata expiration check: 10:08:22 ago on Thu Dec 12 16:09:55 2024.
No matches found.
# yum search net-tools
Last metadata expiration check: 10:08:36 ago on Thu Dec 12 16:09:55 2024.
=========================================== Name Exactly Matched: net-tools ============================================
net-tools.x86_64 : Basic networking tools

 

반응형

댓글