web-dev-qa-db-fra.com

Problème de mise à jour d'Ubuntu 18.04

Chaque fois que j'essaie Sudo apt-get update ou Sudo apt update, le système renvoie les erreurs suivantes:

Hit:1 http://ppa.launchpad.net/marutter/rrutter/ubuntu bionic InRelease
Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease                
Ign:3 http://dl.google.com/linux/chrome/deb stable InRelease           
Hit:4 http://cran.rstudio.com/bin/linux/ubuntu xenial/ InRelease       
Get:5 http://dl.google.com/linux/chrome/deb stable Release [943 B]     
Hit:6 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu bionic InRelease
Get:7 http://dl.google.com/linux/chrome/deb stable Release.gpg [819 B] 
Hit:8 https://download.sublimetext.com apt/stable/ InRelease           
Ign:7 http://dl.google.com/linux/chrome/deb stable Release.gpg
Reading package lists... Done
W: GPG error: http://dl.google.com/linux/chrome/deb stable Release: The following signatures were invalid: EXPKEYSIG 1397BC53640DB551 Google Inc. (Linux Packages Signing Authority) <[email protected]>
E: The repository 'http://dl.google.com/linux/chrome/deb stable Release' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

Quelqu'un peut-il me montrer la bonne direction pour résoudre ce problème? Sincères amitiés

2
Shah5105

J'ai eu la même chose aujourd'hui.

voici ce que vous faites:

  1. Téléchargez ceci: https://dl.google.com/linux/direct/google-chrome-stable_current_AMD64.deb

(Chrome nouvelle version, vous pouvez l'obtenir vous-même en recherchant Google Chrome)

  1. Fermez Chrome.
  2. Ouvrez "Logiciels et sources", allez dans l'onglet "Sources"
  3. Supprimez (ou désactivez si vous souhaitez le réactiver ultérieurement) la source Google (tapez votre mot de passe) et fermez la fenêtre
  4. Autoriser "Logiciels et sources" à recharger les sources
  5. Allez dans Software Center, allez dans "Installé"
  6. Trouvez Chrome, désinstallez-le.
  7. Fermer les logiciels et les sources
  8. Ouvrez un terminal, tapez:

    Sudo apt update && Sudo apt autoremove -y && Sudo apt autoclean && Sudo apt full-upgrade -y

  9. Fermez le terminal et accédez à votre dossier de téléchargements et double-cliquez sur le fichier "google-chrome-stable_current_AMD64.deb" (cela ouvrira le Centre logiciel)

  10. Cliquez sur Installer

vous pouvez maintenant ouvrir chrome back up. tous vos onglets et mots de passe enregistrés ect sont toujours là.

1
tatsu