diff --git a/docs/developer/build.md b/docs/developer/build.md index 226c720..9d086c5 100644 --- a/docs/developer/build.md +++ b/docs/developer/build.md @@ -4,34 +4,25 @@ Install dependencies: -
-
-
- :memo: Expand this section if you are on Ubuntu 22.04 (Jammy).- +:::{admonition} Read this section if you are on Ubuntu 22.04 (Jammy). +:collapsible: closed +The `conmon` version that Podman uses and Ubuntu Jammy ships, has a bug +that gets triggered by Dangerzone +(more details in https://github.com/freedomofpress/dangerzone/issues/685). +If you want to run Dangerzone from source, you are advised to install a +patched `conmon` version. A simple way to do so is to enable our +apt-tools-prod repo, just for the `conmon` package: - The `conmon` version that Podman uses and Ubuntu Jammy ships, has a bug - that gets triggered by Dangerzone - (more details in https://github.com/freedomofpress/dangerzone/issues/685). - If you want to run Dangerzone from source, you are advised to install a - patched `conmon` version. A simple way to do so is to enable our - apt-tools-prod repo, just for the `conmon` package: +```bash +sudo cp ./dev_scripts/apt-tools-prod.sources /etc/apt/sources.list.d/ +sudo cp ./dev_scripts/apt-tools-prod.pref /etc/apt/preferences.d/ +``` - ```bash - sudo cp ./dev_scripts/apt-tools-prod.sources /etc/apt/sources.list.d/ - sudo cp ./dev_scripts/apt-tools-prod.pref /etc/apt/preferences.d/ - ``` - - The `conmon` package provided in the above repo was built with the - following [instructions](https://github.com/freedomofpress/maint-dangerzone-conmon/tree/ubuntu/jammy/fpf). - Alternatively, you can install a `conmon` version higher than `v2.0.25` from - any repo you prefer. - - |
-