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
+10.3k Golang : Print how to use flag for your application example
+17.5k Golang : Get future or past hours, minutes or seconds
+24.6k Golang : Change file read or write permission example
+9.5k Golang : Play .WAV file from command line
+4.8k Chrome : How to block socketloop.com links in Google SERP?
+9.9k Golang : interface - when and where to use examples
+31k Golang : Interpolating or substituting variables in string examples
+6k AWS S3 : Prevent Hotlinking policy
+27.8k PHP : Convert(cast) string to bigInt
+8.3k Golang : Routes multiplexer routing example with regular expression control
+8.6k Golang : How to check if input string is a word?