访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

linux查找某个命令属于哪个rpm包

时间:2019-06-03

linux解压命令_linux 关机命令_linux命令

#yum whatprovides /usr/bin/pip

loaded plugins: downloadonly, product-id, refresh-packagekit, security, subscription-manager。loaded plugins: fastestmirror, product-id, refresh-packagekit, security, subscription-manager。loaded plugins: fastestmirror, refresh-packagekit, security。

Loading mirror speeds from cached hostfile

* base: mirrors.sina.cn

* epel: mirrors.ustc.edu.cn

* extras: mirrors.zju.edu.cn

* updates: mirrors.zju.edu.cn

linux解压命令_linux命令_linux 关机命令

python-pip-7.1.0-1.el6.noarch : A tool for installing and managing Python packages

Repo : epel

Matched from:

Filename : /usr/bin/pip

python-pip-7.1.0-1.el6.noarch : A tool for installing and managing Python packages

Repo : installed

Matched from:

linux命令_linux 关机命令_linux解压命令

根据上述信息,可知pip来自python-pip-7.1.0-1.el6.noarch这个包.

另外yum provides/whatprovides接受通配符选项:

假如不知道命令的路径,也可以用通配来解决

yum whatprovides *pip

关于yum的其它用法可以man yum查看

方法二:

确认命令的路径

linux解压命令_linux 关机命令_linux命令

# whereis pip

pip: /usr/bin/pip2.6 /usr/bin/pip

查找命令属于那个安装包

# rpm -qf /usr/bin/pip

python-pip-7.1.0-1.el6.noarch

列出这个rpm包中的所有文件

# rpm -ql python-pip-7.1.0-1.el6.noarch

查询是否安装某个rpm包.

rpm –qa python-pip