Fix yum-complete-transaction error
Ok. I tried to execute
sudo yum update
command today and I was greeted with this line :There are unfinished transactions remaining. You might consider running yum-complete-transaction first to finish them.
Somehow instinctively I just typed in
sudo yum yum-complete-transaction
and hit the enter key. Hoping that it will work out but at the end... it did not.It was not the right command parameter nor it is the right way to do so.
The solution is to do these :
sudo yum clean all
sudo /usr/sbin/yum-complete-transaction
After that, execute
sudo yum update
and everything will be fine and dandy.
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.5k Golang : Hue, Saturation and Value(HSV) with OpenCV example
+14.6k Golang : How to determine if user agent is a mobile device example
+9.7k Golang : Sort and reverse sort a slice of floats
+7.6k Gogland : Single File versus Go Application Run Configurations
+51.3k Golang : Disable security check for HTTPS(SSL) with bad or expired certificate
+5.1k Golang : Check if a word is countable or not
+14.1k Golang : concatenate(combine) strings
+7k How to let Facebook Login button redirect to a particular URL ?
+26.8k Golang : How to check if a connection to database is still alive ?
+20.8k Golang : Saving private and public key to files
+14.3k Golang : Convert IP version 6 address to integer or decimal number
+5.4k Swift : Convert string array to array example