我如何知道检查应用程序是否安装在我的计算机上的命令?

我如何知道检查应用程序是否安装在我的计算机上的命令?

我最近安装了一个需要卸载的 VMWare Workstation 版本,在查找有关如何卸载的说明时,我偶然发现了线。

它指出写入此命令来查看是否安装了任何版本的 VMWare Workstation:

vmware-安装程序-l

所以我想知道的是,就像 VMWare 的引用命令一样,我如何知道存在的其他命令可以让我知道我的计算机上是否安装了某个特定产品?

感谢您的关注。

答案1

在终端中输入:

dpkg --list | grep -i name-of-application

答案2

使用 aptitude

如果使用包管理器安装了包,则运行以下命令将显示已安装且keyword名称中包含该单词的包:

aptitude search '~i keyword'

例子

aptitude search '~i samba'

这将返回我的系统上的以下软件包列表:

i   samba                                                                  - SMB/CIFS file, print, and login server for Unix
i   samba-common                                                           - common files used by both the Samba server and client
i   samba-common-bin                                                       - common files used by both the Samba server and client
i   system-config-samba                                                    - GUI for managing samba shares and users

表示i已安装。

使用哪个

which如果您知道正在搜索的可执行文件的名称,您也可以使用它;executable-name如果它已安装,它将返回路径,否则不返回任何内容。

which executable-name

例子

which system-config-samba

这将在我的系统上返回以下内容:

/usr/sbin/system-config-samba

因此我知道它system-config-samba已安装,并且知道安装在哪里。

答案3

mm 您也可以尝试再次安装该应用程序($ sudo apt-get install“应用程序名称”),如果它确实安装了,它将显示“(程序名称)它已经是最新版本”

相关内容