1831357 Members
2954 Online
110024 Solutions
New Discussion

Re: RPM not responding

 
SOLVED
Go to solution
Tom Ward_1
Honored Contributor

RPM not responding

I was installing some updates with rpm on a linux blade running RedHat 8, and it hung while updating glibc.

The rpms are okay. I've used them on several other systems without problems and the checksums match. Now any attempts to run rpm hang.

rpm -Vvva shows
[root@blade0s3 init.d]# rpm -Vvva
D: opening db environment /var/lib/rpm/Packages joinenv
D: opening db index /var/lib/rpm/Packages rdonly mode=0x0

and that's as far as it gets. Any ideas?

The kernel is 2.4.18-14. That's on the list to update, btw. I can't say what rev rpm is at, since it's fubared.

I've yet to try rebooting. Anyone ever seen this before?
3 REPLIES 3
Balaji N
Honored Contributor

Re: RPM not responding

you updated glibc?

wont it break the complete system dependency. since all programs are linked against glibc and the glibc version is no longer there, wont ur machine become useless.

just curious.
-b-
Its Always Important To Know, What People Think Of You. Then, Of Course, You Surprise Them By Giving More.
Vitaly Karasik_1
Honored Contributor
Solution

Re: RPM not responding

probably you have this problem:

http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=73097

solution:

rm -f /var/lib/rpm/__db*

rpm --rebuilddb


Rgds,
Vitaly
Dan Beeler_2
Occasional Advisor

Re: RPM not responding

Tom

cd /var/lib/rpm
rm -f /var/lib/rpm/__db*
rpm -vv --rebuilddb (if you use the -vv you get verbose output...which is cool)


--dan