2021-03-13 21:31:08 +00:00
|
|
|
# pkgfile
|
|
|
|
|
2024-02-14 20:25:13 +00:00
|
|
|
> Search files from packages in the official repositories on Arch-based systems.
|
|
|
|
> See also: `pacman files`, describing the usage of `pacman --files`.
|
2021-04-28 15:39:51 +01:00
|
|
|
> More information: <https://man.archlinux.org/man/extra/pkgfile/pkgfile.1>.
|
2021-03-13 21:31:08 +00:00
|
|
|
|
|
|
|
- Synchronize the pkgfile database:
|
|
|
|
|
|
|
|
`sudo pkgfile --update`
|
|
|
|
|
|
|
|
- Search for a package that owns a specific file:
|
|
|
|
|
|
|
|
`pkgfile {{filename}}`
|
|
|
|
|
|
|
|
- List all files provided by a package:
|
|
|
|
|
2023-08-26 18:30:06 +01:00
|
|
|
`pkgfile --list {{package}}`
|
2021-03-13 21:31:08 +00:00
|
|
|
|
2023-08-26 18:30:06 +01:00
|
|
|
- List executables provided by a package:
|
2021-03-13 21:31:08 +00:00
|
|
|
|
2023-08-26 18:30:06 +01:00
|
|
|
`pkgfile --list --binaries {{package}}`
|
2021-03-13 21:31:08 +00:00
|
|
|
|
2021-08-15 18:59:09 +01:00
|
|
|
- Search for a package that owns a specific file using case-insensitive matching:
|
2021-03-13 21:31:08 +00:00
|
|
|
|
|
|
|
`pkgfile --ignorecase {{filename}}`
|
|
|
|
|
2021-04-28 15:39:51 +01:00
|
|
|
- Search for a package that owns a specific file in the `bin` or `sbin` directory:
|
2021-03-13 21:31:08 +00:00
|
|
|
|
2021-04-28 15:39:51 +01:00
|
|
|
`pkgfile --binaries {{filename}}`
|
2021-03-13 21:31:08 +00:00
|
|
|
|
|
|
|
- Search for a package that owns a specific file, displaying the package version:
|
|
|
|
|
|
|
|
`pkgfile --verbose {{filename}}`
|
|
|
|
|
|
|
|
- Search for a package that owns a specific file in a specific repository:
|
|
|
|
|
|
|
|
`pkgfile --repo {{repository_name}} {{filename}}`
|