Software & AppsOperating SystemLinux

How To List Installed Library Packages via Terminal

Ubuntu 21

In this article, we will explore various methods to list installed library packages using the terminal on a Linux system. This can be helpful when you are trying to troubleshoot, optimize, or simply understand your system better. We will cover several commands and techniques, including using dpkg, ldconfig, awk, aptitude, and apt.

Quick Answer

To list installed library packages via the terminal on a Linux system, you can use commands like dpkg -S $(/sbin/ldconfig -p | awk 'NR>1 { print $NF }'), dpkg -l | awk '(

Leave a Comment

Your email address will not be published. Required fields are marked *