Issue
I am not sure if this is possible or if there's any easier way but I am trying to install a software package but its not available when I search for it within Yum. I read their documentation and they seem to have a fedora package which I think amazon's ec2 linux image is based on(or cent os).
If I just change my repository to point to fedora or download the rpm, would that work? Or would that break something?
Solution
what is this application?
what you can do:
- you have rpm file
$ wget [link to rpm file]
$ su -c 'yum --nogpgcheck localinstall [path to my rpm] - rpm is in testing
$ su -c 'yum install --enablerepo=updates-testing [application name] - You have source application
$ read README file and follow indication
Answered By - bioinfornatics Answer Checked By - Willingham (WPSolving Volunteer)