Ubuntu 16.04 64-bit compatible with 32-bit programs in three steps

Ubuntu 16.04 64-bit compatible with 32-bit programs in three steps

Step 1: Confirm the architecture of your system

dpkg --print-architecture
Output:
amd64
The result is amd64, which means the system is 64-bit.

Step 2: Confirm that multi-architecture support is enabled

dpkg --print-foreign-architectures
Output:
i386

If i386 is not output here, you need to enable multi-architecture support

sudo dpkg --add-architecture i386
sudo apt-get update

Step 3: Install the corresponding 32-bit library

sudo apt-get dist-upgrade (#This step is to update all software. If you don't need the new version of the software so urgently, you can skip it)
Or just install the related libraries sudo apt-get install lib32z1 lib32ncurses5 (some also require 32-bit stdc++ library lib32stdc++6-4.8-dbg)
Install gcc multilab
sudo apt-get install gcc-multilib g++-multilib

Summarize

The above is the three steps of Ubuntu 16.04 64-bit compatible with 32-bit programs introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • How to deploy Python Web program to Ubuntu server
  • Summary of three methods of installing programs under Ubuntu (recommended)
  • Summary of installing Nginx server program and simple environment configuration on Ubuntu
  • How to add application quick launcher in Ubuntu
  • Steps to connect Ubuntu to Android debugging program using WiFi

<<:  Example of using swiper plugin to implement carousel in Vue

>>:  10 SQL statement optimization techniques to improve MYSQL query efficiency

Recommend

Web design must also first have a comprehensive image positioning of the website

⑴ Content determines form. First enrich the conten...

Tips for data statistics in MySQL

As a commonly used database, MySQL requires a lot...

Problems and solutions for installing Docker on Alibaba Cloud

question When installing Docker using Alibaba Clo...

Use Docker to build a Git image using the clone repository

Overview I have been using Docker for more than a...

Specific steps for Vue browser to return monitoring

Preface When sharing a page, you hope to click th...

Vue implements scrollable pop-up window effect

This article shares the specific code of Vue to a...

Sharing tips on using scroll bars in HTML

Today, when we were learning about the Niu Nan new...

Solution to MySQL error code 1862 your password has expired

The blogger hasn't used MySQL for a month or ...

Nginx service 500: Internal Server Error one of the reasons

500 (Internal Server Error) The server encountere...

Rounding operation of datetime field in MySQL

Table of contents Preface 1. Background 2. Simula...

SVG button example code based on CSS animation

The specific code is as follows: <a href="...

How to use Nginx to carry rtmp live server

This time we set up an rtmp live broadcast server...