Where does yum save the RPM files
Yum the package installer for Redhat based distributions saving the rpm packge in a local folder during the installation. Those rpm packages will be available in the following folder.
/var/cache/yum/<reponame>/packages
Here the reponame varies according to the yum configurations.
We can find out the installed rpm packages from this folder using find command.
find . -name packagename*.rpm
The packagename should be replaced by the required one.
That's all…