With yum it was simple: yum list *xxx* but this does not work with apt-get.

How can I do a search like this?

Also, how do I see what package provides a specific command?

link|improve this question

79% accept rate
feedback

4 Answers

up vote 4 down vote accepted

If you wish to search a specific string only in package names, you can do:

apt-cache search --names-only 'xxx'

This will return anything that contains 'xxx' in their package name.

You can also use regular expressions:

apt-cache search --names-only 'php5$'

This will return any package with their name ending in php5.

Regular expressions can also be used without the --names-only. See apt-cache(8) man page.

link|improve this answer
1  
aptitude search operates in the same way and you should really be using aptitude rather than apt-get these days. – kaerast Jul 2 '10 at 11:38
kaerast, you enlightened me! aptitude is the way. Thank. You should put this as an answer instead of a comment. "aptitude search" – Sorin Sbarnea Jul 2 '10 at 12:50
feedback

First Question: use dselect or aptitude to see/search all available packagesm, their both curses frontends to apt-get and/or dpkg

Second Question: dpkg -S <COMMAND>

It would be wise to include the whole path in your dpkg search (e.g. /bin/ls, not just ls).

link|improve this answer
feedback

An alternative is "apt-cache search"

link|improve this answer
feedback

Yet another alternative is axi-cache (in the apt-xapian-index package). It uses the xapian search engine to search through the apt archives.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.