87

How can I get a list of all of the RPM packages that have been installed on my system from a particular repo (e.g., "epel")?

ILMostro_7
  • 3,309

8 Answers8

84

Fedora 36 or later

dnf repository-packages epel list

CentOS / RHEL / Fedora 22 or earlier

yum list installed | grep @epel

Fedora 23

dnf list installed | grep @epel

RHEL8

dnf repo-pkgs epel list installed
  • 14
    This will not work. Yum will output lines to the pipe that will be broken if they get too long. So grep's input is mostly one line per package, but it could be two lines. Yum could pass "whizbanger.x86_64 ___ 3.8.4-2.el6 _______________ @epel". (Imagine the underscores as spaces.) The "@epel" is on the next line of the input grep sees. So grep is going to output that line with nothing but "@epel" but not the preceding line with the package name. – Todd Walton Mar 07 '17 at 16:09
  • You may need to run those commands as root until https://bugzilla.redhat.com/show_bug.cgi?id=1525645 is fixed. – proski Dec 13 '17 at 19:27
  • the yum command doesn't seem to work if one the repos is having issues. i needed this list to see if i wanted to disable the repo with issues. – Jayen Jun 11 '18 at 02:22
  • @Todd Watson I know, it is a hack, but what about "export COLUMNS=999 yum..." – Massimo Aug 20 '18 at 20:01
  • Does that work, @Massimo? That would be a nice workaround. I found also this Unix StackExchange question: https://unix.stackexchange.com/questions/308731/how-to-remove-line-wrapping-from-dnf-yum-commands – Todd Walton Aug 20 '18 at 21:14
  • sorry I am at home, not tested – Massimo Aug 20 '18 at 21:18
  • First command should be dnf repository-packages epel list --installed, otherwise it lists all packages available in the repo. – bviktor Dec 02 '22 at 02:33
24

As of RHEL6, as suggested in this stackoverflow answer, there's a more thorough method of doing this with yumdb:

yumdb search from_repo REPOID*

The repoid takes wild cards.

Pretty-print

If we're going to cheat and pipe the output, then we can achieve pretty-print effect as well. Here's one using awk

yumdb search from_repo REPOID* |awk -F"\n" '{ RS=""; print $1 }'

Using egrep or grep -e

yumdb search from_repo REPOID* |egrep -v '(from_repo|^$)'

list_ALL_AVAILABLE_from_repo

To list all available packages in a specified repository, do:

repoquery -a --repoid=REPONAME
ILMostro_7
  • 3,309
  • Just a side-note: To list all packages from a specified repo, do repoquery -qa --repoid=REPONAME – ILMostro_7 Dec 15 '14 at 01:44
  • 2
    This is also a great answer. The output is longer than the accepted answer, but it's formatted in a nicer way. – Routhinator Jun 15 '15 at 10:31
  • Can be simplified to repoquery -a --repoid=REPONAME because according to man page -q option is for rpmquery compatibility, doesn't do anything. – Rockallite Feb 16 '17 at 02:10
  • @Rockallite is right; for dnf, the -qa actually fails. I can't upvote the comment due to previously removing the upvote :( I'm updating the answer to reflect that. – ILMostro_7 Aug 21 '18 at 01:47
  • 1
    Unfortunately this doesn't work well if packages have been installed using dnf as yum just lists those as 'installed' and doesn't specify the repo they came from. If you have installed packages via dnf the answer from @Peque will work properly – maloo May 13 '20 at 17:12
22
dnf repo-pkgs <repoid> list installed

Notes

The command above uses DNF to list the packages installed from the <repoid>. Note repo-pkgs is just an alias of repository-packages.

From the man pages:

man dnf | grep "repository-packages.*list.*installed" -A 1

Further reading:

man dnf
Peque
  • 3,462
  • 1
    Best answer, works also with RHEL 7.7 yum. answers grepping for repo ID fails because sometimes tabulation causes packages and repos to go on different lines. This one is solid though. – akostadinov Apr 07 '20 at 12:24
4

Grepping yum's output is the most obvious way:

yum list installed | grep @epel

However, you can't display extra packages properties and it's difficult to parse with a script. The tool repoquery from the package yum-utils is the tool, but it isn't installed by default.

repoquery -a --installed --qf "%{ui_from_repo} %{name}" | grep '^@epel'

and a more complex example:

repoquery -a --installed --qf "%-20{ui_from_repo} %-30{name} %-7{arch} %{epoch}:%-12{version} %-4{release}" | grep '^@epel'
3

RHEL Server 7.5 (Maipo)

yum repo-pkgs <repoid> list installed can be used to retrieve the same info as yumdb search from_repo <repoid>, but in a different format.

# yum help repo-pkgs
repo-pkgs <repoid> <list|info|install|remove|upgrade|reinstall*|remove-or-*> [pkg(s)]

Treat a repo. as a group of packages, so we can install/remove all of them

aliases: repo-packages, repository-pkgs, repository-packages

Sample epel outputs:

# yumdb search from_repo epel
htop-2.2.0-1.el7.x86_64
    from_repo = epel

supervisor-3.1.4-1.el7.noarch
    from_repo = epel


# yum repo-pkgs epel list installed
Installed Packages
htop.x86_64            2.2.0-1.el7          @epel
supervisor.noarch      3.1.4-1.el7          @epel
alexandrul
  • 195
  • 1
  • 9
2

You could check the Vendor header of installed rpms.

This example lists all package from VideoLAN repository:

 rpm -q -a --qf "%{Name}:%{Vendor}\n" \
     | grep -F ":VideoLAN Project (http://www.videolan.org)"

Obviously, you need to determine if the Vendor header of your repository is unique among different repositories.

andcoz
  • 17,130
1

For people who just want to find missing repositories:

yum list installed | awk '{print $3}' | sort | uniq

This should return all repositories where you have packages installed from.

0

For RHEL 8:

dnf repository-packages epel list
Bernie
  • 1