ubuntu查看已安装软件包信息的方法

简介

ubuntu下面是使用dpkg来管理和安装软件包的,对应centos里面的rpm命令;而apt则是对应centos里面的yum命令,是直接在线安装软件包的,而且会比yum更好用,更强大。1

查询方法

  • 查看安装的所有软件
    对应2个命令。
root@fdm:~# dpkg -l |grep sysstat
ii  sysstat                               11.6.1-1                            amd64        system performance tools for Linux
root@fdm:~#
root@fdm:~# apt list --installed |& grep sysstat
sysstat/bionic,now 11.6.1-1 amd64 [installed]
root@fdm:~#
root@fdm:~# apt-show-versions |grep sysstat
sysstat:amd64/bionic 11.6.1-1 uptodate
  • 查看软件安装的路径以及信息2

-L|–listfiles … List files ‘owned’ by package(s).

root@fdm:~# dpkg -L sysstat |head -n3
/.
/etc
/etc/cron.d

-s|–status … Display package status details.

root@fdm:~# dpkg -s sysstat
Package: sysstat
Status: install ok installed
Priority: optional
Section: admin
Installed-Size: 1164
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Version: 11.6.1-1
...
  • 查看命令所属的软件包
    本地查看。对应rpm -qf
root@fdm:~# dpkg -S /usr/bin/mpstat
sysstat: /usr/bin/mpstat

apt-file是在线查看的方法,不过要先安装,此命令对应yum provides */name3

root@fdm:~# apt-file search /usr/bin/mpstat
sysstat: /usr/bin/mpstat

  1. http://www.wumingx.cn/post/672.html ↩︎

  2. https://blog.csdn.net/counsellor/article/details/81182567 ↩︎

  3. https://blog.csdn.net/yessharing/article/details/55806090 ↩︎

你可能感兴趣的:(linux基础)