Como faço para instalar o vinho no Ubuntu 14.04 lts?

0

Eu tenho tentado instalar o wine, mas quando eu uso o comando sudo apt-get install wine i recebo esta mensagem:

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:
  unity-control-center : Depends: libcheese-gtk23 (>= 3.4.0) but it is not going to be installed
  Depends: libcheese7 (>= 3.0.1) but it is not going to be installed
  wine : Depends: wine1.6 or wine1.8 but it is not going to be installed
  E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.

se você quiser informações adicionais, me diga os comandos e eu os postarei

    
por Alux Anastasakos 13.04.2016 / 19:22

1 resposta

0

Você pode tentar executar este comando:

sudo apt-get install -f

Ele deve corrigir as dependências e instalar pacotes perdidos automaticamente.

Se não for suficiente ou você receber alguns erros, você pode tentar instalar pacotes ausentes manualmente com este comando:

sudo apt-get install libcheese-gtk23 libcheese7 unity-control-center

Para mais informações sobre a opção apt-get e -f você pode ler o manual rodando isto:

man apt-get

Espero que isso possa ajudar você.

    
por Danibix 13.04.2016 / 19:39