Hide Forgot
Description of problem: `dnf info` shows duplicate entries for each arch available for the specified package, even though I onlt care about one arch Version-Release number of selected component (if applicable): dnf-1.1.10 3.fc25 How reproducible: 100% reproducible Steps to Reproduce: 1. run `dnf-info <any package>` Actual results: You get two identical results: one for x86_64 arch, and another one for the i686 arch Expected results: Since I have a x86_64 processor and OS installation, the i686 package is not relevant, and I don't want to see it when I do `dnf info` on a package
It's correct. Some packages, especially libraries like glibc, are available both for x86_64 and i386. If you try e.g. `dnf info grep` you'll see only x86_64 version.
I know it's correct, I'm saying it isn't *relevant" to me. On a 64-bit system, what do I care if there's an i386 version of glibc available?
It is relevant, i386 version of glibc is what you need to run 32bit executables (e.g. older third party software).
Workaround: It is possible to avoid the unwanted duplicates by explicitly specifying the architecture in the <package-spec>: Example: dnf info avahi.x86_64