Obtendo um erro ao executar o sudo apt-get update

3

Sempre que estou executando $ sudo apt-get update , estou recebendo o seguinte erro.

$ sudo apt-get update
Hit:1 http://download.virtualbox.org/virtualbox/debian xenial InRelease
Hit:2 http://archive.canonical.com/ubuntu xenial InRelease                                                                                     
Hit:3 http://ppa.launchpad.net/martin-frost/thoughtbot-rcm/ubuntu xenial InRelease                                                             
Hit:4 http://in.archive.ubuntu.com/ubuntu xenial InRelease                                                                                     
Get:5 http://security.ubuntu.com/ubuntu xenial-security InRelease [94.5 kB]                                                                    
Hit:6 http://ppa.launchpad.net/ubuntu-lxc/lxd-stable/ubuntu xenial InRelease                                                                   
Hit:7 http://in.archive.ubuntu.com/ubuntu xenial-updates InRelease                                                                             
Ign:8 http://linux.dropbox.com/ubuntu wily InRelease                                                                                           
Hit:10 http://in.archive.ubuntu.com/ubuntu xenial-backports InRelease                                                                          
Get:11 http://linux.dropbox.com/ubuntu wily Release [6,596 B]                                                                                  
Hit:12 http://repository.spotify.com stable InRelease                                                                                          
Ign:9 http://toolbelt.heroku.com/ubuntu ./ InRelease                                                                                           
Hit:14 http://toolbelt.heroku.com/ubuntu ./ Release                                                               
Ign:16 http://dl.google.com/linux/chrome-remote-desktop/deb stable InRelease
Ign:17 http://dl.google.com/linux/chrome/deb stable InRelease
Hit:18 http://dl.google.com/linux/chrome-remote-desktop/deb stable Release
Hit:19 http://dl.google.com/linux/chrome/deb stable Release
Hit:22 https://apt.dockerproject.org/repo ubuntu-xenial InRelease
Fetched 101 kB in 5s (17.0 kB/s)
Reading package lists... Done
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://dl.google.com/linux/chrome-remote-desktop/deb stable InRelease' doesn't support architecture 'i386'

o chrome é o repositório de trapaceiros aqui. Eu encontrei esta questão e este similar para o problema que eu estava enfrentando

O que tentei

Como sugerido em uma das respostas, tentei executar

$ cd /var/lib/dpkg/updates && sudo rm * 
$ sudo apt-get update

Além de verificar o arquivo /etc/apt/sources.list.d

$ cat /etc/apt/sources.list.d/google-chrome.list
### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out this entry, but any other modifications may be lost.
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

Minha arquitetura

$ uname -a
Linux Acer 4.4.0-24-generic #43-Ubuntu SMP Wed Jun 8 19:27:37 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
$ google-chrome --version
Google Chrome 51.0.2704.106
    
por Tasdik Rahman 28.06.2016 / 08:16

3 respostas

2

Eu tive esse mesmo problema. Aqui está como eu consertei:

  1. Primeiro, eu executei esse comando shell para adicionar [arch = amd64] de volta ao arquivo do repositório Área de trabalho remota do Google Chrome :

    sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/etc/apt/sources.list.d/chrome-remote-desktop.list"
    
  2. Depois, fiz o mesmo com o arquivo cron do Desktop remoto do Google Chrome :

    sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/etc/cron.daily/chrome-remote-desktop"
    
  3. Depois de fazer isso, eu executei o APT novamente, apenas para ter certeza de que tudo estava de volta ao normal como deveria ser:

    sudo apt-get update ; sudo apt-get check
    
por Yuri Sucupira 10.07.2016 / 00:39
0

Eu tive que remover manualmente as fontes do google do arquivo /etc/apt/sources.list.d , após o qual eu desinstalei o google chrome

$ sudo apt-get purge chromium-browser

Baixou novamente o google chrome do site deles e tudo voltou ao normal.

    
por Tasdik Rahman 30.06.2016 / 08:26
-1

Você pode tentar: 1. Reinicie o computador e tente novamente. 2. Desinstale o chrome, execute as atualizações, reinstale o chrome. Para ter certeza eu faria assim:

 sudo apt-get remove google-chrome-stable
 sudo apt-get update
 sudo apt-get upgrade
 sudo apt-get autoremove
 sudo apt-get update
 sudo apt-get install google-chrome-stable

Se você quiser manter suas configurações, basta fazer login na sua conta do Google no navegador.

    
por Jonatan Öström 28.06.2016 / 09:52