コンピュータにワインをインストールする方法

コンピュータにワインをインストールする方法

コンピュータにワインをインストールする必要がありますが、ワインをインストールすることはできません:(

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ワイン自体を提供しませんが、32ビットワインパッケージをインストールして実行できるように、システムで複数のアーキテクチャを有効にする方法に関する次の情報を提供するヘルパーパッケージです。

マルチアーキテクチャを有効にするには、次のコマンドをルートまたは経由で実行する必要がありますsudo(最後のコマンドは32ビットワインをインストールします)。

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

上記のスペースは重要ですのでご注意ください。このプロセスでは、このパッケージ(wine64-bin)が削除されます。マルチアーキテクチャ変換の詳細については、次を参照してください。http://wiki.debian.org/Multiarch/HOWTO

おすすめ記事