ubuntu:packages:list_all_packages_installed_on_the_system
Ubuntu - Packages - List all packages installed on the system
Issue the command:
dpkg -l
Depending on the amount of packages on your system, this can generate a large amount of output. Pipe the output through grep to see if a specific package is installed:
dpkg -l | grep apache2
Replace apache2 with any package name, part of a package name, or other regular expression.
dpkg --get-selections | grep -v deinstall
ubuntu/packages/list_all_packages_installed_on_the_system.txt · Last modified: 2020/07/15 09:30 by 127.0.0.1