1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

apt update時に起きた様々なエラー対策

Last updated at Posted at 2021-01-31

apt-get update時に起きた様々なエラー対策、解決方法の備忘録です

公開鍵を利用できないため、以下の署名は検証できませんでした

$ sudo apt update
(省略)
...
エラー:8 https://pkg.jenkins.io/debian-stable binary/ Release.gpg
  公開鍵を利用できないため、以下の署名は検証できませんでした: NO_PUBKEY FCEF32E745F2C3D5

以下を実施

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys FCEF32E745F2C3D5

その後、sudo apt updateで解決していることを確認

ハッシュサムが適合しません

sudo apt-get update -y
...
ハッシュサムが適合しません

以下を実施

sudo rm -r /var/lib/apt/lists/*

その後、sudo apt updateで解決していることを確認

sudo dpkg --configure -a を実行したところ,Setting up accountsserviceから進まない

$ sudo dpkg --configure -a 
...
Setting up accountsservice (0.6.40-2ubuntu11.6) ...

別ターミナルで以下を実行して解決

sudo systemctl restart accounts-daemon

accountsservice-hangs-with-installation
Ubuntuに関する質問 » dpkg --configure -a

gpg: failed to start agent '/usr/bin/gpg-agent': No such file or directory

gpg: failed to start agent '/usr/bin/gpg-agent': No such file or directory

以下で解決

apt install gpg-agent

参考

Ubuntuのapt-get updateで「ハッシュサムが適合しません」と出た時の対処法
[Ubuntu] apt update時に「公開鍵を利用できないため、以下の署名は検証できませんでした」
ubuntu-18-04-add-gpg-key-failed-with-gpg-agent-not-found-error

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?