Ubuntu 15.10 - problema com a instalação do vinho

0

Eu queria instalar o vinho para executar o photoshop e o escritório, mas deparei com esses problemas

quando executo este código:

sudo add-apt-repository ppa:ubuntu-wine/ppa

e eu recebo

gpg: keyring '/tmp/tmpxjwf8eb2/secring.gpg' created
gpg: keyring '/tmp/tmpxjwf8eb2/pubring.gpg' created
gpg: requesting key F9CB8DB0 from hkp server keyserver.ubuntu.com
gpg: /tmp/tmpxjwf8eb2/trustdb.gpg: trustdb created
gpg: key F9CB8DB0: public key "Launchpad PPA for Ubuntu Wine Team" imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
OK'

quais são as chaves ?! e então eu corro este código

sudo apt-get update

e depois recebo

Fetched 32.1 MB in 11min 24s (46.8 kB/s)                                       
Reading package lists... Done
W: GPG error: http://deb.playonlinux.com precise InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY E0F72778C4676186

mais uma vez, disse sth sobre chaves, que eu não conheço. também executando este código:

sudo apt-get install -y wine 1.7

Eu recebo:

libapt-inst1.7 is already the newest version.
libapt-inst1.7 set to manually installed.
wine is already the newest version.
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.8 but it is not going to be installed
 wine1.7-amd64 : Depends: libgphoto2-port10 (>= 2.5.2) but it is not installable
                 Recommends: libgnutls26 but it is not installable
                 Recommends: wine-gecko2.34 but it is not installable
                 Recommends: wine-mono4.5.4 but it is not installable
 wine1.7-i386:i386 : Depends: libgphoto2-port10:i386 (>= 2.5.2) but it is not installable
                     Recommends: libasound2-plugins:i386 but it is not going to be installed
                     Recommends: libgnutls26:i386 but it is not installable
                     Recommends: libpcap0.8:i386 but it is not going to be installed
                     Recommends: wine-gecko2.34:i386 but it is not installable
                     Recommends: wine-mono4.5.4:i386 but it is not installable
E: Unable to correct problems, you have held broken packages.

Eu procurei por dependências não atendidas, mas nenhuma das seguintes funcionou

sudo dpkg --add-architecture i386
sudo apt-get clean
sudo apt-get autoclean
sudo apt-get autoremove
sudo apt-get install -f

é o problema do cartão Garphic? Por que não consigo fazer download de pacotes?!

    
por Sara .Eft 30.01.2016 / 07:12

1 resposta

1

Para adicionar essa chave ausente, faça o download novamente das chaves primeiro:

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys

Em seguida, digite:

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E0F72778C4676186 
sudo apt-get update

Leia sobre criptografia de chave pública e GPG

    
por user284234 30.01.2016 / 07:24