RPM Segmentation Fault
While I was try to upgrade one of the RPM package on SuSE Linux Server, I’m getting an error message as below:
planetmy1:/var/spool/locks # rpm -Fvh http://server01/openssl-0.9.8a-18.26.x86_64.rpm
Retrieving http://server01/openssl-0.9.8a-18.26.x86_64.rpm
Preparing... Segmentation fault### ( 50%
In /var/log/messages, I can see similar error:
kernel: rpm[21904]: segfault at 0000000000bbbfb0 rip 00002b13dd4c51ba rsp 00007fffcd8c0150 error 4
The solution is:
[root@planetmy1 ~]# rpm --rebuilddb
use –rebuilddb to rebuild the database indices from the installed package headers.
Read more
Possibly Related Posts:
- Google Public DNS Down?
- lppasswd: Unable to open passwd file: Permission denied
- Missing /var/log/lastlog
- Telnet service_limit error
- Google accounts on Twitter
RPM Command
RPM is a powerful Package Manager for major Linux distributions such as Red Hat and SuSE. RPM can be used to build, install, query, verify, update, and remove individual software packages.
01. Install the software package
rpm -ivh {rpm_file}
02. Upgrade package
rpm -Uvh {rpm_file}
03. Erase/remove/ an installed package
rpm -e {package}
Read more
Possibly Related Posts:
- Google Public DNS Down?
- lppasswd: Unable to open passwd file: Permission denied
- Missing /var/log/lastlog
- Telnet service_limit error
- Google accounts on Twitter