What's the output of 'rpm -q glibc' ?
[root@smeserver ~]# rpm -q glibc
glibc-2.5-118.el5_10.2
glibc-2.5-118.el5_10.2
What bothers me that i cannot uninstall one of them as the appear to have the same name.
Is is possible that this is both the 32 bits and the 64 bits glibc installed? If so, how can i select one of them to uninstall?
--edit--
Yup: Both
[root@smeserver ~]# rpm -q --queryformat '%{NAME}-%{VERSION}-%{RELEASE}.%{ARCH}.rpm\n' glibc
glibc-2.5-118.el5_10.2.
x86_64.rpm
glibc-2.5-118.el5_10.2.
i686.rpm
[root@smeserver ~]# rpm -q --queryformat '%{NAME}-%{VERSION}-%{RELEASE}.%{ARCH}.rpm\n' glibc-common
glibc-common-2.5-118.el5_10.2.x86_64.rpm
Can I safely use:
rpm -e glibc-2.5-118.el5_10.2.
i686.rpm ?
It seems that this will remove a lot of files also in the glibc-2.5-118.el5_10.2.x86_64.rpm ?