-
Notifications
You must be signed in to change notification settings - Fork 10
Pre requisites for SeBAz
Deepak Balaji edited this page Apr 10, 2020
·
4 revisions
This page explains what is required in the system to be tested in order for SeBAz to work
With the way SeBAz is compiled, glibc is dynamically linked to the system's installed version. It is forward compatible. Hence, a minimum version of 2.17 is expected.
To check which version of glibc is installed, run the following command
ls /lib/x86_64-linux-gnu/libc-*
The result will be something like /lib/x86_64-linux-gnu/libc-2.30.so where 2.30 signifies the glibc version
Make sure you are using the appropriate version of SeBAz based on the architecture of the system. Only amd64 and i386 are supported. This can be determined using the following command
dpkg --print-architecture
The result would be either
- amd64 - Signifying 64 bit architecture
- i686 - Signifying 32 bit architecture