how to find information about not installed packages

Tower

I am very curious to know how it would be possible to find the name of a particular program installer package (before installing the program itself) based on the subject my interest and the way to obtain information about it via the command line.

The only link that I have found is this Unix & Linux post, and it would not work in Ubuntu.

Would you help me discover how to find for example the packages that install music players?

user596162
  1. Synaptic package manager.

    This is a GUI-based package manager for ubuntu (also debian). By default, it categories packages into categories: games, internet, desktop environments, etc. Clicking on a category will show a list of candidate packages. Clicking on individual packages will reveal details about the package.

    If the selection is too broad, you can use the search feature to narrow down the search.

    You can install synaptic using the following command:

    sudo apt install synaptic
    
  2. Using the terminal:

    apt-cache search ***search-parameters***
    

    Sometimes there are too many candidates and the list will scroll by in the terminal pretty fast. You can pause the list at page-interval by:

    apt-cache search ***search-parameters*** | less
    

    Once a package interest you, details of the package can be viewed via:

    apt-cache show ***`package-name`***
    

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to find manually installed packages?

From Dev

How to find docs for apt installed packages

From Dev

How to find docs for apt installed packages

From Dev

How to make cmake find installed packages

From Dev

How to find out where different packages are installed?

From Dev

find more information about the drive/partition ubuntu is installed on

From Dev

How to find installed deb packages needlessly marked as manually installed

From Dev

How to find out information on an installed package

From Dev

Where is the configuration information of installed packages?

From Dev

How to find detailed information about FireMonkey?

From Dev

How to find information about the system/machine in Unix?

From Dev

How to find information about a firmware and install it?

From Dev

How to find more information about the file descriptor?

From Dev

How can I find executables installed by NuGet packages?

From Dev

How to find all the driver packages installed in my pc?

From Dev

how to find which packages are installed system-wide in NixOS?

From Dev

How do I find installed packages that have no install candidate?

From Dev

How to find specific package name from list of installed packages

From Dev

How to Find All Defaultly Installed Packages on Ubuntu 16.04.3

From Dev

How to find out what all standalone packages are installed?

From Dev

How to remove installed packages

From Dev

How to remove installed packages

From Dev

Get info about installed and remote packages with pacman

From Dev

How to find the device type and other information about device

From Dev

How can I find out information about a service?

From Dev

How to find various information about Fortran's commands?

From Dev

How to get installed/not installed state of **all** packages?

From Dev

How to list all installed packages

From Dev

How to deploy packages installed by Bower?

Related Related

  1. 1

    How to find manually installed packages?

  2. 2

    How to find docs for apt installed packages

  3. 3

    How to find docs for apt installed packages

  4. 4

    How to make cmake find installed packages

  5. 5

    How to find out where different packages are installed?

  6. 6

    find more information about the drive/partition ubuntu is installed on

  7. 7

    How to find installed deb packages needlessly marked as manually installed

  8. 8

    How to find out information on an installed package

  9. 9

    Where is the configuration information of installed packages?

  10. 10

    How to find detailed information about FireMonkey?

  11. 11

    How to find information about the system/machine in Unix?

  12. 12

    How to find information about a firmware and install it?

  13. 13

    How to find more information about the file descriptor?

  14. 14

    How can I find executables installed by NuGet packages?

  15. 15

    How to find all the driver packages installed in my pc?

  16. 16

    how to find which packages are installed system-wide in NixOS?

  17. 17

    How do I find installed packages that have no install candidate?

  18. 18

    How to find specific package name from list of installed packages

  19. 19

    How to Find All Defaultly Installed Packages on Ubuntu 16.04.3

  20. 20

    How to find out what all standalone packages are installed?

  21. 21

    How to remove installed packages

  22. 22

    How to remove installed packages

  23. 23

    Get info about installed and remote packages with pacman

  24. 24

    How to find the device type and other information about device

  25. 25

    How can I find out information about a service?

  26. 26

    How to find various information about Fortran's commands?

  27. 27

    How to get installed/not installed state of **all** packages?

  28. 28

    How to list all installed packages

  29. 29

    How to deploy packages installed by Bower?

HotTag

Archive