Merge pull request #3642 from criadoperez/debian11-install

Added debian backports option to install a newer version of Zoneminder
pull/3646/head
Isaac Connor 2022-12-06 09:29:55 -05:00 committed by GitHub
commit c158bc3857
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 1 deletions

View File

@ -58,12 +58,25 @@ By default MariaDB uses `unix socket authentication`_, so no root user password
**Step 4:** Install zoneminder
Run the following commands.
By default Debian will install the version published in Debian (stable). However you also have the option to install a newer version using backports.
For example, at the time of this writting, bullseye (stable) ships with v.1.34.x and bullseye-backports with v.1.36.x.
To install the version in bullseye stable, just run the following command.
::
sudo apt install zoneminder
If instead you prefer to install the newer version using backports, run the following commands.
The first line will add bullseye-backports repository.
The backports repository is deactivated by default, so with the second line we explicityly state we want the backported version of zoneminder.
::
sudo echo 'deb http://deb.debian.org/debian bullseye-backports main contrib' >> /etc/apt/sources.list
sudo apt update && sudo apt -t bullseye-backports install zoneminder
**Step 5:** Configure database
::