我寻找了很多天的解决方案,但我没有找到它。当我尝试为debian安装steam时,我遇到了这个错误:
dpkg -i steam-debian_1.0.0.36-4_all.deb
dpkg : erreur de traitement de steam-debian_1.0.0.36-4_all.deb (--install) :
erreur d'analyse, dans le fichier '/var/lib/dpkg/tmp.ci/control' vers la ligne 7 paquet 'steam-debian':
champ « Depends », nom de paquet incorrect « libgl1-mesa-glx:i386 » : caractère « : » non autorisé (seuls les lettres, les chiffres et « -+._ » le sont)
Des erreurs ont été rencontrées pendant l'exécution :
steam-debian_1.0.0.36-4_all.deb"control“文件:
Package: steam-debian
Source: steam
Version: 1.0.0.36-4
Architecture: all
Maintainer: Keith Henderson <keithhendersonjr@gmail.com>
Installed-Size: 5427.2
Depends: python, curl, libc6, python-apt, realpath, xterm | gnome-terminal | konsole, xz- utils, zenity, ttf-mscorefonts-installer, libgl1-mesa-glx:i386, libgl1-mesa-dri:i386
Conflicts: steam, steam64
Replaces: steam, steam64
Section: games
Priority: optional
Homepage: http://www.steampowered.com/
Description: A modified version of the Steam .deb
Note that this version of the .deb is meant
to be installed and ran on Debian Testing.
The command to launch is steam-debian谢谢你
发布于 2013-04-03 03:35:55
正如错误所述,dpkg无法识别:i386标记。此内标识来自dpkg multilib实现(http://wiki.debian.org/Multiarch/Implementation)。在dpkg 1.16.2中实现的Multilib。Debian稳定版目前使用的是dpkg 1.15.8 (http://packages.debian.org/squeeze/dpkg)。查看包描述,它显然是为Debian测试而设计的,并且您使用的是dpkg的旧(或稳定)版本,这是不兼容的。
https://stackoverflow.com/questions/15737326
复制相似问题