Configurando no Ubuntu 14.04, fiel [duplicado]

1

Esta é a minha versão atual do Ubuntu:

root@vps132318:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.2 LTS
Release:    14.04
Codename:   trusty

Eu sei que esta pergunta foi feita várias vezes e eu verifiquei todas elas. Para todos os casos, o problema era a versão atual do Ubuntu. Embora eu use a versão 14.04, e quando eu digito

root@ssss:~# sudo add-apt-repository ppa:kurento/kurento
kurento/kurento
Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --
homedir /tmp/tmp.mvnesaHwib --no-auto-check-trustdb --trust-model always --
keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --
keyserver keyserver.ubuntu.com --recv-keys

root@ssss:~# sudo apt-get update
W: Failed to fetch      
http://ppa.launchpad.net/kurento/kurento/ubuntu/dists/lucid/main/binary-amd64/Packages  404  Not Found
W: Failed to fetch http://ppa.launchpad.net/kurento/kurento/ubuntu/dists/lucid/main/binary-i386/Packages  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.

root@ssss:~# sudo apt-get install kurento-media-server
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package kurento-media-server

As duas soluções que encontrei foram:

  1. adicione uma chave; mas para os casos deles, a parte --recv-keys estava dando a eles uma chave, então eles estavam adicionando a chave. O meu não. A chave que falta não me é dada.

  2. sudo update apt-get , no entanto, sem sorte para mim novamente.

  3. Eu também tentei apt-upgrade , sem sorte.

  4. Por fim, tentei limpar o diretório trusted.gpg.d , mas não tive sorte novamente.

  5. Importando automaticamente todas as chaves GPG ausentes Mas quando tento sudo launchpad-getkeys , isso é o que eu recebo:

    Trying to import all the missing keys
    Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --homedir /tmp/tmp.emB6wtnXhs --no-auto-check-trustdb --trust-model always --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --keyserver hkp://keyserver.ubuntu.com:80 --keyserver-options http-proxy= --recv-keys
    Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --homedir /tmp/tmp.8jUZsvy2cn --no-auto-check-trustdb --trust-model always --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --keyserver hkp://keyserver.ubuntu.com:80 --keyserver-options http-proxy= --recv-keys
    Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --homedir /tmp/tmp.1pWJuVDYhk --no-auto-check-trustdb --trust-model always --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --keyserver hkp://keyserver.ubuntu.com:80 --keyserver-options http-proxy= --recv-keys
    Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --homedir /tmp/tmp.db8jIl1DVT --no-auto-check-trustdb --trust-model always --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --keyserver hkp://keyserver.ubuntu.com:80 --keyserver-options http-proxy= --recv-keys
    Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --homedir /tmp/tmp.VpS5aiBz52 --no-auto-check-trustdb --trust-model always --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --keyserver hkp://keyserver.ubuntu.com:80 --keyserver-options http-proxy= --recv-keys
    
    launchpad-getkeys has finished importing all missing GPG keys. Try running sudo apt-get update - you shouldn't see any key  errors any more.
    .............................................................
    Note that launchpad-getkeys imports missing GPG keys but does not fix broken keys.
    

    e, em seguida, sudo apt-get update :

    Err http://ppa.launchpad.net lucid/main amd64 Packages             
    404  Not Found
    Err http://ppa.launchpad.net lucid/main i386 Packages
    404  Not Found
    Ign http://ppa.launchpad.net lucid/main Translation-en_GB
    Ign http://ppa.launchpad.net lucid/main Translation-en
    Ign http://ppa.launchpad.net lucid/main Translation-en_GB
    Ign http://ppa.launchpad.net lucid/main Translation-en
    W: Failed to fetch      
    http://ppa.launchpad.net/kurento/kurento/ubuntu/dists/lucid/main/binary-amd64/Packages  404  Not Found
    W: Failed to fetch http://ppa.launchpad.net/kurento/kurento/ubuntu/dists/lucid/main/binary-i386/Packages  404  Not Found
    E: Some index files failed to download. They have been ignored, or old ones used instead.
    

Estou perdendo algo ou fazendo algo errado?

    
por senty 10.05.2015 / 18:50

1 resposta

2

Por qualquer motivo, há um 10.04 PPA em suas fontes. Observe atentamente o URL em falha:

http://ppa.launchpad.net/kurento/kurento/ubuntu/dists/lucid/main/binary-amd64/Packages  

lucid é 10,04.

É possível que você tenha duas entradas desse PPA, uma para 14.04, que você acabou de adicionar, e uma para 10.04, provavelmente uma ressaca de alguma atualização. Do grep lucid /etc/apt/sources.list /etc/apt/sources.list.d/*.list , encontre as entradas incorretas e exclua-as.

    
por muru 10.05.2015 / 20:11