[CentOS] Finding which repository files provide required libraries

Stephen John Smoogen

smooge at gmail.com
Sun Dec 20 00:44:22 UTC 2020


On Sat, 19 Dec 2020 at 19:37, H <agents at meddatainc.com> wrote:

> I came across the following Ubuntu script to identify which repository
> files provide libraries required by an app. Is there a rpm alternative to
> dpk-query that would allow this to run on CentOS/RH?
>
> ldd /bin/zoom | awk '/=>/{print $(NF-1)}' | while read n; do dpk-query -S
> $n; done | sed 's/^\([^:]\+\):.*$/\1/' | uniq
>
>
repoquery would what would be used instead. Its syntax is slightly
different
ldd /bin/ls | awk '/=>/{print $(NF-1)}' | while read n; do dnf repoquery
--whatprovides $n; done | uniq


> _______________________________________________
> CentOS mailing list
> CentOS at centos.org
> https://lists.centos.org/mailman/listinfo/centos
>


-- 
Stephen J Smoogen.


More information about the CentOS mailing list