Ubuntu:apt-getアップデート

Ubuntu:apt-getアップデート

Ubuntuでapt-getを更新しようとしましたが、同様の問題に対するさまざまな解決策を見てきましたが、失敗しました。

次のコマンドを実行しています。

sudo apt-get update

私は次のような出力を受けました...

Get:9 http://apt.typesafe.com unicorn InRelease [7,185 B]                                     
Err:9 http://apt.typesafe.com unicorn InRelease
  The following signatures were invalid: D2E3915347209000FA1C06D47CF8D72BE29DF322

...

W: GPG error: http://apt.typesafe.com unicorn InRelease: The following signatures were invalid: D2E3915347209000FA1C06D47CF8D72BE29DF322
E: The repository 'http://apt.typesafe.com unicorn InRelease' 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.

キーをもう一度ダウンロードしてみましたが、まだ機能しません。

編集:パッケージをインストールした後に同じエラーが発生しました...

smrk007@Atticus:~/Downloads$ sudo dpkg -i repo-deb-build-0002.deb 
(Reading database ... 201875 files and directories currently installed.)
Preparing to unpack repo-deb-build-0002.deb ...
Unpacking typesafe-repo (2.0-build-0003) over (2.0-build-0003) ...
Setting up typesafe-repo (2.0-build-0003) ...
Warning: The postinst maintainerscript of the package typesafe-repo
Warning: seems to use apt-key (provided by apt) without depending on gnupg or gnupg2.
Warning: This will BREAK in the future and should be fixed by the package maintainer(s).
Note: Check first if apt-key functionality is needed at all - it probably isn't!
Warning: apt-key should not be used in scripts (called from postinst maintainerscript of the package typesafe-repo)
OK
smrk007@Atticus:~/Downloads$ sudo apt-get update
Ign:1 https://dl.bintray.com/sbt/debian  InRelease
Hit:2 http://us.archive.ubuntu.com/ubuntu bionic InRelease                                                                                           
Get:3 https://dl.bintray.com/sbt/debian  Release [815 B]                                                                                             
Hit:4 http://us.archive.ubuntu.com/ubuntu bionic-updates InRelease                                                                                   
Get:5 http://security.ubuntu.com/ubuntu bionic-security InRelease [83.2 kB]                                                    
Get:6 http://us.archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]                                                             
Hit:7 http://ppa.launchpad.net/webupd8team/java/ubuntu bionic InRelease                                                                              
Get:9 http://apt.typesafe.com unicorn InRelease [7,185 B]                                                                                            
Err:9 http://apt.typesafe.com unicorn InRelease
  The following signatures were invalid: D2E3915347209000FA1C06D47CF8D72BE29DF322

より多くのコンテキストを提供するために、このエラーが発生する前にscalaを使用するためにsbtコマンドラインツールをインストールしようとしました。

ベストアンサー1

この試み:

sudo rm -rf /var/lib/apt/lists

デフォルトでは、aptディレクトリからすべてのリストフォルダを削除します。
次のコマンドを使用してリストディレクトリを追加します。

sudo mkdir /var/lib/apt/lists

次に、次のコマンドを試してください。

sudo apt-get update

おすすめ記事