4

I'm creating a LiveCD from this guide and came across a line I do not understand:

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 12345678 
#Substitute "12345678" with the PPA's OpenPGP ID.

wondered if anyone can explain what should I substitue 12345678 with and how to obtain it

kiri
  • 28,986
Lior
  • 141

1 Answers1

4

The information is listed on the ppa page in launchpad

Sample screenshot :

enter image description here

So , using the above as an example

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

See PPA FAQ and Ubuntu wiki secure apt for details

Panther
  • 104,528