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
+29.2k Golang : Login(Authenticate) with Facebook example
+7.6k Javascript : How to check a browser's Do Not Track status?
+17.1k Golang : Get future or past hours, minutes or seconds
+18.8k Golang : Populate dropdown with html/template example
+11.8k Linux : How to install driver for 600Mbps Dual Band Wifi USB Adapter
+39.7k Golang : UDP client server read write example
+6.9k Ubuntu : connect() to unix:/var/run/php5-fpm.sock failed (13: Permission denied) while connecting to upstream
+6.6k Get Facebook friends working in same company
+5.7k PHP : How to check if an array is empty ?
+19.6k Golang : How to get time from unix nano example
+19.7k Golang : Reset or rewind io.Reader or io.Writer
+13.9k Golang : Chunk split or divide a string into smaller chunk example