Events2Join

Find package that provides file


How do I find the package that provides a file? - Ask Ubuntu

You can use dpkg command to find out which installed package owns a file: From man dpkg : -S, --search filename-search-pattern... Search for a filename from ...

Debian / Ubuntu - Find Out What Package Provides a File - nixCraft

You can search for a filename from installed packages using dpkg -S command. For example, find out package name for /bin/ls, enter: $ dpkg -S /bin/ls

How do I find which rpm package supplies a file I'm looking for?

Use yum whatprovides, with the absolute path to the file you want (which may be wildcarded). For example: yum whatprovides '*bin/grep'

Discover to which package a file belongs to - Linux Audit

To show what files are provided by an installed package, use the rpm command. rpm -ql package. If you have the file name, you can turn this around and find the ...

How to Find Which Package a File Belongs to in Debian/Ubuntu

-S, --search filename-search-pattern... Search for a filename from installed packages. ... As you can see by default it provides all possible ...

How do I find the package that contains a given program on Ubuntu?

If the package is installed, you want dpkg -S /path/to/file . If the package isn't installed, then use the apt-file utility ( apt-file ...

How To Find The Package That Provides A File (Installed Or Not) On ...

1. Using apt-file to find the package that provides a file (for repository packages, either installed or not installed). apt-file indexes the ...

Find what package a file belongs to in Ubuntu/Debian? - Super User

Simmilar to jamuraa's answer for Debian, you can also go to http://packages.ubuntu.com/ for Ubuntu. You'll have to scroll down a bit to find the ...

How to determine the package that provides a specific library file on ...

To determine the package that provides a specific library file on Ubuntu or Debian-based systems, you can use the apt-file command.

How to find which package provides a specific file or library in ...

You can also try pkg list | grep if you don't know the exact path. If neither yields anything, likely it is part of the FreeBSD ...

How to Determine Which Package Provides a File - DNF

A short guide with examples explaining how to find which package provides a file with DNF using the provides sub command.

How do I find a package that provides a given file in OpenSuSE?

But zypper can only install a package. To find out, in which package can we find the required exampletool binary, we need to do practically a ...

Find The Package That Provides A Specific File In Linux - OSTechNix

This guide describes how you can easily find out the packages that provide those missing files and install them on your Linux system.

Identifying Which Package Delivers a Specified File

The pkg search command searches package actions. The preceding command found the search token in the path attribute of a file action and shows that this file ...

gentoo - How to find which package provides a file?

1 Answer 1 ... You may use the e-file command from the pfl package ( emerge -av app-portage/pfl ) to search by package contents. ... Alternatively, ...

[SOLVED] Find packages that provides a specific file?

Is it possible to find which packages provide a specific file or tool? As an example - I'm looking for the "dig" command. Searching the Wiki I find that it's ...

Find what package provides a file with zypper - openSUSE - Reddit

You can search for Xlib ( zypper se Xlib ) and it will probably output many packages with similar names, and the header will very likely come from the package ...

How to query files, packages, and repositories in Linux - Red Hat

To find the package that contains nslookup , you can perform a "reverse" lookup using the rpm command. # rpm -qf nslookup error: file /root/ ...

How to find the rpm package of a specific file or library in CentOS ...

Method 1: Using –whatprovides option. Use –whatprovides option, to find out which rpm package provides a particular config file, binary, and ...

[SOLVED] How to find which package holds a file? / Pacman ...

pacman -Qo works only for files already installed. And you need to know their proper path (either relative or absolute). pkgfile on the other hand looks up in ...