From 1400615be77d51190aa472955121b8bb8ad0598f Mon Sep 17 00:00:00 2001 From: Dexx Stexx Date: Wed, 13 Aug 2025 15:11:07 -0700 Subject: [PATCH] Add deb822 instructions --- _posts/2000-01-05-install.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/_posts/2000-01-05-install.md b/_posts/2000-01-05-install.md index 20bb750..314da4d 100644 --- a/_posts/2000-01-05-install.md +++ b/_posts/2000-01-05-install.md @@ -129,10 +129,16 @@ wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.g ``` Add the repository: -```bash -echo 'deb [arch=amd64,arm64 signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg] https://download.vscodium.com/debs vscodium main' \ - | sudo tee /etc/apt/sources.list.d/vscodium.list -``` +- **Debian 13 / Ubuntu 24.04 or newer** + ```bash + echo -e 'Types: deb\nURIs: https://download.vscodium.com/debs\nSuites: vscodium\nComponents: main\nArchitectures: amd64 arm64\nSigned-by: /usr/share/keyrings/vscodium-archive-keyring.gpg' \ + | sudo tee /etc/apt/sources.list.d/vscodium.sources + ``` +- **Debian 12 / Ubuntu 23.10 or older**: + ```bash + echo 'deb [arch=amd64,arm64 signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg] https://download.vscodium.com/debs vscodium main' \ + | sudo tee /etc/apt/sources.list.d/vscodium.list + ``` Update then install vscodium (if you want vscodium-insiders, then replace `codium` by `codium-insiders`): ```bash