Installing ExaGear for Docker on CentOS
CentOS Arm systems support multiple page sizes, that is, 4 KB and 64 KB (usually called "huge pages"). Run the getconf command to query the system page size.
getconf PAGE_SIZE
If the command output is 4096:
The page size of the current OS is 4 KB. In this case, use the release package of ExaGear for Docker on CentOS with 4 KB.
If the command output is 65536:
The page size of the current OS is 64 KB. ExaGear currently does not support OSs with a page size of 64 KB.
ExaGear for Docker on CentOS with 4 KB
This release package consists of the following three packages:
- exagear-core-x64a64-container-<package_version>.aarch64.rpm
- exagear-core-x32a64-container-<package_version>.aarch64.rpm
- exagear-utils-<package_version>.noarch.rpm
Run yum install to install the .rpm packages of the release package in an Arm64 host environment.
sudo yum install exagear-core-x64a64-container-<package_version>.aarch64.rpm exagear-core-x32a64-container-<package_version>.aarch64.rpm exagear-utils-<package_version>.noarch.rpm
Parent topic: ExaGear for Docker on CentOS