How to Setup ATrpms Yum Repository on CentOS/RHEL and Fedora

Channel: Linux
Abstract: CentOS and Scientific Linux with all other derived distributions. Create a atrpms.repo file in /etc/yum.repos.d directory and add following content #

ATRPMS is a 3’rd party rpm repository providing up to date packages for Red Hat based systems. We can used it for directly downloading packages or we can use one of the available package manager tools.

  • Read: Adding EPEL and REMI Yum Repository on CentOS & RedHat 7/6/5

To enable atrpms yum repository first login to system using root access. Now import ATrpms signing key for verifying packages using following command.

# rpm --import http://packages.atrpms.net/RPM-GPG-KEY.atrpms

Now create repository file with .repo extension under /etc/yum.repos.d/ directory and add following content as per your operating system.

On CentOS / RHEL / Scientific Linux :-

All the users of RHEL, CentOS and Scientific Linux with all other derived distributions. Create a atrpms.repo file in /etc/yum.repos.d directory and add following content

# vim /etc/yum.repos.d/atrpms.repo
[atrpms]
name=Fedora Core $releasever - $basearch - ATrpms
baseurl=http://dl.atrpms.net/el$releasever-$basearch/atrpms/stable
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms
enabled=1
gpgcheck=1
On Fedora Linux :-

All Fedora users create /etc/yum.repos.d/atrpms.repo and add following content to it.

# vim /etc/yum.repos.d/atrpms.repo
[atrpms]
name=Fedora Core $releasever - $basearch - ATrpms
baseurl=http://dl.atrpms.net/f$releasever-$basearch/atrpms/stable
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms
enabled=1
gpgcheck=1

You can directory download rpm packages from here to add repository in system.

Ref From: tecadmin

Related articles