Instalando vinho em 64 bits

7

Eu tentei instalar o vinho através do centro de software e do terminal e recebo este erro.

chris@ubuntu:~$ sudo apt-get install wine1.5
[sudo] password for chris: 
Reading package lists... Done
Building dependency tree       
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:
 wine1.5 : Depends: wine1.5-i386 (= 1.5.16-0ubuntu1) but it is not installable
           Recommends: gnome-exe-thumbnailer but it is not going to be installed or
                       kde-runtime but it is not going to be installed
           Recommends: ttf-droid
           Recommends: ttf-mscorefonts-installer but it is not going to be installed
           Recommends: ttf-umefont but it is not going to be installed
           Recommends: ttf-unfonts-core but it is not going to be installed
           Recommends: winbind but it is not going to be installed
           Recommends: winetricks but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
    
por user106241 07.11.2012 / 17:18

2 respostas

4

Eu tenho o Ubuntu 12.10 64 Bit e não há necessidade de fazer nada adicional, exceto a instalação do PPA. Mas primeiro precisamos consertar seus pacotes quebrados:

Primeiro, fazemos sudo apt-get install -f para corrigir pacotes quebrados

Em seguida, apenas no caso de fazermos sudo apt-get autoremove para fazer alguma limpeza.

Para testar se tudo está corrigido, faça sudo apt-get update . Se terminar sem problemas, então terminamos de corrigir os pacotes. Agora vamos instalar o vinho CORRETAMENTE:

sudo add-apt-repository ppa:ubuntu-wine/ppa e sudo apt-get update e sudo apt-get install wine1.5

Isso fará o download de ambos os pacotes de 32 bits e 64 bits para o Wine, conforme mostrado na seguinte saída:

cyrex@cyrex:~$ sudo aptitude show wine1.5 -v | grep -e Depends
Depends: debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.14), libgettextpo0, wine1.5-i386 (= 1.5.17-0ubuntu4)

No final, ele mostra wine1.5-i386 e eu já testei jogos do MS-DOS e do Windows XP (16 bits e 32 bits) trabalhando no Ubuntu 12.10 64 bits.

    
por Luis Alvarado 16.11.2012 / 19:36
4

Tendo explorado as páginas da Internet e dos fóruns, descobri que o seguinte funcionou para mim: -

Através do terminal, forneça os seguintes códigos, um de cada vez

sudo dpkg --add-architecture i386

sudo apt-get update

sudo apt-get install wine

O download equivale a cerca de 500 mb, mas funcionou!

Estou executando o Linux Mint 14 Mate 64 bit.

    
por John Gardner 16.11.2012 / 00:18

Tags