Wednesday, May 8, 2024
 Popular · Latest · Hot · Upcoming
5
rated 0 times [  5] [ 0]  / answers: 1 / hits: 584  / 1 Year ago, tue, february 14, 2023, 6:47:00

Possible Duplicate:

How do I find the package that provides a file?






When you type a command in the terminal in Ubuntu that you have not installed but can supplied by a package Ubuntu will suggest the package to be installed.



How do I do the other way around? How do I look for what package supplied the command I am typing in a terminal?




dpkg -S /usr/bin/termit




returns



termit: /usr/bin/termit






apt-file find /usr/bin/termit




returns



termit: /usr/bin/termit


Where termit is an terminal emulator supplied by package termit.



enter image description here


More From » 11.10

 Answers
4

If you have apt-file installed and configured, you can do:



apt-file find <filename>


This is also handy when you're looking for a command that you don't have installed yet, e.g. if you're working from instructions seen on the web that use a command you don't have.



If you only want to query packages that are installed, you can use:



dpkg -S <pattern>


E.g. for a file that is installed:



% apt-file find /usr/bin/oodraw
openoffice.org-draw: /usr/bin/oodraw
% dpkg -S oodraw
openoffice.org-draw: /usr/share/man/man1/oodraw.1.gz
openoffice.org-draw: /usr/bin/oodraw


and for a file that is not installed:



% dpkg -S /usr/bin/python3.1
dpkg: /usr/bin/python3.1 not found.
% apt-file find /usr/bin/python3.1
python3.1-dbg: /usr/bin/python3.1-dbg
python3.1-dbg: /usr/bin/python3.1-dbg-config
python3.1-dbg: /usr/lib/debug/usr/bin/python3.1
python3.1-dbg: /usr/lib/debug/usr/bin/python3.1-dbg-gdb.py
python3.1-dbg: /usr/lib/debug/usr/bin/python3.1-gdb.py
python3.1-dev: /usr/bin/python3.1-config
python3.1-minimal: /usr/bin/python3.1

[#42502] Thursday, February 16, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
tionpromoti

Total Points: 14
Total Questions: 112
Total Answers: 113

Location: Tonga
Member since Tue, Nov 30, 2021
2 Years ago
tionpromoti questions
Fri, Apr 15, 22, 03:58, 2 Years ago
Tue, Jun 1, 21, 23:05, 3 Years ago
Mon, Jul 5, 21, 06:11, 3 Years ago
;