# debootstrap buster /srv/buster
I: Retrieving InRelease
I: Checking Release signature
E: Release signed by unknown key (key id DCC9EFBF77E11517)
Where do I get this release key, and How do I add this release key to the debootstrap trust?
# debootstrap buster /srv/buster
I: Retrieving InRelease
I: Checking Release signature
E: Release signed by unknown key (key id DCC9EFBF77E11517)
Where do I get this release key, and How do I add this release key to the debootstrap trust?
Where to get the release key? The debian archive keyring server:
https://ftp-master.debian.org/keys.html
How to make debootstrap trust this release key:
Make a new keyring, and inform deboostrap to use it:
Compatibility Note:
I found that using a gpg2 keyring would not work due to debootstrap using
gpgv
under the hood, which uses a gpg1 database version. I recreated by gpg database like so from the , note thatgpg
is gpg 1.x.x not gpg 2.x.x or newer at time of writing:If
deboostrap
were updated to usegpg --verify
instead ofgpgv
, I would imaginegpg2
could be used as a drop-in replacement - But I cannot be certain.