Como posso atualizar meu sistema? [duplicado]

1

Atualmente, quando executo o Gerenciador de Atualizações no 12.04.1 LTS, recebo desde alguns weels:

Como posso atualizar deste estado?

Atualizar

$ sudo apt-get update
Get:1 http://at.archive.ubuntu.com precise Release.gpg [198 B]
...
Hit http://at.archive.ubuntu.com precise-backports/universe Translation-en
Fetched 198 B in 1s (146 B/s)
Reading package lists... Done
W: GPG error: http://at.archive.ubuntu.com precise Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key 
    
por false 20.05.2014 / 15:16

1 resposta

1

Para resolver este problema, abra o terminal e tente estes comandos:

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

Em seguida, tente novamente atualizar seu sistema.

    
por nux 20.05.2014 / 15:31