All Ubuntu Packages Installed: List & Manage

Noah Jul 31, 2026

Ever wonder about the packages installed on your Ubuntu system? Understanding which packages are installed can help manage your system's performance, address compatibility issues, or even assist in troubleshooting. Here's how to list all packages installed on an Ubuntu system using the command line.

How to List Installed Packages on Ubuntu and Debian
How to List Installed Packages on Ubuntu and Debian

Ubuntu, a popular Linux distribution, packages software into .deb files. These packages contain all the necessary files for the software to run. With hundreds of packages installed by default, keeping track of them can be overwhelming. Let's dive into the different ways to list all installed packages.

the ubunt software center screen
the ubunt software center screen

Listing Installed Packages via Command Line

The command line is the classical way to interact with Ubuntu. Several commands can help you list installed packages.

How to List Installed Packages in Ubuntu 22.04
How to List Installed Packages in Ubuntu 22.04

Debian package management tool (dpkg) is Ubuntu's default package manager. Here's how to use it to list all installed packages:

Using dpkg

Ubuntu: list installed packages [Guide]
Ubuntu: list installed packages [Guide]

Open your terminal and type the following command, then press Enter:

dpkg -l

This command lists all packages currently installed on your system. The output will be quite extensive, showing package names, versions, architecture, description, and more.

To filter the output and make it more manageable, you can pipe the output to the 'less' command:

a green screen with the words list files installed from a package in linux on it
a green screen with the words list files installed from a package in linux on it

dpkg -l | less

This allows you to scroll through the list using 'space' to page down, 'b' to page up, and 'q' to quit.

Using APT

ubuntu's Advanced Package Tool (APT) can also be used to list installed packages. It's more high-level than dpkg but provides a similar result:

Create A List Of Installed Packages And Install Them Later From The List
Create A List Of Installed Packages And Install Them Later From The List

dpkg --get-selections

Similar to the dpkg command, you can pipe the output to 'less' for better navigation:

dpkg --get-selections | less

Another handy APT command is 'apt list --installed' which provides a more concise, plain-text list:

Installing Packages in Ubuntu Linux using Package Managers
Installing Packages in Ubuntu Linux using Package Managers
Ubuntu Cheat Sheet for Beginners
Ubuntu Cheat Sheet for Beginners
How To Install .deb Files on Ubuntu Linux
How To Install .deb Files on Ubuntu Linux
Enable Ubuntu Pro For FREE To Get 10 Years Of Security Updates - OSTechNix
Enable Ubuntu Pro For FREE To Get 10 Years Of Security Updates - OSTechNix
the list of important linux commands is shown in this diagram, which shows how to use them
the list of important linux commands is shown in this diagram, which shows how to use them
a black and white poster with the names of different types of words on it's side
a black and white poster with the names of different types of words on it's side
How to List Services in Ubuntu 22.04
How to List Services in Ubuntu 22.04

apt list --installed

This command shows only package names and versions, making it easier to read.

Graphical User Interface (GUI) Methods

If you're more comfortable with a graphical interface, several tools can help list installed packages:

Ubuntu Software Center

The Ubuntu Software Center is a graphical frontend to the APT package manager. You can view installed software by clicking on the 'Installed' tab.

Synaptic Package Manager

Synaptic offers a more advanced GUI for package management. Like other methods, it can display installed packages.

GNOME Software

Users of newer Ubuntu versions may find GNOME SoftwareCenter more intuitive to handle installed packages.

Understanding which packages are installed on your Ubuntu system can greatly improve your system management capabilities. Knowing how to list these packages, whether through command line or GUI methods, is a valuable skill. Keep exploring Ubuntu to enhance your Linux journey! If you're looking for more information, consider checking out the official Ubuntu documentation or communities for in-depth guides.