Não é possível instalar o wine no Ubuntu 14.04 lts [duplicado]

2

Estou usando o seguinte artigo para corrigir esse problema: link

Esta é a saída que recebo:

aditya@aditya-Vostro-3446:~/$ sudo apt-get purge wine
[sudo] password for aditya: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package wine is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 41 not upgraded.
aditya@aditya-Vostro-3446:~/$ sudo apt-get autoremove
Reading package lists... Done
Building dependency tree       
Reading state information... Done

0 upgraded, 0 newly installed, 0 to remove and 41 not upgraded.
aditya@aditya-Vostro-3446:~/$ 
aditya@aditya-Vostro-3446:~/$ sudo apt-get install wine
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:
 wine : Depends: wine1.6 but it is not going to be installed or
                 wine1.7 but it is not going to be installed
E: Unable to correct problems, you have held broken packages. 

E quando eu tento instalar o vinho usando o centro de software do Ubuntu eu recebo a seguinte mensagem:

Os seguintes pacotes têm dependências não atendidas:

q4wine: Depends: libc6 (>= 2.14) but 2.15-0ubuntu10.9 is to be installed
        Depends: libgcc1 (>= 1:4.1.1) but 1:4.6.3-1ubuntu5 is to be installed
        Depends: libqt4-dbus (>= 4:4.5.3) but 4:4.8.1-0ubuntu4.8 is to be installed
        Depends: libqt4-network (>= 4:4.5.3) but 4:4.8.1-0ubuntu4.8 is to be installed
        Depends: libqt4-sql (>= 4:4.5.3) but 4:4.8.1-0ubuntu4.8 is to be installed
        Depends: libqt4-xml (>= 4:4.5.3) but 4:4.8.1-0ubuntu4.8 is to be installed
        Depends: libqtcore4 (>= 4:4.8.0) but 4:4.8.1-0ubuntu4.8 is to be installed
        Depends: libqtgui4 (>= 4:4.5.3) but 4:4.8.1-0ubuntu4.8 is to be installed
        Depends: libstdc++6 (>= 4.1.1) but 4.6.3-1ubuntu5 is to be installed
    
por whizcreed 20.01.2015 / 10:40

3 respostas

1

Você pode tentar um dos seguintes:

sudo apt-get -f install

Para forçar a instalação das dependências e tal.

Ou tente instalá-lo por meio do PPA da equipe de vinhos do Ubuntu :

sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get install wine1.7
    
por blade19899 20.01.2015 / 10:51
0

Tente instalar diretamente a última versão:

sudo apt-get install wine1.7

ou (versão anterior):

sudo apt-get install wine1.6
    
por animaletdesequia 20.01.2015 / 10:44
-1

você precisa reinstalar o pacote ttf-mscorefonts-installer porque por padrão a licença para este pacote não é aceita, você precisa aceitar manualmente a licença para este pacote. "O pacote de fontes principais da Microsoft tem dependências não satisfeitas no wine.

"primeiro remova-os do seu sistema como

sudo apt-get remove ttf-mscorefonts-installer

reinstale-o

sudo apt-get install ttf-mscorefonts-installer

depois aceite a licença usando a tecla tab em uma interface gráfica depois de fazer esta instalação qualquer versão do vinho, você pode instalar o vinho do centro de software .Este pacote também é necessário se você quiser instalar o plugin Adobe Flash Player.Nota: wine1. 6.2 é o lançamento estável e o Wine 1.7.34 é o último lançamento de vinho a partir de agora. Você pode consultar

QG do vinho

    
por Mudit Kapil 20.01.2015 / 12:45