web-dev-qa-db-ja.com

Ubuntu 18.04アップデートの問題

毎回Sudo apt-get updateまたはSudo apt update、システムは次のエラーを返します:

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.

誰かがこの問題を解決するために私を正しい方向に向けてくれますか?敬具

2
Shah5105

今日も同じです。

ここにあなたがすることです:

  1. これをダウンロード: https://dl.google.com/linux/direct/google-chrome-stable_current_AMD64.deb

(新しいバージョンのクロム、クロムをグーグルすることで自分で入手できます)

  1. Chromeを閉じます。
  2. 「ソフトウェアとソース」を開き、「ソース」タブに移動します
  3. Googleソース(パスワードを入力)を削除(または、後で再度有効にする場合は無効)して、ウィンドウを閉じます。
  4. 「ソフトウェアとソース」がソースをリロードできるようにする
  5. ソフトウェアセンターに移動し、[インストール済み]に移動します
  6. Chromeを見つけてアンインストールします。
  7. ソフトウェアとソースを閉じる
  8. 端末を開き、次のように入力します。

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

  9. ターミナルを閉じてダウンロードフォルダに移動し、ファイル「google-chrome-stable_current_AMD64.deb」をダブルクリックします(これにより、ソフトウェアセンターが開きます)。

  10. インストールをクリックします

chromeバックアップを開くことができます。すべてのタブと保存されたパスワードなどがまだ残っています。

1
tatsu