Skip to content

Commit 087f08f

Browse files
authored
Fix install instructions for Debian 13 Trixie (#660)
1 parent d50c513 commit 087f08f

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

download/stable.html

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,19 +60,24 @@ <h3>1. Add the Mono repository to your system</h3>
6060
<h4><img src="/images/ubuntu-logo.svg" height="20px" width="20px" alt="Ubuntu Logo" style="margin-right: 5px;"/>Ubuntu 20.04 and later <small>(amd64, armhf, arm64, ppc64el)</small></h4>
6161

6262
<pre><code class="language-bash">sudo apt install ca-certificates gnupg
63-
sudo gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
63+
sudo gpg --homedir /tmp --no-default-keyring --keyring gnupg-ring:/usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
64+
sudo chmod +r /usr/share/keyrings/mono-official-archive-keyring.gpg
6465
echo "deb [signed-by=/usr/share/keyrings/mono-official-archive-keyring.gpg] https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
6566
sudo apt update</code></pre>
6667

6768
<h4><img src="/images/debian-logo.svg" height="20px" width="20px" alt="Debian Logo" style="margin-right: 5px;"/>Debian 10 and later <small>(i386, amd64, armhf, arm64, armel, ppc64el)</small></h4>
6869
<pre><code class="language-bash">sudo apt install dirmngr ca-certificates gnupg
69-
sudo gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
70+
sudo gpg --homedir /tmp --no-default-keyring --keyring gnupg-ring:/usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
71+
sudo chmod +r /usr/share/keyrings/mono-official-archive-keyring.gpg
7072
echo "deb [signed-by=/usr/share/keyrings/mono-official-archive-keyring.gpg] https://download.mono-project.com/repo/debian stable-buster main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
7173
sudo apt update</code></pre>
7274

75+
<p>Note: On Debian 13 (Trixie) and later you'll get an expiration warning for the SHA1 algorithm used by the key. You can extend the expiry date by following the instructions in <code>/usr/share/apt/default-sequoia.config</code></p>
76+
7377
<h4><img src="/images/raspbian-logo.svg" height="20px" width="20px" alt="Raspbian Logo" style="margin-right: 5px;"/>Raspbian 10 and later <small>(armhf)</small></h4>
7478
<pre><code class="language-bash">sudo apt install dirmngr ca-certificates gnupg
75-
sudo gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
79+
sudo gpg --homedir /tmp --no-default-keyring --keyring gnupg-ring:/usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
80+
sudo chmod +r /usr/share/keyrings/mono-official-archive-keyring.gpg
7681
echo "deb [signed-by=/usr/share/keyrings/mono-official-archive-keyring.gpg] https://download.mono-project.com/repo/debian stable-raspbianbuster main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
7782
sudo apt update</code></pre>
7883

0 commit comments

Comments
 (0)