diff --git a/setup/alma-linux-os.md b/setup/alma-linux-os.md index 560d5efb..b55505fd 100644 --- a/setup/alma-linux-os.md +++ b/setup/alma-linux-os.md @@ -4,9 +4,16 @@ ```{note} AlmaLinux OS is binary compatible with RHEL®. + +There's no difference between the "nightly" and "beta" in the context of Jami. +"Beta" is more accurate. +It is unknown why "nightly" is used internally. +Internally, "nightly" may be changed to "beta" in the future when the issue is addressed. ``` -```none +### Stable release + +```bash sudo dnf install -y epel-release sudo dnf install -y 'dnf-command(config-manager)' sudo dnf config-manager --set-enabled crb @@ -16,4 +23,16 @@ sudo dnf update sudo dnf install -y jami ``` +### Beta release + +```bash +sudo dnf install -y epel-release +sudo dnf install -y 'dnf-command(config-manager)' +sudo dnf config-manager --set-enabled crb +sudo dnf config-manager --set-enabled appstream +sudo wget https://dl.jami.net/nightly/alma_9/jami-nightly.repo -P /etc/yum.repos.d/ +sudo dnf update +sudo dnf install -y jami +``` + ## Ready diff --git a/setup/debian.md b/setup/debian.md index 720c6585..8e5b5865 100644 --- a/setup/debian.md +++ b/setup/debian.md @@ -6,13 +6,58 @@ Jami runs on 64-bit versions of Debian. [Click here for the current official Debian releases.](https://www.debian.org/releases/) + +There's no difference between the "nightly" and "beta" in the context of Jami. +"Beta" is more accurate. +It is unknown why "nightly" is used internally. +Internally, "nightly" may be changed to "beta" in the future when the issue is addressed. ``` +### Stable release + * [Click here to download the DEB installation file for Debian *stable* 12 (“Bookworm”) (64-bit).](https://dl.jami.net/ring-manual/debian_12/jami-all_amd64.deb) * [Click here to download the DEB installation file for Debian *oldstable* 11 (“Bullseye”) (64-bit).](https://dl.jami.net/ring-manual/debian_11/jami-all_amd64.deb) * [Click here to download the DEB installation file for Debian *testing* 13 (“Trixie”) (64-bit).](https://dl.jami.net/ring-manual/debian_testing/jami-all_amd64.deb) * [Click here to download the DEB installation file for Debian *unstable* (“Sid”) (64-bit).](https://dl.jami.net/ring-manual/debian_unstable/jami-all_amd64.deb) +### Beta release + +* Debian *stable* 12 (“Bookworm”) (64-bit) + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/debian_12/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + +* Debian *oldstable* 11 (“Bullseye”) (64-bit) + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/debian_11/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + +* Debian *testing* 13 (“Trixie”) (64-bit) + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/debian_testing/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + +* Debian *unstable* (“Sid”) (64-bit) + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/debian_unstable/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + ## Install ## Ready diff --git a/setup/federa-linux.md b/setup/federa-linux.md index 5c12a188..7f27b167 100644 --- a/setup/federa-linux.md +++ b/setup/federa-linux.md @@ -2,9 +2,29 @@ ## Download and install -```none -sudo dnf config-manager addrepo --from-repofile=https://dl.jami.net/stable/fedora_41/jami-stable.repo -sudo dnf install jami +```{note} +There's no difference between the "nightly" and "beta" in the context of Jami. +"Beta" is more accurate. +It is unknown why "nightly" is used internally. +Internally, "nightly" may be changed to "beta" in the future when the issue is addressed. ``` +### Stable release + +* Fedora Linux 41 + + ```bash + sudo dnf config-manager addrepo --from-repofile=https://dl.jami.net/stable/fedora_41/jami-stable.repo + sudo dnf install jami + ``` + +### Beta release + +* Fedora Linux 41 + + ```bash + sudo dnf config-manager addrepo --from-repofile=https://dl.jami.net/nightly/fedora_41/jami-nightly.repo + sudo dnf install jami + ``` + ## Ready diff --git a/setup/linux-mint.md b/setup/linux-mint.md index 719ec148..7202a712 100644 --- a/setup/linux-mint.md +++ b/setup/linux-mint.md @@ -5,13 +5,58 @@ ```{note} * Linux Mint is based on Ubuntu. * LMDE is based on Debian. + +There's no difference between the "nightly" and "beta" in the context of Jami. +"Beta" is more accurate. +It is unknown why "nightly" is used internally. +Internally, "nightly" may be changed to "beta" in the future when the issue is addressed. ``` +### Stable release + * [Click here to download the DEB installation file for Linux Mint 22.](https://dl.jami.net/ring-manual/ubuntu_24.04/jami-all_amd64.deb) * [Click here to download the DEB installation file for Linux Mint 21.](https://dl.jami.net/ring-manual/ubuntu_22.04/jami-all_amd64.deb) * [Click here to download the DEB installation file for LMDE 6 (64-bit).](https://dl.jami.net/ring-manual/debian_12/jami-all_amd64.deb) * [Click here to download the DEB installation file for LMDE 5 (64-bit).](https://dl.jami.net/ring-manual/debian_11/jami-all_amd64.deb) +### Beta release + +* Linux Mint 22 + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/ubuntu_24.04/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + +* Linux Mint 21 + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/ubuntu_22.04/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + +* LMDE 6 (64-bit) + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/debian_12/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + +* LMDE 5 (64-bit) + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/debian_11/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + ## Install ## Ready diff --git a/setup/open-suse.md b/setup/open-suse.md index 4c2f89cc..b36728ca 100644 --- a/setup/open-suse.md +++ b/setup/open-suse.md @@ -2,32 +2,71 @@ ## Download and install -### openSUSE Leap 15.5 - -Install Jami from the command line using Zypper: - -```none -sudo zypper addrepo https://dl.jami.net/stable/opensuse-leap_15.5/jami-stable.repo -sudo zypper install jami +```{note} +There's no difference between the "nightly" and "beta" in the context of Jami. +"Beta" is more accurate. +It is unknown why "nightly" is used internally. +Internally, "nightly" may be changed to "beta" in the future when the issue is addressed. ``` -### openSUSE Leap 15.4 +### Stable release -Install Jami from the command line using Zypper: +* openSUSE Leap 15.5 -```none -sudo zypper addrepo https://dl.jami.net/stable/opensuse-leap_15.4/jami-stable.repo -sudo zypper install jami -``` + Install Jami from the command line using Zypper: -### SUSE Linux Enterprise Desktop 15 SP4 + ```bash + sudo zypper addrepo https://dl.jami.net/stable/opensuse-leap_15.5/jami-stable.repo + sudo zypper install jami + ``` -Install Jami from the command line using Zypper: +* openSUSE Leap 15.4 -```none -sudo zypper addrepo https://dl.jami.net/stable/opensuse-leap_15.4/jami-stable.repo -SUSEConnect --product PackageHub/15.4/x86_64 -sudo zypper install jami -``` + Install Jami from the command line using Zypper: + + ```bash + sudo zypper addrepo https://dl.jami.net/stable/opensuse-leap_15.4/jami-stable.repo + sudo zypper install jami + ``` + +* SUSE Linux Enterprise Desktop 15 SP4 + + Install Jami from the command line using Zypper: + + ```bash + sudo zypper addrepo https://dl.jami.net/stable/opensuse-leap_15.4/jami-stable.repo + SUSEConnect --product PackageHub/15.4/x86_64 + sudo zypper install jami + ``` + +### Beta release + +* openSUSE Leap 15.5 + + Install Jami from the command line using Zypper: + + ```bash + sudo zypper addrepo https://dl.jami.net/nightly/opensuse-leap_15.5/jami-nightly.repo + sudo zypper install jami + ``` + +* openSUSE Leap 15.4 + + Install Jami from the command line using Zypper: + + ```bash + sudo zypper addrepo https://dl.jami.net/nightly/opensuse-leap_15.4/jami-nightly.repo + sudo zypper install jami + ``` + +* SUSE Linux Enterprise Desktop 15 SP4 + + Install Jami from the command line using Zypper: + + ```bash + sudo zypper addrepo https://dl.jami.net/nightly/opensuse-leap_15.4/jami-nightly.repo + SUSEConnect --product PackageHub/15.4/x86_64 + sudo zypper install jami + ``` ## Ready diff --git a/setup/trisquel.md b/setup/trisquel.md index 3af6a4e2..8381295a 100644 --- a/setup/trisquel.md +++ b/setup/trisquel.md @@ -4,11 +4,38 @@ ```{note} Trisquel is based on Ubuntu. + +There's no difference between the "nightly" and "beta" in the context of Jami. +"Beta" is more accurate. +It is unknown why "nightly" is used internally. +Internally, "nightly" may be changed to "beta" in the future when the issue is addressed. ``` -* [Click here to download the DEB installation file for Trisquel 11.0.](https://dl.jami.net/ring-manual/ubuntu_20.04/jami-all_amd64.deb) +### Stable release + +* [Click here to download the DEB installation file for Trisquel 11.0.](https://dl.jami.net/ring-manual/ubuntu_22.04/jami-all_amd64.deb) * [Click here to download the DEB installation file for Trisquel 10.0.](https://dl.jami.net/ring-manual/ubuntu_20.04/jami-all_amd64.deb) +### Beta release + +* Trisquel 11.0 + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/ubuntu_22.04/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + +* Trisquel 10.0 + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/ubuntu_20.04/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + ## Install ## Ready diff --git a/setup/ubuntu.md b/setup/ubuntu.md index 87439433..66f439b6 100644 --- a/setup/ubuntu.md +++ b/setup/ubuntu.md @@ -2,12 +2,58 @@ ## Download +```{note} +There's no difference between the "nightly" and "beta" in the context of Jami. +"Beta" is more accurate. +It is unknown why "nightly" is used internally. +Internally, "nightly" may be changed to "beta" in the future when the issue is addressed. +``` + +### Stable release + * [Click here to download the DEB installation file for Ubuntu 24.10.](https://dl.jami.net/ring-manual/ubuntu_24.10/jami-all_amd64.deb) * [Click here to download the DEB installation file for Ubuntu 24.04.](https://dl.jami.net/ring-manual/ubuntu_24.04/jami-all_amd64.deb) -* [Click here to download the DEB installation file for Ubuntu 23.10.](https://dl.jami.net/ring-manual/ubuntu_23.10/jami-all_amd64.deb) * [Click here to download the DEB installation file for Ubuntu 22.04.](https://dl.jami.net/ring-manual/ubuntu_22.04/jami-all_amd64.deb) * [Click here to download the DEB installation file for Ubuntu 20.04.](https://dl.jami.net/ring-manual/ubuntu_20.04/jami-all_amd64.deb) +### Beta release + +* Ubuntu 24.10 + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/ubuntu_24.10/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + +* Ubuntu 24.04 + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/ubuntu_24.04/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + +* Ubuntu 22.04 + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/ubuntu_22.04/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + +* Ubuntu 20.04 + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/ubuntu_20.04/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + ## Install ## Ready diff --git a/setup/zorin-os.md b/setup/zorin-os.md index 945dbab3..5abb8bc4 100644 --- a/setup/zorin-os.md +++ b/setup/zorin-os.md @@ -4,11 +4,38 @@ ```{note} Zorin OS is based on Ubuntu. + +There's no difference between the "nightly" and "beta" in the context of Jami. +"Beta" is more accurate. +It is unknown why "nightly" is used internally. +Internally, "nightly" may be changed to "beta" in the future when the issue is addressed. ``` +### Stable release + * [Click here to download the DEB installation file for Zorin OS 17.](https://dl.jami.net/ring-manual/ubuntu_22.04/jami-all_amd64.deb) * [Click here to download the DEB installation file for Zorin OS 16.](https://dl.jami.net/ring-manual/ubuntu_20.04/jami-all_amd64.deb) +### Beta release + +* Zorin OS 17 + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/ubuntu_22.04/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + +* Zorin OS 16 + + ```bash + sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends + curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null + sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/ubuntu_20.04/ jami main' > /etc/apt/sources.list.d/jami.list" + sudo apt-get update && sudo apt-get install jami + ``` + ## Install ## Ready