web-dev-qa-db-fra.com

Obtenir une erreur lors de l'exécution de Sudo apt-get update

Chaque fois que je lance $ Sudo apt-get update, je reçois le message d'erreur suivant.

$ 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'

chrome étant le repo voyous ici. J'ai trouvé ceci question et celui-ci semblable au problème auquel je faisais face

Ce que j'ai essayé

Comme suggéré dans l'une des réponses, j'ai essayé de courir

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

En plus de vérifier le fichier /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

Mon architechture

$ 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
3
Tasdik Rahman

J'ai eu le même problème. Voici comment je l'ai corrigé:

  1. Tout d’abord, j’ai exécuté cette commande Shell afin d’ajouter [Arch = AMD64] au dossier de Chrome Remote Desktop :

    Sudo sed -i -e 's/deb http/deb [Arch=AMD64] http/' "/etc/apt/sources.list.d/chrome-remote-desktop.list"
    
  2. Ensuite, j'ai fait de même avec le fichier de Chrome Remote Desktop :

    Sudo sed -i -e 's/deb http/deb [Arch=AMD64] http/' "/etc/cron.daily/chrome-remote-desktop"
    
  3. Après cela, j’ai exécuté à nouveau APT, juste pour s’assurer que tout était redevenu normal:

    Sudo apt-get update ; Sudo apt-get check
    
2
Yuri Sucupira

J'ai dû supprimer manuellement les sources de Google du fichier /etc/apt/sources.list.d, après quoi j'ai désinstallé Google Chrome.

$ Sudo apt-get purge chromium-browser

Téléchargé google chrome à nouveau depuis leur site web et tout était rentré dans l'ordre.

0
Tasdik Rahman