Bullseye is to be released on 12 AUG21. I did a test install and looked for the versions of Zoneminder that were available. I did look on https://zmrepo.zoneminder.com/debian/re ... /bullseye/ and found an install for armhf. I also looked for the Debian packages for Bullseye, AKA Debian 11, and found Zoneminder 1.34.23. I did an install of 1.34.23 from a Debian mirror on my test i3. AS with other Zoneminder installs from Debian repositories the zm database was not automatically installed. While I did get 1.34.23 to work, mostly, I am advising others to leave this version alone. You should also avoid upgrading a Buster, Debian 10, with Zoneminder 1.36.x as the 1.36.x could get overwritten with the 1.34.23. I have had this happen to me and it is not a pretty site.
With a fair amount of time on my hands I will be keeping an eye on the progress of Bullseye builds of Zoneminder.
Thanks,
bb
A workaround to get ZM 1.36.5 on Bullseye!
1. install Debian 11 (Bullseye) along with Apache2, PHP and your favorite database (Mariadb recommended). A quick way to do this is:
Code: Select all
sudo apt install apache2 mariadb-server php libapache2-mod-php php-mysql
Code: Select all
wget https://zmrepo.zoneminder.com/debian/release-1.36/buster/zoneminder-doc_1.36.5-buster_all.deb
Code: Select all
wget https://zmrepo.zoneminder.com/debian/release-1.36/buster/zoneminder_1.36.5-buster_amd64.deb
Code: Select all
sudo mysql_secure_installation
Code: Select all
sudo apt install gdebi
Code: Select all
sudo gdebi zoneminder_1.36.5-buster_amd64.deb zoneminder-doc_1.35.5_all.deb
Code: Select all
sudo systemctl enable zoneminder.service
sudo systemctl start zoneminder
sudo a2enconf zoneminder
sudo a2enmod rewrite
sudo service apache2 reload
Top