SL7: enable EPEL repos
there is a vast repo for packages not (officially?) maintainted by redhat. to enable this repo (called EPEL) the following steps are needed:
- get and install the epel rpm file:
[code languag="bash"]
$ wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-9.noarch.rpm
$ rpm -ivh epel-release-7-9.noarch.rpm
[/code] - get the gpg key for epel:
- download key:
$ wget https://getfedora.org/static/352C64E5.txt
- check fingerprint:
- get official fingerprint from website: https://getfedora.org/keys/
- compare to value from:
$ gpg --with-fingerprint 352C64E5.txt
- import key:
$ rpm --import 352C64E5.txt
- download key:
src: tecmint.com, web-vision.de (german)