From 40a2bd7879f68a754c301f3f4a2255fa9acb65a0 Mon Sep 17 00:00:00 2001 From: dorak88783 <73129169+dorak88783@users.noreply.github.com> Date: Sun, 24 Aug 2025 14:13:59 +0200 Subject: [PATCH] Update community-docs-installation.md Debian 8 and lower are really EOL so docs don't need to cover this. Instructions for Debian 11 and later are the same as for Debian 10, see https://www.mono-project.com/download/stable/. --- community-docs/community-docs-installation.md | 29 ++----------------- 1 file changed, 3 insertions(+), 26 deletions(-) diff --git a/community-docs/community-docs-installation.md b/community-docs/community-docs-installation.md index 537c853..4987f80 100644 --- a/community-docs/community-docs-installation.md +++ b/community-docs/community-docs-installation.md @@ -109,18 +109,19 @@ sudo apt-get update sudo apt-get install mono-devel ``` -**Debian 10:** +**Debian 10 and later:** ``` sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF -echo "deb http://download.mono-project.com/repo/debian buster main" | sudo tee /etc/apt/sources.list.d/mono-official.list +echo "deb http://download.mono-project.com/repo/debian stable-buster main" | sudo tee /etc/apt/sources.list.d/mono-official.list sudo apt-get update sudo apt-get install mono-devel ``` + **Debian 9:** ``` @@ -133,30 +134,6 @@ sudo apt-get update sudo apt-get install mono-devel ``` -**Debian 8:** - -``` -sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF - -echo "deb http://download.mono-project.com/repo/debian jessie main" | sudo tee /etc/apt/sources.list.d/mono-official.list - -sudo apt-get update - -sudo apt-get install mono-devel -``` - -**Debian 7:** - -``` -sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF - -echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-official.list - -sudo apt-get update - -sudo apt-get install mono-devel -``` - **Raspbian 9:** ```