Page 1 of 1
How To Upgrade
Posted: Wed Mar 19, 2014 12:06 pm
by Biggus
OK, I'm still a Linux newbie!
I've got my Ubuntu 12 server setup with Zoneminder 1.26.5 installation all working.
How can I upgrade this to 1.27?
In the past I've been able to open up a terminal and type in sudo apt-get update, sudo apt-get upgrade and it would update?
Is there a step by step guide for a newbie like me?
Re: How To Upgrade
Posted: Thu Mar 20, 2014 12:38 am
by knight-of-ni
There is a lag between when the 1.27 source code is released and new packages are generated.
It takes time to properly package the source code. If the package builder runs into problems, it could take longer.
I spoke with iconnor this morning, and he is working on packaging the 1.27 release for Ubuntu.
Once he completes that, your machine will upgrade automatically after a apt update, assuming you have already added his ppa (sounds like you did already).
Re: How To Upgrade
Posted: Thu Mar 20, 2014 9:16 am
by Biggus
Thanks, I'm not quite up to packaging and building stuff up myself, but the apt-get method is great and make it easy for people like me to upgrade.
Yes I'm using the iconnor repository, I hope it gets updated soon

Re: How To Upgrade
Posted: Thu Mar 20, 2014 9:42 pm
by PacoLM
Hi,
Do you plan to compile the packages also for Debian Wheezy?
Regards,
PacoLM
Re: How To Upgrade
Posted: Sat Mar 22, 2014 8:07 pm
by bbunge
The ZM 1.27 version is now on the PPA repository
apt-get update
then
apt-get dist-upgrade
Worked for me twice!
bb
Re: How To Upgrade
Posted: Sun Mar 23, 2014 12:43 am
by bbunge
I need to add that if you use the package installers version of /etc/init.d/zoneminder , Zoneminder will not start before MySQL.
You need to add a delay to the Zoneminder start script:
nano /etc/init.d/zoneminder
Add below:
prog=ZoneMinder
sleep 15
This is documented in:
http://www.zoneminder.com/wiki/index.ph ... e_easy_way
Re: How To Upgrade
Posted: Sun Mar 23, 2014 1:32 pm
by bbunge
A better spot for the "sleep 15 is above echo -n "Starting $prog: "
start() {
sleep 15
echo -n "Starting $prog: "
bb
Re: How To Upgrade
Posted: Sun Mar 23, 2014 3:58 pm
by knight-of-ni
The best solution to the startup issue with zoneminder and Ubuntu is for someone to write (or find) a zoneminder upstart script and submit it as a pull request. That would solve this once and for all.
Re: How To Upgrade
Posted: Fri May 02, 2014 2:18 pm
by MKEbrew
PacoLM wrote:Hi,
Do you plan to compile the packages also for Debian Wheezy?
Regards,
PacoLM
I am curious about this as well.
Thank you.