예를 들어 찾기 명령이 mlocate.i386 패키지에 속하는 것을 쉽게 찾을 수 있습니다.
yum search locate
mlocate.i386 : An utility for finding files by name
[mirror@home /]$ rpm -qa | grep locate
mlocate-0.15-1.el5.1
yum search updatedb
Loaded plugins: fastestmirror, protectbase
0 packages excluded due to repository protections
=========================================== Matched: updatedb ===========================================
mlocate.i386 : An utility for finding files by name
그러나 어떤 패키지 프리 명령이 속하는지 찾기는 쉽지 않습니다.
yum search free // this command just returns too much informationy
rpm -qa | grep free
freetype-2.2.1-31.el5_8.1 // obviously not the package by which free command is installed
Linux에서 특정 명령이 속하는 패키지를 알 수있는 확실한 방법이 있습니까? 예를 들어 CentOS 또는 다른 배포판
which free
않습니까?