如何在电脑上安装wine

如何在电脑上安装wine

我需要在我的电脑上安装 wine 但无法安装 wine :(

root@RMX:~# dpkg --add-architecture i386 

root@RMX:~# apt-get update 

Hit http://ftp.debian.org unstable Release.gpg Ign http://packagecloud.io any Release.gpg

Ign http://old.kali.org moto/non-free Translation-en_US
Ign http://old.kali.org moto/non-free Translation-en
Fetched 37.2 MB in 6min 11s (100 kB/s)
W: There is no public key available for the following key IDs: 7638D0442B90D010 
W: There is no public key available for the following key IDs: 7638D0442B90D010 
W: GPG error: http://http.kali.org kali-bleeding-edge 
Release: The following signatures were invalid: 
        KEYEXPIRED 1425567400 
        KEYEXPIRED 1425567400 
        KEYEXPIRED 1425567400 
W: There is no public key available for the following key IDs: 7638D0442B90D010 
W: GPG error: http://http.kali.org kali-rolling Release: The following signatures were invalid: 
        KEYEXPIRED 1425567400 
        KEYEXPIRED 1425567400 
        KEYEXPIRED 1425567400 
W: Failed to fetch http://packagecloud.io/AtomEditor/atom/any/dists/any/main/binary-amd64/Packages 
301 Moved Permanently [IP: 50.97.198.58 80]
E: Some index files failed to download. They have been ignored, or old ones used instead.

root@RMX:~# apt-get install wine-bin:i386

Reading package lists... Done Building dependency tree
Reading state information... Done You might want to run 'apt-get -f install' to correct these: 
The following packages have unmet dependencies: 
   playonlinux : Depends: icoutils 
   tuxcut : Depends: arptables but it is not going to be installed 
            Depends: wondershaper but it is not going to be installed 
   wine-bin:i386 : 
            Depends: wine32:i386 (>= 1.6.2-20) but it is not going to be installed 
            PreDepends: dpkg:i386 (>= 1.17.5) 
   wine64-bin : 
            Conflicts: wine-bin:i386 but 1.6.2-20 is to be installed
W: Ignoring Provides line with DepCompareOp for package apt-transport-https
W: Ignoring Provides line with DepCompareOp for package libapt-inst

答案1

root@RMX:~# wine

Debian / Wine:多架构说明

这是wine64-bin帮助程序包,它本身不提供 wine,而只是提供有关在系统上启用多架构的以下信息,以便能够安装和运行 32 位 wine 包。

应以 root 或 via 身份发出以下命令sudo以启用多架构(最后一个命令安装 32 位 wine):

# dpkg --add-architecture i386
# apt-get update
# apt-get install wine-bin:i386

请务必小心,因为上面的空格很重要。请注意,此包 ( wine64-bin) 将在此过程中被删除。有关多架构转换的更多信息,请参阅:http://wiki.debian.org/Multiarch/HOWTO

相关内容