Development discussion of WireGuard
 help / color / mirror / Atom feed
* Fix Debian install guide on wireguard.com/install
@ 2017-10-31 22:18 Adrián Mihálko
  2017-10-31 22:20 ` Jason A. Donenfeld
  2017-11-15 11:08 ` Baptiste Jonglez
  0 siblings, 2 replies; 5+ messages in thread
From: Adrián Mihálko @ 2017-10-31 22:18 UTC (permalink / raw)
  To: wireguard

[-- Attachment #1: Type: text/plain, Size: 491 bytes --]

There is a missing step in the Debian installation guide, you must import
GPG keys before you can add the new repo:

gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553
gpg -a --export 8B48AD6246925553 | sudo apt-key add -

and also the key 7638D0442B90D010

gpg --keyserver pgpkeys.mit.edu --recv-key 7638D0442B90D010
gpg -a --export 7638D0442B90D010 | sudo apt-key add -

More about PGP and APT:

http://ccm.net/faq/809-debian-apt-get-no-pubkey-gpg-error

Regards,
Adrian Mihalko

[-- Attachment #2: Type: text/html, Size: 793 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Fix Debian install guide on wireguard.com/install
  2017-10-31 22:18 Fix Debian install guide on wireguard.com/install Adrián Mihálko
@ 2017-10-31 22:20 ` Jason A. Donenfeld
  2017-11-10  7:48   ` Daniel Kahn Gillmor
  2017-11-15 11:08 ` Baptiste Jonglez
  1 sibling, 1 reply; 5+ messages in thread
From: Jason A. Donenfeld @ 2017-10-31 22:20 UTC (permalink / raw)
  To: Daniel Kahn Gillmor; +Cc: WireGuard mailing list

Hey Daniel,

I have no idea what the right instructions to give for Debian are. Is
there something I should be doing so I don't have to hard code those
keys on the install page instructions?

Jason

On Tue, Oct 31, 2017 at 11:18 PM, Adri=C3=A1n Mih=C3=A1lko <adriankoooo@gma=
il.com> wrote:
> There is a missing step in the Debian installation guide, you must import
> GPG keys before you can add the new repo:
>
> gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553
> gpg -a --export 8B48AD6246925553 | sudo apt-key add -
>
> and also the key 7638D0442B90D010
>
> gpg --keyserver pgpkeys.mit.edu --recv-key 7638D0442B90D010
> gpg -a --export 7638D0442B90D010 | sudo apt-key add -
>
> More about PGP and APT:
>
> http://ccm.net/faq/809-debian-apt-get-no-pubkey-gpg-error
>
> Regards,
> Adrian Mihalko
>
> _______________________________________________
> WireGuard mailing list
> WireGuard@lists.zx2c4.com
> https://lists.zx2c4.com/mailman/listinfo/wireguard
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Fix Debian install guide on wireguard.com/install
  2017-10-31 22:20 ` Jason A. Donenfeld
@ 2017-11-10  7:48   ` Daniel Kahn Gillmor
  0 siblings, 0 replies; 5+ messages in thread
From: Daniel Kahn Gillmor @ 2017-11-10  7:48 UTC (permalink / raw)
  To: Jason A. Donenfeld; +Cc: WireGuard mailing list

[-- Attachment #1: Type: text/plain, Size: 657 bytes --]

Hi Jason, Adrián, all--

On Tue 2017-10-31 23:20:02 +0100, Jason A. Donenfeld wrote:

> I have no idea what the right instructions to give for Debian are. Is
> there something I should be doing so I don't have to hard code those
> keys on the install page instructions?

The right instructions for debian users would generally be to pull the
package from unstable.  This should absolutely not require the use of
"apt-key add", which is generally deprecated.

If you want to provide a separate ("third-party") repository, the
current best guidance is:

    https://wiki.debian.org/DebianRepository/UseThirdParty

Regards,

        --dkg

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Fix Debian install guide on wireguard.com/install
  2017-10-31 22:18 Fix Debian install guide on wireguard.com/install Adrián Mihálko
  2017-10-31 22:20 ` Jason A. Donenfeld
@ 2017-11-15 11:08 ` Baptiste Jonglez
       [not found]   ` <9AD312F5-AB70-40F8-BAF9-64200037D125@gmail.com>
  1 sibling, 1 reply; 5+ messages in thread
From: Baptiste Jonglez @ 2017-11-15 11:08 UTC (permalink / raw)
  To: Adrián Mihálko; +Cc: wireguard

[-- Attachment #1: Type: text/plain, Size: 1086 bytes --]

Hi Daniel, Adrián,

On 31-10-17, Adrián Mihálko wrote:
> There is a missing step in the Debian installation guide, you must import
> GPG keys before you can add the new repo:

Which version of Debian are you using?

The installation instructions on https://www.wireguard.com/install/ are
tested on Jessie and Stretch, anything older (wheezy) will not work
because the kernel is too old.

Jason, can you add a note on the installation page that says "Jessie or
later" somewhere?

Baptiste

> gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553
> gpg -a --export 8B48AD6246925553 | sudo apt-key add -
> 
> and also the key 7638D0442B90D010
> 
> gpg --keyserver pgpkeys.mit.edu --recv-key 7638D0442B90D010
> gpg -a --export 7638D0442B90D010 | sudo apt-key add -
> 
> More about PGP and APT:
> 
> http://ccm.net/faq/809-debian-apt-get-no-pubkey-gpg-error
> 
> Regards,
> Adrian Mihalko

> _______________________________________________
> WireGuard mailing list
> WireGuard@lists.zx2c4.com
> https://lists.zx2c4.com/mailman/listinfo/wireguard


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Fix Debian install guide on wireguard.com/install
       [not found]   ` <9AD312F5-AB70-40F8-BAF9-64200037D125@gmail.com>
@ 2017-11-15 22:00     ` Baptiste Jonglez
  0 siblings, 0 replies; 5+ messages in thread
From: Baptiste Jonglez @ 2017-11-15 22:00 UTC (permalink / raw)
  To: Adrián Mihálko; +Cc: wireguard

[-- Attachment #1: Type: text/plain, Size: 2134 bytes --]

Hi,

Please keep the list in copy.

On 15-11-17, Adrián Mihálko wrote:
> Hi Baptiste,
> 
> I am using Rapbian and Raspberry Pi 3, it is not compatible with this repo?

As far as I know, Raspbian uses its own repositories.  I had a quick look
at the repository archive and they don't seem to package wireguard.

Installing wireguard from the official Debian armhf package might work,
but there could be compatibility issues.  The installation instructions
are valid for Debian, where the GPG key for unstable is already available.

Does wireguard work fine on your raspberrypi when you install it this way?

> $ cat /etc/issue
> Raspbian GNU/Linux 8 \n \l
> 
> Best regards,
> Adrian
> 
> > On 15 Nov 2017, at 12:08, Baptiste Jonglez <baptiste@bitsofnetworks.org> wrote:
> > 
> > Hi Daniel, Adrián,
> > 
> > On 31-10-17, Adrián Mihálko wrote:
> >> There is a missing step in the Debian installation guide, you must import
> >> GPG keys before you can add the new repo:
> > 
> > Which version of Debian are you using?
> > 
> > The installation instructions on https://www.wireguard.com/install/ <https://www.wireguard.com/install/> are
> > tested on Jessie and Stretch, anything older (wheezy) will not work
> > because the kernel is too old.
> > 
> > Jason, can you add a note on the installation page that says "Jessie or
> > later" somewhere?
> > 
> > Baptiste
> > 
> >> gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553
> >> gpg -a --export 8B48AD6246925553 | sudo apt-key add -
> >> 
> >> and also the key 7638D0442B90D010
> >> 
> >> gpg --keyserver pgpkeys.mit.edu --recv-key 7638D0442B90D010
> >> gpg -a --export 7638D0442B90D010 | sudo apt-key add -
> >> 
> >> More about PGP and APT:
> >> 
> >> http://ccm.net/faq/809-debian-apt-get-no-pubkey-gpg-error
> >> 
> >> Regards,
> >> Adrian Mihalko
> > 
> >> _______________________________________________
> >> WireGuard mailing list
> >> WireGuard@lists.zx2c4.com <mailto:WireGuard@lists.zx2c4.com>
> >> https://lists.zx2c4.com/mailman/listinfo/wireguard <https://lists.zx2c4.com/mailman/listinfo/wireguard>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-11-15 21:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-31 22:18 Fix Debian install guide on wireguard.com/install Adrián Mihálko
2017-10-31 22:20 ` Jason A. Donenfeld
2017-11-10  7:48   ` Daniel Kahn Gillmor
2017-11-15 11:08 ` Baptiste Jonglez
     [not found]   ` <9AD312F5-AB70-40F8-BAF9-64200037D125@gmail.com>
2017-11-15 22:00     ` Baptiste Jonglez

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).