Steam 抱怨缺少 32 位 libc.so.6

Steam 抱怨缺少 32 位 libc.so.6

我已经下载了 Steam,但尝试运行它时出现错误:“您缺少以下 32 位库,Steam 可能无法运行:libc.so.6”。因此,我尝试下载它并输入,sudo apt-get install libc-i386但它只给了我:

Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libc-i386

我尝试sudo apt-get update运行它sudo apt-get install libc-i386,但它再次给出了相同的错误代码。有什么帮助吗?另外,我只运行了几个小时,所以我对此不太了解。

抱歉,我运行了第二个,它给了我很多链接,它不允许我添加到这个编辑中,但最后一部分说

E: Failed to fetch http://ports.ubuntu.com/ubuntu-ports/dists/xenial/main/binary-i386/Packages  404  Not Found [IP: 91.189.88.150 80]
E: Failed to fetch http://ports.ubuntu.com/ubuntu-ports/dists/xenial-updates/main/binary-i386/Packages  404  Not Found [IP: 91.189.88.150 80]
E: Failed to fetch http://ports.ubuntu.com/ubuntu-ports/dists/xenial-security/main/binary-i386/Packages  404  Not Found [IP: 91.189.88.150 80]
E: Some index files failed to download. They have been ignored, or old ones used instead.

答案1

您可以直接下载软件包:

$ wget http://security.ubuntu.com/ubuntu/pool/main/g/glibc/libc6-i386_2.23-0ubuntu10_amd64.deb
$ sudo dpkg -i libc6-i386_2.23-0ubuntu10_amd64.deb

如果您没有wget,您可以使用浏览器访问链接并下载文件。然后使用路径运行命令(可以是 /home/YOUR_USER/Downloads)。

相关内容