When I run the command:
sudo apt-get updateI got this following warning:
There is no public key available for the following key IDs: 1397BC53640DB551This is the only warning I got and I do not get any Error.
How I can fix it and what the key 1397BC53640DB551 is all about?
32 Answers
I resolved running:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1397BC53640DB551The command above download the missing key using the hexadecimal numbers given in the error (1397BC53640DB551) with apt-key. After running apt-key to download the missing PUBKEY, any packages from that repositories will be considered trusted.
It seems to be a known problem in chromium that is being worked on (check here). They are working to remove SHA1 encryption (link).
Another possible workarounds that have been posted on reddit
wget -q -O - | sudo apt-key add -Looking at this, seems that Google now has two keys, and the old one will probably be discontinued along with SHA1.
4Correct command line is:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1397BC53640DB551 0