How to Enable 32-bit Support on 64-bit Ubuntu 13.10 and Above

Running 32-bit applications on a 64-bit Ubuntu system is easy by enabling 32-bit support. This guide helps set up multiarch support and install necessary 32-bit libraries on Ubuntu 13.10 or greater.

Introduction to 32-bit Support on Ubuntu

To enable 32-bit architecture, open a terminal and run: sudo dpkg --add-architecture i386

Step 1 - Enable Multiarch

Next, update the system’s package lists to fetch 32-bit libraries. Use the following command: sudo apt-get update

Step 2 - Update Package Lists

Install commonly used 32-bit libraries like libc6 with: sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386

Step 3 - Install 32-bit Libraries

To check supported architectures, run: dpkg --print-foreign-architectures

Verify and Run 32-bit Applications

For more detailed Linux guides, visit Unixmen.com and explore how-tos, tips, and tricks on using Ubuntu and other distributions effectively.

Visit Unixmen.com for More Guides