How To Install scotch-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install scotch-devel
on Rocky Linux 8.
What is scotch-devel
This package contains development libraries for scotch.
We can use yum
or dnf
to install scotch-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install scotch-devel.
Install scotch-devel 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 scotch-devel
using dnf
by running the following command:
sudo dnf -y install scotch-devel
Install scotch-devel 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 scotch-devel
using yum
by running the following command:
sudo yum -y install scotch-devel
How To Uninstall scotch-devel on Rocky Linux 8
To uninstall only the scotch-devel
package we can use the following command:
sudo dnf remove scotch-devel
scotch-devel Package Contents on Rocky Linux 8
/usr/include/esmumps.h
/usr/include/scotch-32.h
/usr/include/scotch.h
/usr/include/scotchf-32.h
/usr/include/scotchf.h
/usr/lib/libesmumps.so
/usr/lib/libscotch.so
/usr/lib/libscotcherr.so
/usr/lib/libscotcherrexit.so
/usr/lib/libscotchmetis.so
/usr/include/esmumps.h
/usr/include/scotch-64.h
/usr/include/scotch.h
/usr/include/scotchf-64.h
/usr/include/scotchf.h
/usr/lib64/libesmumps.so
/usr/lib64/libscotch.so
/usr/lib64/libscotcherr.so
/usr/lib64/libscotcherrexit.so
/usr/lib64/libscotchmetis.so
References
Summary
In this tutorial we learn how to install scotch-devel
on Rocky Linux 8 using yum and dnf.