Merge pull request 'apt-key is deprecated, use /etc/apt/trusted.pgp.d' (#2) from apt-key-deprecated into master

Reviewed-on: https://git.robur.io/robur/homepage-data/pulls/2
This commit is contained in:
Hannes Mehnert 2022-09-13 09:15:34 +00:00
commit 34d1c80e5c

View file

@ -24,8 +24,8 @@ To run a MirageOS unikernel on your laptop or computer with virtualization exten
For Debian and Ubuntu systems, we provide package repositories. Browse the [dists](https://apt.robur.coop/dists) folder for one matching your distribution, and add it to `/etc/apt/sources.list`: For Debian and Ubuntu systems, we provide package repositories. Browse the [dists](https://apt.robur.coop/dists) folder for one matching your distribution, and add it to `/etc/apt/sources.list`:
``` ```
$ wget -q -O - https://apt.robur.coop/gpg.pub | apt-key add - # adds the GnuPG public key $ wget -q -O /etc/apt/trusted.gpg.d/apt.robur.coop.gpg https://apt.robur.coop/gpg.pub
$ echo "deb https://apt.robur.coop ubuntu-20.04 main" >> /etc/apt/sources.list # replace ubuntu-20.04 with e.g. debian-10 on a debian buster machine $ echo "deb https://apt.robur.coop ubuntu-20.04 main" >> /etc/apt/sources.list # replace ubuntu-20.04 with e.g. debian-11 on a debian buster machine
$ apt update $ apt update
$ apt install solo5-hvt albatross $ apt install solo5-hvt albatross
``` ```