Note: This guide is specifically for the DEBIX Model A, which is an ARM-based single-board computer running Ubuntu 22.04.
I am affiliated with the DEBIX project. My goal in posting this guide is to provide helpful information for users of DEBIX hardware.
Add 32-bit support and run 32-bit application on DEBIX Model A with 64-bit Ubuntu 22.04
1. Install 32-bit support:
3. Install 32-bit libraries:
Note: The library files needed to install 32-bit applications depend on your application.
4. Command format when installing 32-bit application:
Note: XXX represents the name of the application you want to install.
5. Run the 32-bit script to verify:
Copy a programme compiled with 32-bit compiler to DEBIX, give it run privileges and run it successfully:
I am affiliated with the DEBIX project. My goal in posting this guide is to provide helpful information for users of DEBIX hardware.
Add 32-bit support and run 32-bit application on DEBIX Model A with 64-bit Ubuntu 22.04
1. Install 32-bit support:
2. Update the package list:sudo dpkg --add-architecture armhf
sudo apt update
3. Install 32-bit libraries:
Note: The library files needed to install 32-bit applications depend on your application.
sudo apt install libc6:armhf libncurses5:armhf libstdc++6:armhf
4. Command format when installing 32-bit application:
Note: XXX represents the name of the application you want to install.
sudo apt install XXX:armhf
5. Run the 32-bit script to verify:
Copy a programme compiled with 32-bit compiler to DEBIX, give it run privileges and run it successfully:
Last edited:

