How To Install fenicsx-performance-tests on Kali Linux
Introduction
In this tutorial we learn how to install fenicsx-performance-tests
on Kali Linux.
What is fenicsx-performance-tests
fenicsx-performance-tests is:
This package contains solvers for testing the parallel performance of DOLFIN-X and the underlying linear solvers. It tests elliptic equations - Poisson equation and elasticity - in three dimensions.
DOLFIN-X is the next-generation Finite Element solver developed by the FEniCS project.
This package provides precompiled binaries.
There are three methods to install fenicsx-performance-tests
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install fenicsx-performance-tests Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install fenicsx-performance-tests
using apt-get
by running the following command:
sudo apt-get -y install fenicsx-performance-tests
Install fenicsx-performance-tests Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install fenicsx-performance-tests
using apt
by running the following command:
sudo apt -y install fenicsx-performance-tests
Install fenicsx-performance-tests Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install fenicsx-performance-tests
using aptitude
by running the following command:
sudo aptitude -y install fenicsx-performance-tests
How To Uninstall fenicsx-performance-tests on Kali Linux
To uninstall only the fenicsx-performance-tests
package we can use the following command:
sudo apt-get remove fenicsx-performance-tests
Uninstall fenicsx-performance-tests And Its Dependencies
To uninstall fenicsx-performance-tests
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove fenicsx-performance-tests
Remove fenicsx-performance-tests Configurations and Data
To remove fenicsx-performance-tests
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge fenicsx-performance-tests
Remove fenicsx-performance-tests configuration, data, and all of its dependencies
We can use the following command to remove fenicsx-performance-tests
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge fenicsx-performance-tests
Dependencies
fenicsx-performance-tests have the following dependencies:
- libboost-program-options1.74.0
- libc6
- libdolfinx-real2019.2
- libgcc-s1
- libopenmpi3
- libpetsc-real3.14
- libstdc++6
References
Summary
In this tutorial we learn how to install fenicsx-performance-tests
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.