Requer instalação de pacotes não confiáveis?

76

Eu tentei instalar o VLC Player ontem e recebi o erro Requires installation of untrusted packages . Eu procurei por horas para uma solução para este problema e, finalmente, deparou-se com uma sugestão que dizia para mudar os servidores para baixar as atualizações de. Eu fiz isso e ele me deu um erro 404 quando eu cliquei em "Check" no Update Manager. Eu tentei mudar meu servidor de volta para o principal (e depois disso, vários outros), mas eu ainda estou recebendo um erro 404:

E o outro erro que recebo ao baixar ou atualizar:

Editar: Saída de cat /etc/apt/sources.list :

deb-src http://us.archive.ubuntu.com/ubuntu/ precise main restricted #Added by software-properties

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://us.archive.ubuntu.com/ubuntu/ precise main restricted multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ precise multiverse universe #Added by software-properties

## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu/ precise-updates main restricted multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ precise-updates restricted main multiverse universe #Added by software-properties

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ precise universe
deb http://us.archive.ubuntu.com/ubuntu/ precise-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse #Added by software-properties

deb http://us.archive.ubuntu.com/ubuntu/ precise-security main restricted multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ precise-security restricted main multiverse universe #Added by software-properties
deb http://us.archive.ubuntu.com/ubuntu/ precise-security universe

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
deb http://archive.canonical.com/ubuntu precise partner
deb-src http://archive.canonical.com/ubuntu precise partner

## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
    
por Isaiah Bugarin 04.09.2012 / 23:19

4 respostas

89

Com base nos erros que você colou na seção de comentários da minha resposta anterior, tenho outra solução possível:

sudo apt-get clean
cd /var/lib/apt
sudo mv lists lists.old
sudo mkdir -p lists/partial
sudo apt-get clean 
sudo apt-get update

Isso reconstruirá o cache.
Cortesia: link

    
por saji89 08.09.2012 / 08:43
33

Este link pode ajudar . Ele resolve um problema muito semelhante.

Basicamente, você abre um terminal e digita sudo apt-get update && sudo apt-get upgrade . Isso fez isso por mim.

    
por Jorge M. Treviño 08.09.2012 / 06:27
5

A resposta aceita não me ajudou no meu caso (Ubuntu 13.10), mas consegui contornar o problema de atualização através da linha de comando, e não através do Software Updater (no caso de alguém se deparar com esse problema).

sudo aptitude upgrade

me apresentou o pacote específico que vinha de uma fonte não confiável (o Gerenciador de Música do Google) e perguntou se eu queria aceitá-lo e fazer o upgrade.

    
por David Ashford 15.03.2014 / 12:01
2

Eu tive exatamente o mesmo erro ao tentar atualizar o Indicador do sistema.

No meu caso, foi por falta de chaves GPG. Há uma resposta aqui que instruirá você a instalar um gerenciador de PPA e pode tentar importar todas as chaves ausentes. Eu fiz isso e não me deu nenhuma confirmação de que as chaves que faltavam foram importadas, mas eu executei a atualização depois e ela foi instalada corretamente.

É uma mensagem de erro horrível (não útil) que devo dizer neste caso.

link

    
por Elijah Lynn 03.09.2014 / 17:01