如何在64位Ubuntu 21.10上安装32位libGL.so.1?

如何在64位Ubuntu 21.10上安装32位libGL.so.1?

我想在 64 位 Ubuntu 21.10 上运行 32 位软件,但出现错误:

error while loading shared libraries: libGL.so.1: cannot open shared object file: No such file or directory

这是因为该库是 64 位的。所以我尝试安装它的32位版本,但它不起作用。

首先,我将 i386 架构添加到我的 Ubuntu 中

sudo dpkg --add-architecture i386

然后我尝试安装库:

sudo apt-get -y install libgl1:i386
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 gdm3 : Depends: gnome-session but it is not going to be installed or
                 x-session-manager or
                 x-window-manager or
                 x-terminal-emulator
        Recommends: gnome-session but it is not going to be installed or
                    x-session-manager
        Recommends: xserver-xephyr but it is not going to be installed
        Recommends: xserver-xorg but it is not going to be installed
        Recommends: zenity but it is not going to be installed
 gnome-session-bin : Depends: libegl1 but it is not going to be installed
                     Depends: libgl1 but it is not going to be installed
 gnome-shell : Depends: evolution-data-server (>= 3.33.1) but it is not going to be installed
               Depends: gir1.2-mutter-8 (>= 40.0) but it is not going to be installed
               Depends: gir1.2-webkit2-4.0 (>= 2.16.0) but it is not going to be installed
               Depends: libmutter-8-0 (>= 40.0) but it is not going to be installed
               Recommends: gnome-control-center (>= 1:3.25.2) but it is not going to be installed
               Recommends: gnome-user-docs but it is not going to be installed
               Recommends: ubuntu-session but it is not going to be installed or
                           gnome-session but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.

怎么解决呢?

预先感谢您的建议。

答案1

尝试: sudo apt-get install libgl1-mesa-glx:i386

相关内容