How To Install aqbanking on AlmaLinux 8
Introduction
In this tutorial we learn how to install aqbanking
on AlmaLinux 8.
What is aqbanking
The intention of AqBanking is to provide a middle layer between the program and the various Online Banking libraries (e.g. AqHBCI). The first backend which is already supported is AqHBCI, a library which implements a client for the German HBCI (Home Banking Computer Interface) protocol. Additionally, Aqbanking provides various plugins to simplify import and export of financial data. Currently there are import plugins for the following formats format), SWIFT (MT940 and MT942).
We can use yum
or dnf
to install aqbanking
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install aqbanking.
Install aqbanking on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install aqbanking
using dnf
by running the following command:
sudo dnf -y install aqbanking
Install aqbanking on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install aqbanking
using yum
by running the following command:
sudo yum -y install aqbanking
How To Uninstall aqbanking on AlmaLinux 8
To uninstall only the aqbanking
package we can use the following command:
sudo dnf remove aqbanking
References
Summary
In this tutorial we learn how to install aqbanking
on AlmaLinux 8 using yum and dnf.