Why won't my package upgrade with yum? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:47:37Z http://stackoverflow.com/feeds/question/104363 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/104363/why-wont-my-package-upgrade-with-yum 1 Why won't my package upgrade with yum? lorin 2008-09-19T18:34:31Z 2008-09-19T19:26:56Z <p>I'm trying to upgrade a package using yum on Fedora 8. The package is "elfutils". Here's what I have installed locally:</p> <pre><code>$ yum info elfutils Installed Packages Name : elfutils Arch : x86_64 Version: 0.130 Release: 3.fc8 Size : 436 k Repo : installed Summary: A collection of utilities and DSOs to handle compiled objects </code></pre> <p>There's a bug in this version, and according to the <a href="https://bugzilla.redhat.com/show_bug.cgi?id=377241" rel="nofollow">bug report</a>, a newer version has been pushed to the Fedora 8 stable repository. But, if I try to update:</p> <pre><code>$ yum update elfutils Setting up Update Process Could not find update match for elfutils No Packages marked for Update </code></pre> <p>Here are my repositories:</p> <pre><code>$ yum repolist enabled repo id repo name status InstallMedia Fedora 8 enabled fedora Fedora 8 - x86_64 enabled updates Fedora 8 - x86_64 - Updates enabled </code></pre> <p>What am I missing?</p> http://stackoverflow.com/questions/104363/why-wont-my-package-upgrade-with-yum/104479#104479 1 Answer by ethyreal for Why won't my package upgrade with yum? ethyreal 2008-09-19T18:49:54Z 2008-09-19T19:00:48Z <p>i know this seems silly but did you try removing it and reinstalling?</p> <pre><code>yum remove elfutils </code></pre> <p>then</p> <pre><code>yum install elfutils </code></pre> <p>alternatively you could try updating everything:</p> <pre><code>yum update </code></pre> <p>...if their is no update marked in the repository you might try:</p> <pre><code>yum upgrade </code></pre> http://stackoverflow.com/questions/104363/why-wont-my-package-upgrade-with-yum/104672#104672 1 Answer by Loren Charnley for Why won't my package upgrade with yum? Loren Charnley 2008-09-19T19:13:06Z 2008-09-19T19:13:06Z <p>If you look at the listing of the repository packages directory at</p> <p>[Link to Fedora Repository][1] </p> <p>You will see that you have the latest version in that directory, which is why yum is not upgrading your package. This is the same in both the i386 and x86_64 package directories. So the reason that you are not seeing an update is that there is not a more current version in the repository yet. The notification in the bug report that a new version is in the repository is incorrect.</p> <p>[1]: <a href="http://download.fedora.redhat.com/pub/fedora/linux/releases/8/Everything/x86_64/os/Packages/" rel="nofollow">http://download.fedora.redhat.com/pub/fedora/linux/releases/8/Everything/x86_64/os/Packages/</a>"Fedora x86_64 Repository"</p> http://stackoverflow.com/questions/104363/why-wont-my-package-upgrade-with-yum/104801#104801 0 Answer by lorin for Why won't my package upgrade with yum? lorin 2008-09-19T19:26:56Z 2008-09-19T19:26:56Z <p>OK, I figured it out. I needed to upgrade the <code>fedora-release</code> package. That allowed me to see all of the updated packages. Thanks to ethyreal for pointing me to the Yum upgrade FAQ.</p>