Add 32-bit support and run 32-bit application on DEBIX Model A with 64-bit Ubuntu 22.04
1. Install 32-bit support:
sudo dpkg --add-architecture armhf
2.Update the package list:
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: