Hello all--
I am trying to determine what I have isntalled from a given repository.
I have seen several references to "yum repo-pkgs" which I think is what would work for me, but "repo-pkgs" does not seem to be a part of yum 3.2.29. Is this a yum add on that I could get somewhere?
On 7/21/2015 4:02 PM, Kay Schenk wrote:
Hello all--
I am trying to determine what I have isntalled from a given repository.
I have seen several references to "yum repo-pkgs" which I think is what would work for me, but "repo-pkgs" does not seem to be a part of yum 3.2.29. Is this a yum add on that I could get somewhere?
## List installed packages from a repo yumdb search from_repo 'my-*-repo'
Try:
sudo yum repo-pkgs base info | less
Where "base" can be anyh repoid that you have installed.
-----Original Message----- From: centos-bounces@centos.org [mailto:centos-bounces@centos.org] On Behalf Of Kay Schenk Sent: Tuesday, July 21, 2015 4:03 PM To: CentOS Subject: [CentOS] how to determine what's installed from a repository?
Hello all--
I am trying to determine what I have isntalled from a given repository.
I have seen several references to "yum repo-pkgs" which I think is what would work for me, but "repo-pkgs" does not seem to be a part of yum 3.2.29. Is this a yum add on that I could get somewhere?
-- -------------------------------------------- MzK
"Way down deep, we're all motivated by the same urges. Cats have the courage to live by them." -- Jim Davis
_______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
How about
$ sudo yum list installed | grep <reponame>
It won¹t work in CentOS 5 but it should work in 6 or 7
Valère Binet [C] IT Security Administrator Kelly Government Solutions On-Site at the NIH NIH / NIA / IRP Tel : 410 558 8013 mailto: binetv@nia.nih.gov
On 7/21/15, 5:09 PM, "Robert Wolfe" Robert.Wolfe@malco.com wrote:
Try:
sudo yum repo-pkgs base info | less
Where "base" can be anyh repoid that you have installed.
-----Original Message----- From: centos-bounces@centos.org [mailto:centos-bounces@centos.org] On Behalf Of Kay Schenk Sent: Tuesday, July 21, 2015 4:03 PM To: CentOS Subject: [CentOS] how to determine what's installed from a repository?
Hello all--
I am trying to determine what I have isntalled from a given repository.
I have seen several references to "yum repo-pkgs" which I think is what would work for me, but "repo-pkgs" does not seem to be a part of yum 3.2.29. Is this a yum add on that I could get somewhere?
--
MzK
"Way down deep, we're all motivated by the same urges. Cats have the courage to live by them." -- Jim Davis
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On 07/21/2015 02:30 PM, Binet, Valere (NIH/NIA/IRP) [C] wrote:
How about
$ sudo yum list installed | grep <reponame>
YES! This did it! Thank you!
It won¹t work in CentOS 5 but it should work in 6 or 7
Valère Binet [C] IT Security Administrator Kelly Government Solutions On-Site at the NIH NIH / NIA / IRP Tel : 410 558 8013 mailto: binetv@nia.nih.gov
On 7/21/15, 5:09 PM, "Robert Wolfe" Robert.Wolfe@malco.com wrote:
Try:
sudo yum repo-pkgs base info | less
This is the problem -- my version of yum does NOT have the repo-pkgs command.
Where "base" can be anyh repoid that you have installed.
-----Original Message----- From: centos-bounces@centos.org [mailto:centos-bounces@centos.org] On Behalf Of Kay Schenk Sent: Tuesday, July 21, 2015 4:03 PM To: CentOS Subject: [CentOS] how to determine what's installed from a repository?
Hello all--
I am trying to determine what I have isntalled from a given repository.
I have seen several references to "yum repo-pkgs" which I think is what would work for me, but "repo-pkgs" does not seem to be a part of yum 3.2.29. Is this a yum add on that I could get somewhere?
--
MzK
"Way down deep, we're all motivated by the same urges. Cats have the courage to live by them." -- Jim Davis
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Am 21.07.2015 um 23:39 schrieb Kay Schenk kay.schenk@gmail.com:
On 07/21/2015 02:30 PM, Binet, Valere (NIH/NIA/IRP) [C] wrote:
How about
$ sudo yum list installed | grep <reponame>
YES! This did it! Thank you!
rpm -qa --qf '%{VENDOR}-%{NAME}\n' |sort
-- LF
On Tue, Jul 21, 2015 at 04:09:57PM -0500, Robert Wolfe wrote:
Try:
sudo yum repo-pkgs base info | less
Where "base" can be anyh repoid that you have installed.
but "yum repo-pkgs" seems to work only on Centos-7. It's good if that's your distro, but not so great otherwise.
but thanks for posting that, I hadn't yet learned about that option. <snip>
Hello all--
I am trying to determine what I have isntalled from a given repository.
I have seen several references to "yum repo-pkgs" which I think is what would work for me, but "repo-pkgs" does not seem to be a part of yum 3.2.29. Is this a yum add on that I could get somewhere?