How To Install atlas on Rocky Linux 8
Introduction
In this tutorial we learn how to install atlas
on Rocky Linux 8.
What is atlas
The ATLAS (Automatically Tuned Linear Algebra Software) project is an ongoing research effort f(ocusing on applying empirical techniques in order to provide portable performance. At present, it provides C and Fortran77 interfaces to a portably efficient BLAS implementation, as well as a few routines from LAPACK. The performance improvements in ATLAS are obtained largely via compile-time optimizations and tend to be specific to a given hardware configuration. In order to package ATLAS some compromises are necessary so that good performance can be obtained on a variety of hardware. This set of ATLAS binary packages is therefore not necessarily optimal for any specific hardware configuration. However, the source package can be used to compile customized ATLAS packages; see the documentation for information.
We can use yum
or dnf
to install atlas
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install atlas.
Install atlas on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install atlas
using dnf
by running the following command:
sudo dnf -y install atlas
Install atlas on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install atlas
using yum
by running the following command:
sudo yum -y install atlas
How To Uninstall atlas on Rocky Linux 8
To uninstall only the atlas
package we can use the following command:
sudo dnf remove atlas
atlas Package Contents on Rocky Linux 8
/etc/ld.so.conf.d/atlas-i386.conf
/usr/lib/.build-id
/usr/lib/.build-id/18
/usr/lib/.build-id/18/8d995c81ec23ef8d8078b60b8fb0d62f6fb6d5
/usr/lib/.build-id/25
/usr/lib/.build-id/25/a4e339992cfd89c547298a57a2af6a5df9e1ec
/usr/lib/atlas
/usr/lib/atlas/libsatlas.so.3
/usr/lib/atlas/libsatlas.so.3.10
/usr/lib/atlas/libtatlas.so.3
/usr/lib/atlas/libtatlas.so.3.10
/usr/share/doc/atlas
/usr/share/doc/atlas/README.dist
/etc/ld.so.conf.d/atlas-x86_64.conf
/usr/lib/.build-id
/usr/lib/.build-id/5d
/usr/lib/.build-id/5d/08433085461eb7b239b03424d73319bf0fcf2a
/usr/lib/.build-id/e1
/usr/lib/.build-id/e1/2c54b04637b6b77ba77dae149d2abd73653022
/usr/lib64/atlas
/usr/lib64/atlas/libsatlas.so.3
/usr/lib64/atlas/libsatlas.so.3.10
/usr/lib64/atlas/libtatlas.so.3
/usr/lib64/atlas/libtatlas.so.3.10
/usr/share/doc/atlas
/usr/share/doc/atlas/README.dist
References
Summary
In this tutorial we learn how to install atlas
on Rocky Linux 8 using yum and dnf.