中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問(wèn)手機(jī)版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級(jí)網(wǎng)工!

招聘|合作 登陸|注冊(cè)

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點(diǎn)關(guān)注 > linux常用命令

linux查找某個(gè)命令屬于哪個(gè)rpm包

時(shí)間:2019-06-03

linux解壓命令_linux 關(guān)機(jī)命令_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 關(guān)機(jī)命令

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 關(guān)機(jī)命令_linux解壓命令

根據(jù)上述信息,可知pip來(lái)自python-pip-7.1.0-1.el6.noarch這個(gè)包.

另外yum provides/whatprovides接受通配符選項(xiàng):

假如不知道命令的路徑,也可以用通配來(lái)解決

yum whatprovides *pip

關(guān)于yum的其它用法可以man yum查看

方法二:

確認(rèn)命令的路徑

linux解壓命令_linux 關(guān)機(jī)命令_linux命令

# whereis pip

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

查找命令屬于那個(gè)安裝包

# rpm -qf /usr/bin/pip

python-pip-7.1.0-1.el6.noarch

列出這個(gè)rpm包中的所有文件

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

查詢是否安裝某個(gè)rpm包.

rpm –qa python-pip