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
+48.4k Golang : Upload file from web browser to server
+19.1k Golang : Get RGBA values of each image pixel
+11.2k Golang : How to flush a channel before the end of program?
+6.8k Golang : How to setup a disk space used monitoring service with Telegram bot
+15.1k nginx: [emerg] unknown directive "ssl"
+8.7k Golang : HTTP Routing with Goji example
+5.1k PHP : See installed compiled-in-modules
+25.1k Golang : Convert uint value to string type
+16.9k Golang : Get input from keyboard
+11k Golang : Proper way to test CIDR membership of an IP 4 or 6 address example
+20k Golang : How to get own program name during runtime ?
+16.9k Golang : How to save log messages to file?