How to remove installed duplicate rpm packages?
To remove duplicate rpm packages from the system download the listrpmdupes, make it executable with the command: chmod a+x listrpmdupes Run the program with: ./listrpmdupes This will list all the system duplicate rpm packages, with the new versions in the column, and the old versions in the rows in the bottom, when you are satisfy with the result, remove the old versions with the command: rpm -e old_versions Top