Current Path: > > usr > lib > rpm >
Operation : Linux premium107.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 198.54.126.246 | Your IP: 216.73.216.181 Domains : 1034 Domain(s) Permission : [ 0755 ]
| Name | Type | Size | Last Modified | Actions |
|---|---|---|---|---|
| fileattrs | Directory | - | - | |
| macros.d | Directory | - | - | |
| platform | Directory | - | - | |
| redhat | Directory | - | - | |
| alt-nodejs10_native.req | File | 70 bytes | March 22 2023 11:24:59. | |
| alt-nodejs11_native.req | File | 70 bytes | October 19 2021 10:09:25. | |
| alt-nodejs12_native.req | File | 70 bytes | January 11 2022 02:11:43. | |
| alt-nodejs14_native.req | File | 70 bytes | February 02 2026 15:26:27. | |
| alt-nodejs16_native.req | File | 40 bytes | November 03 2023 14:28:38. | |
| alt-nodejs18_native.req | File | 40 bytes | June 05 2025 11:46:41. | |
| alt-nodejs19_native.req | File | 39 bytes | December 06 2023 18:26:05. | |
| alt-nodejs20_native.req | File | 40 bytes | February 03 2026 12:51:15. | |
| alt-nodejs22_native.req | File | 40 bytes | February 03 2026 17:36:24. | |
| alt-nodejs24_native.req | File | 40 bytes | February 04 2026 01:56:42. | |
| alt-nodejs6_native.req | File | 64 bytes | September 28 2021 09:41:32. | |
| alt-nodejs8_native.req | File | 68 bytes | September 28 2021 10:55:42. | |
| alt-nodejs9_native.req | File | 68 bytes | September 28 2021 11:57:47. | |
| brp-scl-compress | File | 1809 bytes | August 25 2017 08:23:02. | |
| brp-scl-python-bytecompile | File | 3109 bytes | August 25 2017 08:23:02. | |
| gstreamer1.prov | File | 954 bytes | May 30 2020 07:44:22. | |
| kabi.sh | File | 468 bytes | May 15 2023 14:30:31. | |
| kmod.prov | File | 682 bytes | May 15 2023 14:30:31. | |
| macros | File | 43988 bytes | December 17 2024 04:11:02. | |
| nodejs_native.req | File | 70 bytes | March 10 2021 14:47:25. | |
| python-macro-helper | File | 634 bytes | December 17 2024 04:11:01. | |
| pythondeps.sh | File | 921 bytes | March 31 2023 15:44:53. | |
| pythondistdeps.py | File | 11184 bytes | March 31 2023 15:44:53. | |
| rpm.daily | File | 296 bytes | December 17 2024 04:11:01. | |
| rpm.log | File | 61 bytes | December 17 2024 04:11:01. | |
| rpm.supp | File | 688 bytes | December 17 2024 04:11:01. | |
| rpm2cpio.sh | File | 1249 bytes | December 17 2024 04:11:01. | |
| rpmdb_dump | File | bytes | January 01 1970 00:00:00. | |
| rpmdb_load | File | bytes | January 01 1970 00:00:00. | |
| rpmdb_loadcvt | File | 1467 bytes | December 17 2024 04:11:01. | |
| rpmdb_recover | File | bytes | January 01 1970 00:00:00. | |
| rpmdb_stat | File | bytes | January 01 1970 00:00:00. | |
| rpmdb_upgrade | File | bytes | January 01 1970 00:00:00. | |
| rpmdb_verify | File | bytes | January 01 1970 00:00:00. | |
| rpmpopt-4.14.3 | File | 11470 bytes | December 17 2024 04:11:02. | |
| rpmrc | File | 17154 bytes | December 17 2024 04:11:02. | |
| scldeps.sh | File | 254 bytes | August 25 2017 08:23:02. | |
| tgpg | File | 929 bytes | December 17 2024 04:11:01. |
#!/bin/bash
ac=$#
cmd=`basename $0`
rpmdb=/var/lib/rpm
dbfiles="`/bin/ls -1 $rpmdb/*`"
dbdump=/usr/lib/rpm/rpmdb_dump
dbload=/usr/bin/db_load
set `$dbdump -V` || {
echo "The file $dbdump, usually in the rpm-devel package, is needed."
echo " Please install the rpm-devel package and retry $cmd."
exit 1
}
dumpfmt="${5%%:}"
set `$dbload -V` || {
echo "The file $dbload, usually in the db4-utils package, is needed."
echo " Please install the db4_utils package and retry $cmd."
exit 1
}
loadfmt="${5%%:}"
[ "$dumpfmt" = "$loadfmt" ] && {
echo "Both $dbdump and $dbload use db-$loadfmt format."
echo "No conversion is possible."
exit 0
}
[ "$ac" != "0" -o "`/usr/bin/id -u`" != "0" ] && {
echo "$cmd: Convert $rpmdb files to db-$loadfmt format."
echo "$cmd: Must be run as root, takes no arguments."
exit 1
}
echo "Converting to db-$loadfmt compatible format (1-10 minutes per file) ..."
dbfile=
trap "
[ -n "$dbfile" ] && {
[ -f $dbfile-O ] && /bin/mv $dbfile-O $dbfile
/bin/rm -f $dbfile-N
}
exit 1
" 1 2 3 15
rm -f $rpmdb/__db*
for dbfile in $dbfiles
do
echo " `/usr/bin/file $dbfile`"
$dbdump $dbfile | $dbload $dbfile-N || {
echo "Failed conversion:"
echo " $dbdump $dbfile | $dbload $dbfile-N"
echo "Cleaning up and exiting ..."
/bin/rm -f $dbfile-N
exit 1
}
/bin/mv $dbfile $dbfile-O
/bin/mv $dbfile-N $dbfile
/bin/rm -f $dbfile-O
done
echo "Done!"
exit 0
SILENT KILLER Tool