Re: [CentOS] Finding which repository files provide required libraries

2020-12-20 Thread Matthew Miller
On Sun, Dec 20, 2020 at 07:00:04PM -0500, H wrote: > I did download dnf for the script. Am I correct in assuming this > functionality is not available with yum or rpm? yum-utils includes a separate `repoquery` command which is similar. -- Matthew Miller Fedora Project Leader

Re: [CentOS] Finding which repository files provide required libraries

2020-12-20 Thread H
On December 19, 2020 9:14:33 PM EST, H wrote: >On 12/19/2020 07:44 PM, Stephen John Smoogen wrote: >> On Sat, 19 Dec 2020 at 19:37, H wrote: >> >>> I came across the following Ubuntu script to identify which >repository >>> files provide libraries required by an app. Is there a rpm >alternative

Re: [CentOS] Finding which repository files provide required libraries

2020-12-19 Thread H
On 12/19/2020 07:44 PM, Stephen John Smoogen wrote: > On Sat, 19 Dec 2020 at 19:37, H 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

Re: [CentOS] Finding which repository files provide required libraries

2020-12-19 Thread Stephen John Smoogen
On Sat, 19 Dec 2020 at 19:37, H 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

[CentOS] Finding which repository files provide required libraries

2020-12-19 Thread H
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