If i try yum update on a FC2 VPS i get the following error:
Package glibc-dummy-fedora-core-2 needs glibc-common = 2.3.3-27.1, this is not available
Don't know what is exactly it but don't understant this:
# rpm -qa glibc-dummy-fedora-core-2
glibc-dummy-fedora-core-2-2.3.3-27.1.1.swsoft
rpm -qa glibc-common
glibc-common-2.3.3-27.1
So it seems i've it!
I use this yum conf:
[base]
name=Atomic Rocket Turtle - $releasever - Base OS RPMS mirror
baseurl=http://3es.atomicrocketturtle.com/3rd-p ... eleasever/
[updates]
name=Atomic Rocket Turtle - $releasever - OS Update RPMS mirror
baseurl=http://3es.atomicrocketturtle.com/3rd-p ... eleasever/
dependeces inside VPS
-
- Atomicorp Staff - Site Admin
- Posts: 8355
- Joined: Wed Dec 31, 1969 8:00 pm
- Location: earth
- Contact:
I know exactly what is doing that, I run into the same problem in my build environment. Whats going on is that the master OS that the vservers are running under, uses a more modern version of rpm/db. Probably running FC3/4, or CentOS4/RHEL4. Heres the best way to make sure you clean things up after that:
rm -f /var/lib/rpm/__*
rpm --rebuilddb
rm -f /var/lib/rpm/__*
rpm --rebuilddb
-
- Long Time Forum Regular
- Posts: 2813
- Joined: Sat Aug 20, 2005 9:30 am
- Location: The Netherlands
Those virtual servers seem to have some kind of dummy glibc package. You can also just tell yum to ignore glibc:
This will get you updates for other packages.
Code: Select all
yum --exclude=glibc\* update