How To Install libglobalarrays-dev on Debian 12
Introduction
In this tutorial we learn how to install libglobalarrays-dev
on Debian 12.
What is libglobalarrays-dev
libglobalarrays-dev is:
Global Arrays is a portable Non-Uniform Memory Access (NUMA) shared-memory programming environment for distributed and shared memory computers. It augments the message-passing model by providing a shared-memory like access to distributed dense arrays.
ARMCI provides one-sided remote memory operations used by GA.
ComEx (Communication Runtime for Extreme Scale) provides vector and strided interfaces to optimize performance of remote memory copy operations for non-contiguous data.
DRA (Disk Resident Arrays) is a parallel I/O library that maintains dense 2-dim arrays on disk.
SF (Shared Files) is a parallel I/O library that allows noncollective I/O to a parallel file.
EAF (Exclusive Access Files) is parallel I/O library that supports I/O to private files.
TCGMSG is a simple, efficient, but becoming obsolete message-passing library.
TCGMSG-MPI is a TCGMSG interface implementation on top of MPI and ARMCI.
MA is a dynamic memory allocator/manager for Fortran and C programs.
GA++ is a C++ binding for global arrays.
This package contains the static libraries and header files. Static libraries are provided for both OpenMPI and MPICH.
There are three methods to install libglobalarrays-dev
on Debian 12. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libglobalarrays-dev Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libglobalarrays-dev
using apt-get
by running the following command:
sudo apt-get -y install libglobalarrays-dev
Install libglobalarrays-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libglobalarrays-dev
using apt
by running the following command:
sudo apt -y install libglobalarrays-dev
Install libglobalarrays-dev Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libglobalarrays-dev
using aptitude
by running the following command:
sudo aptitude -y install libglobalarrays-dev
How To Uninstall libglobalarrays-dev on Debian 12
To uninstall only the libglobalarrays-dev
package we can use the following command:
sudo apt-get remove libglobalarrays-dev
Uninstall libglobalarrays-dev And Its Dependencies
To uninstall libglobalarrays-dev
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove libglobalarrays-dev
Remove libglobalarrays-dev Configurations and Data
To remove libglobalarrays-dev
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge libglobalarrays-dev
Remove libglobalarrays-dev configuration, data, and all of its dependencies
We can use the following command to remove libglobalarrays-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libglobalarrays-dev
Dependencies
libglobalarrays-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libglobalarrays-dev
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.