Unix/Linux : How to fix CentOS yum duplicate glibc or device-mapper-libs dependency error?
Encountered a weird problem or yum update error yesterday while performing this command :
>sudo yum update
on one of my Cent OS server.
The update process failed half way and further attempt to sudo yum update again will produce error messages such as :
glibc-2.12-1.166.el6_7.3.x86_64 is a duplicate with glibc-2.12-1.166.el6_7.1.x86_64
and
device-mapper-libs-1.02.95-3.el6_7.2.x86_64 was supposed to be removed but is not!
glibc-devel-2.12-1.166.el6_7.1.x86_64 was supposed to be removed but is not!
From the error messages, the recommended solution is to :
1) use yum check
-- which will take a while
2) use --skip-broken
-- which will fail halfway as well.
Apparently, this problem was caused duplicate packages that was conflicting with each other. The third solution...which is to ignore the multiple or duplicate packages and brute force yum update will brake your server and cause even more problem later.
To fix this problem :
Perform the following steps, with these commands :
> yum-complete-transaction
> package-cleanup --dupes
> package-cleanup --cleandupes
> yum update
NOTE : You might have to repeat yum-complete-transaction
multiple times after you've clean up the duplicate packages.
Reference :
http://serverfault.com/questions/715547/cloudlinux-6-6-x86-64-yum-error
See also : Fix yum-complete-transaction error
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+7.4k Golang : Handling Yes No Quit query input
+6k Golang : Build new URL for named or registered route with Gorilla webtoolkit example
+18.8k Golang : Padding data for encryption and un-padding data for decryption
+4.9k Golang : PGX CopyFrom to insert rows into Postgres database
+37.3k Upload multiple files with Go
+3.6k Golang : Switch Redis database redis.NewClient
+13.3k Golang : Read XML elements data with xml.CharData example
+13.7k Golang : Human readable time elapsed format such as 5 days ago
+14.4k Golang : Missing Bazaar command
+6.3k PHP : Proper way to get UTF-8 character or string length
+11.6k Golang : How to detect a server/machine network interface capabilities?
+7.4k Golang : Set horizontal, vertical scroll bars policies and disable interaction on Qt image