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.1k Golang : Identifying Golang HTTP client request
+10.6k Golang : How to unmarshal JSON inner/nested value and assign to specific struct?
+29.3k Golang : Save map/struct to JSON or XML file
+21.6k Golang : GORM create record or insert new record into database example
+15.3k Golang : Accurate and reliable decimal calculations
+8.7k Golang : Find duplicate files with filepath.Walk
+22.6k Generate checksum for a file in Go
+6.3k WARNING: UNPROTECTED PRIVATE KEY FILE! error message
+8k Golang : Handle Palindrome string with case sensitivity and unicode
+10.2k Golang : Print how to use flag for your application example
+23.9k Golang : Fix type interface{} has no field or no methods and type assertions example