1

I get this msg in my terminal

W: GPG error: https://download.01.org trusty InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A902DDA375E52366

How do i get rid of it? Thanks

Billn
  • 31
  • 2

1 Answers1

1

You are attempting to download the intel drivers from their website, but have not followed the full set of instructions.

You need to open a terminal and enter

wget --no-check-certificate https://download.01.org/gfx/RPM-GPG-KEY-ilg -O - | \
sudo apt-key add -

wget --no-check-certificate https://download.01.org/gfx/RPM-GPG-KEY-ilg-2 -O - | \
sudo apt-key add -
Charles Green
  • 21,339