mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-05-02 03:32:23 +02:00

Report some Linux versions that were recently supported (Debian 12 / Fedora 37) in the installation instructions. These instructions where copied from the Dangerzone wiki, which is why the recently supported versions were missing.
41 lines
966 B
Markdown
41 lines
966 B
Markdown
Dangerzone is available for:
|
|
|
|
- Ubuntu 22.04 (jammy)
|
|
- Debian 12 (bookworm)
|
|
- Debian 11 (bullseye)
|
|
- Fedora 37
|
|
- Fedora 36
|
|
- Fedora 35
|
|
|
|
### Ubuntu, Debian
|
|
|
|
Add our repository following [these instructions](https://packagecloud.io/firstlookmedia/code/install#manual-deb), or by running this script:
|
|
|
|
```
|
|
curl -s https://packagecloud.io/install/repositories/firstlookmedia/code/script.deb.sh | sudo bash
|
|
```
|
|
|
|
Install Dangerzone:
|
|
|
|
```
|
|
sudo apt update
|
|
sudo apt install -y dangerzone
|
|
```
|
|
|
|
### Fedora
|
|
|
|
Add our repository following [these instructions](https://packagecloud.io/firstlookmedia/code/install#manual-rpm), or by running this script:
|
|
|
|
```
|
|
curl -s https://packagecloud.io/install/repositories/firstlookmedia/code/script.rpm.sh | sudo bash
|
|
```
|
|
|
|
Install Dangerzone:
|
|
|
|
```
|
|
sudo dnf install -y dangerzone
|
|
```
|
|
|
|
## Build from source
|
|
|
|
If you'd like to build from source, follow the [build instructions](https://github.com/firstlookmedia/dangerzone/blob/master/BUILD.md).
|