Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs/install.rst: do GPG key setup before setting sources for debian #357

Merged
merged 1 commit into from
Oct 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,19 @@ Installation
Using apt on Debian 12
----------------------

Set up MTDA apt repository::

# Add MTDA's GPG key:
$ sudo install -m 0755 -d /etc/apt/keyrings
$ curl -fsSL https://apt.fury.io/mtda/gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/mtda.gpg
$ sudo chmod a+r /etc/apt/keyrings/mtda.gpg

# Add repository to Apt sources
$ echo "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/mtda.gpg] https://apt.fury.io/mtda/ /" | sudo tee /etc/apt/sources.list.d/mtda.list
deb [arch=amd64 signed-by=/etc/apt/keyrings/mtda.gpg] https://apt.fury.io/mtda/ /

Packages for Debian 12 (bookworm) may be installed as follows::

$ echo 'deb [trusted=yes] https://apt.fury.io/mtda/ /' | \
sudo tee /etc/apt/sources.list.d/mtda.list
$ sudo apt-get update
$ sudo apt-get install -y mtda

Expand Down
Loading