📌  相关文章
📜  查看所有应用程序 linux - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:26:39.601000             🧑  作者: Mango

查看所有应用程序

在Linux操作系统中,我们可以使用命令来查看所有安装的应用程序。以下是几个常用的命令:

1. dpkg命令

dpkg命令是Debian Linux包管理器中的一个工具,用于安装、删除、管理deb包。

使用dpkg -l命令可以列出所有已安装的程序。

示例代码:

dpkg -l

输出:

||/ Name                           Version              Architecture         Description
+++-==============================-====================-====================-================================================================
ii  acpi-support                   0.137                all                  scripts for handling many ACPI events
ii  acpid                          1:2.0.31-1ubuntu2.2   amd64                Advanced Configuration and Power Interface event daemon
ii  adduser                        3.118                all                  add and remove users and groups
ii  adwaita-icon-theme             3.36.1-2ubuntu0.20.04 all                  default icon theme of GNOME
……
2. apt命令

apt命令是Debian Linux包管理器的一个工具,用于处理deb包。使用apt list命令可以列出所有已安装和可用的程序包。

示例代码:

apt list --installed

输出:

Listing... Done
accountsservice/focal,now 0.6.55-0ubuntu12 amd64 [installed,automatic]
acl/focal,now 2.2.53-6 amd64 [installed,automatic]
acpi-support/focal-updates,focal-updates,now 0.143 amd64 [installed,automatic]
acpid/focal,now 1:2.0.32-1ubuntu1 amd64 [installed]
adduser/focal,focal,now 3.118ubuntu2 all [installed]
……
3. which命令

which命令用于查找可执行文件的位置,可以用来查看已安装的应用程序。

示例代码:

which firefox

输出:

/usr/bin/firefox
4. whereis命令

whereis命令用于查找二进制、源代码和man页所在的位置。

示例代码:

whereis code

输出:

code: /usr/share/code /usr/share/man/man1/code.1.gz
5. find命令

find命令用于在文件系统中搜索文件,并根据一定的条件进行过滤。可以使用find命令来查找安装的应用程序。

示例代码:

find / -type f -name "firefox"

输出:

/usr/bin/firefox

以上就是在Linux中查看所有应用程序的方法,可以根据自己的需求选择合适的命令来使用。