mirror of
https://github.com/drduh/YubiKey-Guide.git
synced 2025-05-09 18:33:36 +02:00
simplify debian image urls
This commit is contained in:
parent
c341c08c95
commit
b81df9c93c
1 changed files with 5 additions and 4 deletions
|
@ -90,17 +90,18 @@ Debian Live is used in this guide to balance usability and security, with some a
|
|||
Download the latest image and signature files:
|
||||
|
||||
```console
|
||||
curl -fLO "https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/SHA512SUMS"
|
||||
export IMAGE_URL="https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/"
|
||||
|
||||
curl -fLO "https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/SHA512SUMS.sign"
|
||||
curl -fLO "$IMAGE_URL/SHA512SUMS" -O "$IMAGE_URL/SHA512SUMS.sign"
|
||||
|
||||
curl -fLO "https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/$(awk '/xfce.iso$/ {print $2}' SHA512SUMS)"
|
||||
curl -fLO "$IMAGE_URL/$(awk '/xfce.iso$/ {print $2}' SHA512SUMS)"
|
||||
```
|
||||
|
||||
Download the Debian signing public key:
|
||||
|
||||
```console
|
||||
gpg --keyserver hkps://keyring.debian.org --recv DF9B9C49EAA9298432589D76DA87E80D6294BE9B
|
||||
gpg --keyserver hkps://keyring.debian.org \
|
||||
--recv DF9B9C49EAA9298432589D76DA87E80D6294BE9B
|
||||
```
|
||||
|
||||
If the public key cannot be received, use a different keyserver or DNS server:
|
||||
|
|
Loading…
Add table
Reference in a new issue