After today's round of updates installed rpm-4.6.1-1 the system choked on reboot while loading akmods and spit out the following messages
Quote:
rpmdb: /var/lib/rpm/Packages: unsupported hash version: 9
error: cannot open Packages index using db3 - Invalid argument (22)
|
The traditional approach of just removing the __db.0* (database files), and running rpm --rebuilddb did not work. db_recover produced the output:
Quote:
|
Program version 4.7 doesn't match environment version 4.5
|
A bit of trial and error resolved this via...
Quote:
cd /var/lib/rpm
rm -fv __db*
mv -v Packages Packages-BAK
db_dump Packages-BAK | db45_load Packages
rpm -vv --rebuilddb
|
I see no mention of anyone else having this problem, but if you run across it, these steps should rectify the situation.