<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.staging.zoneminder.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Funstuffkg</id>
	<title>ZoneMinder Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.staging.zoneminder.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Funstuffkg"/>
	<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/Special:Contributions/Funstuffkg"/>
	<updated>2026-04-19T19:14:03Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7160</id>
		<title>Raspbian</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7160"/>
		<updated>2015-11-14T19:25:30Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== &amp;#039;&amp;#039;&amp;#039;How to install ZoneMinder on Raspberry PI 1 or 2 with Raspbian 8.1 (Jessy) 64 bit&amp;#039;&amp;#039;&amp;#039; ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.&lt;br /&gt;
&lt;br /&gt;
Prereq before starting:&lt;br /&gt;
* SD card created with raspbian Jessie 64bit&lt;br /&gt;
* filesystem is extended.&lt;br /&gt;
* the systems boots in console mode with autologin disabled (X is disabled)&lt;br /&gt;
&lt;br /&gt;
Log in as pi&lt;br /&gt;
&lt;br /&gt;
 pi  (followed by your root password)&lt;br /&gt;
&lt;br /&gt;
sudo to root&lt;br /&gt;
&lt;br /&gt;
 sudo su&lt;br /&gt;
&lt;br /&gt;
Configure your network and Set static IP address&lt;br /&gt;
&lt;br /&gt;
  nano /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
Make changes similar to this:&lt;br /&gt;
&lt;br /&gt;
 auto eth0&lt;br /&gt;
  &lt;br /&gt;
 #allow-hotplug eth0 (make sure this is commented or you will get 2 ip&amp;#039;s)&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
   address 192.168.1.10&lt;br /&gt;
   netmask 255.255.255.0&lt;br /&gt;
   gateway 192.168.1.1&lt;br /&gt;
   dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Update Raspbian Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
Add the Debian Jessie backports&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
add to the top of the list:&lt;br /&gt;
&lt;br /&gt;
 deb http://http.debian.net/debian jessie-backports main&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
add priority to this repository&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/preferences.d/zoneminder&lt;br /&gt;
&lt;br /&gt;
add to the file:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: origin http.debian.net&lt;br /&gt;
 Pin-Priority: 1100&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
you will get a GPG error message like this:&lt;br /&gt;
 W: GPG error: http://http.debian.net jessie-backports InRelease: The following signatures couldn&amp;#039;t be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553    NO_PUBKEY 7638D0442B90D010&lt;br /&gt;
&lt;br /&gt;
Fix this as following:&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553&lt;br /&gt;
 gpg -a --export 8B48AD6246925553 | sudo apt-key add -&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  7638D0442B90D010&lt;br /&gt;
 gpg -a --export 7638D0442B90D010 | sudo apt-key add -&lt;br /&gt;
&lt;br /&gt;
Update Sources again (now should go fine)&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install  PHP, and MySQL server (This installs MySQL server 5.5. If you want to use MySQL 5.6 follow the instructions [[Install MySQL 5.6 on Debian Jessie]] (using mariadb also works fine, as tested on Debian 8.2, replacement package for mysql-server is then mariadb-server)&lt;br /&gt;
&lt;br /&gt;
 apt-get install  php5 mysql-server php-pear php5-mysql&lt;br /&gt;
&lt;br /&gt;
Install Zoneminder&lt;br /&gt;
&lt;br /&gt;
 apt-get install zoneminder&lt;br /&gt;
&lt;br /&gt;
You may need to install &amp;quot;extra&amp;quot; VLC components (I will check this and edit as needed)&lt;br /&gt;
&lt;br /&gt;
 apt-get install libvlc-dev libvlccore-dev vlc&lt;br /&gt;
&lt;br /&gt;
Create Zoneminder database in MySQL (Note: this also creates the default Zoneminder user and permissions in MySQL)&lt;br /&gt;
&lt;br /&gt;
This next step creates a file which contained the MySQL user and password. Otherwise you will have to enter the user and password on the command line which is not secure!&lt;br /&gt;
&lt;br /&gt;
Go to the root directory&lt;br /&gt;
 &lt;br /&gt;
 cd ~&lt;br /&gt;
&lt;br /&gt;
Create a hidden password file&lt;br /&gt;
&lt;br /&gt;
 nano .my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter this content (but use your MySQL root password!)&lt;br /&gt;
&lt;br /&gt;
 [client]&lt;br /&gt;
 user=root&lt;br /&gt;
 password=(mysqlpass)&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Create database (press ENTER after each command)&lt;br /&gt;
&lt;br /&gt;
 mysql &amp;lt; /usr/share/zoneminder/db/zm_create.sql &lt;br /&gt;
&lt;br /&gt;
 mysql -e &amp;quot;grant select,insert,update,delete,create on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Remove password file&lt;br /&gt;
&lt;br /&gt;
 rm .my.cnf&lt;br /&gt;
&lt;br /&gt;
Set permissions of /etc/zm/zm.conf to root:www-data 740&lt;br /&gt;
&lt;br /&gt;
 chmod 740 /etc/zm/zm.conf&lt;br /&gt;
 &lt;br /&gt;
 chown root:www-data /etc/zm/zm.conf&lt;br /&gt;
&lt;br /&gt;
Enable Zoneminder service to start at boot&lt;br /&gt;
&lt;br /&gt;
 systemctl enable zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Add www-data to the sudo group (to enable use of local video devices)&lt;br /&gt;
&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
&lt;br /&gt;
Start Zoneminder&lt;br /&gt;
&lt;br /&gt;
 systemctl start zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Check to see that Zoneminder is running&lt;br /&gt;
&lt;br /&gt;
 systemctl status zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Enable CGI and Zoneminder configuration in Apache.&lt;br /&gt;
 &lt;br /&gt;
 a2enmod cgi&lt;br /&gt;
 &lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
*** You may be tempted to try Zoneminder at this point but there is one setting you will need to change from the web gui.  Read on!!!&lt;br /&gt;
&lt;br /&gt;
Optional: Install Cambozola (needed if you use Internet Explorer)&lt;br /&gt;
&lt;br /&gt;
 cd /usr/src &amp;amp;&amp;amp; wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 replace 936 with cambozola version downloaded&lt;br /&gt;
&lt;br /&gt;
 cp cambozola-0.936/dist/cambozola.jar /usr/share/zoneminder&lt;br /&gt;
&lt;br /&gt;
Kernel shared memory settings:&lt;br /&gt;
&lt;br /&gt;
Set shared memory for 512MB RPi board:&lt;br /&gt;
1) 128MB shhmax shared:&lt;br /&gt;
  sudo su -&lt;br /&gt;
  echo &amp;quot;kernel.shmmax = 134217728&amp;quot; &amp;gt;&amp;gt; /etc/sysctl.conf&lt;br /&gt;
  exit&lt;br /&gt;
&lt;br /&gt;
2) 2MB shmall pages:&lt;br /&gt;
 sudo su -&lt;br /&gt;
 echo &amp;quot;kernel.shmall = 2097152&amp;quot; &amp;gt;&amp;gt; /etc/sysctl.conf&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
You should now be able to access the web server using http://servername&lt;br /&gt;
&lt;br /&gt;
Open Zoneminder in web browser&lt;br /&gt;
&lt;br /&gt;
 http://serverip/zm&lt;br /&gt;
&lt;br /&gt;
Click Options&lt;br /&gt;
&lt;br /&gt;
Uncheck: Check with zoneminder.com for updated versions (?) click Save&lt;br /&gt;
&lt;br /&gt;
Click Images tab&lt;br /&gt;
&lt;br /&gt;
Check Is the (optional) cambozola java streaming client installed (?) Click Save&lt;br /&gt;
&lt;br /&gt;
Click Paths&lt;br /&gt;
&lt;br /&gt;
Change PATH_ZMS from /cgi-bin/nph-zms to /zm/cgi-bin/nph-zms       Click Save&lt;br /&gt;
&lt;br /&gt;
Optional: under Paths change PATH_SWAP to /dev/shm (puts this process in RAM drive)   Click Save&lt;br /&gt;
&lt;br /&gt;
Restart Zoneminder&lt;br /&gt;
&lt;br /&gt;
Your Zoneminder install is now ready to add cameras!&lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7159</id>
		<title>Raspbian</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7159"/>
		<updated>2015-11-14T19:25:05Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;How to install ZoneMinder on Raspberry PI 1 or 2 with Raspbian 8.1 (Jessy) 64 bit&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.&lt;br /&gt;
&lt;br /&gt;
Prereq before starting:&lt;br /&gt;
* SD card created with raspbian Jessie 64bit&lt;br /&gt;
* filesystem is extended.&lt;br /&gt;
* the systems boots in console mode with autologin disabled (X is disabled)&lt;br /&gt;
&lt;br /&gt;
Log in as pi&lt;br /&gt;
&lt;br /&gt;
 pi  (followed by your root password)&lt;br /&gt;
&lt;br /&gt;
sudo to root&lt;br /&gt;
&lt;br /&gt;
 sudo su&lt;br /&gt;
&lt;br /&gt;
Configure your network and Set static IP address&lt;br /&gt;
&lt;br /&gt;
  nano /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
Make changes similar to this:&lt;br /&gt;
&lt;br /&gt;
 auto eth0&lt;br /&gt;
  &lt;br /&gt;
 #allow-hotplug eth0 (make sure this is commented or you will get 2 ip&amp;#039;s)&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
   address 192.168.1.10&lt;br /&gt;
   netmask 255.255.255.0&lt;br /&gt;
   gateway 192.168.1.1&lt;br /&gt;
   dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Update Raspbian Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
Add the Debian Jessie backports&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
add to the top of the list:&lt;br /&gt;
&lt;br /&gt;
 deb http://http.debian.net/debian jessie-backports main&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
add priority to this repository&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/preferences.d/zoneminder&lt;br /&gt;
&lt;br /&gt;
add to the file:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: origin http.debian.net&lt;br /&gt;
 Pin-Priority: 1100&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
you will get a GPG error message like this:&lt;br /&gt;
 W: GPG error: http://http.debian.net jessie-backports InRelease: The following signatures couldn&amp;#039;t be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553    NO_PUBKEY 7638D0442B90D010&lt;br /&gt;
&lt;br /&gt;
Fix this as following:&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553&lt;br /&gt;
 gpg -a --export 8B48AD6246925553 | sudo apt-key add -&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  7638D0442B90D010&lt;br /&gt;
 gpg -a --export 7638D0442B90D010 | sudo apt-key add -&lt;br /&gt;
&lt;br /&gt;
Update Sources again (now should go fine)&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install  PHP, and MySQL server (This installs MySQL server 5.5. If you want to use MySQL 5.6 follow the instructions [[Install MySQL 5.6 on Debian Jessie]] (using mariadb also works fine, as tested on Debian 8.2, replacement package for mysql-server is then mariadb-server)&lt;br /&gt;
&lt;br /&gt;
 apt-get install  php5 mysql-server php-pear php5-mysql&lt;br /&gt;
&lt;br /&gt;
Install Zoneminder&lt;br /&gt;
&lt;br /&gt;
 apt-get install zoneminder&lt;br /&gt;
&lt;br /&gt;
You may need to install &amp;quot;extra&amp;quot; VLC components (I will check this and edit as needed)&lt;br /&gt;
&lt;br /&gt;
 apt-get install libvlc-dev libvlccore-dev vlc&lt;br /&gt;
&lt;br /&gt;
Create Zoneminder database in MySQL (Note: this also creates the default Zoneminder user and permissions in MySQL)&lt;br /&gt;
&lt;br /&gt;
This next step creates a file which contained the MySQL user and password. Otherwise you will have to enter the user and password on the command line which is not secure!&lt;br /&gt;
&lt;br /&gt;
Go to the root directory&lt;br /&gt;
 &lt;br /&gt;
 cd ~&lt;br /&gt;
&lt;br /&gt;
Create a hidden password file&lt;br /&gt;
&lt;br /&gt;
 nano .my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter this content (but use your MySQL root password!)&lt;br /&gt;
&lt;br /&gt;
 [client]&lt;br /&gt;
 user=root&lt;br /&gt;
 password=(mysqlpass)&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Create database (press ENTER after each command)&lt;br /&gt;
&lt;br /&gt;
 mysql &amp;lt; /usr/share/zoneminder/db/zm_create.sql &lt;br /&gt;
&lt;br /&gt;
 mysql -e &amp;quot;grant select,insert,update,delete,create on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Remove password file&lt;br /&gt;
&lt;br /&gt;
 rm .my.cnf&lt;br /&gt;
&lt;br /&gt;
Set permissions of /etc/zm/zm.conf to root:www-data 740&lt;br /&gt;
&lt;br /&gt;
 chmod 740 /etc/zm/zm.conf&lt;br /&gt;
 &lt;br /&gt;
 chown root:www-data /etc/zm/zm.conf&lt;br /&gt;
&lt;br /&gt;
Enable Zoneminder service to start at boot&lt;br /&gt;
&lt;br /&gt;
 systemctl enable zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Add www-data to the sudo group (to enable use of local video devices)&lt;br /&gt;
&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
&lt;br /&gt;
Start Zoneminder&lt;br /&gt;
&lt;br /&gt;
 systemctl start zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Check to see that Zoneminder is running&lt;br /&gt;
&lt;br /&gt;
 systemctl status zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Enable CGI and Zoneminder configuration in Apache.&lt;br /&gt;
 &lt;br /&gt;
 a2enmod cgi&lt;br /&gt;
 &lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
*** You may be tempted to try Zoneminder at this point but there is one setting you will need to change from the web gui.  Read on!!!&lt;br /&gt;
&lt;br /&gt;
Optional: Install Cambozola (needed if you use Internet Explorer)&lt;br /&gt;
&lt;br /&gt;
 cd /usr/src &amp;amp;&amp;amp; wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 replace 936 with cambozola version downloaded&lt;br /&gt;
&lt;br /&gt;
 cp cambozola-0.936/dist/cambozola.jar /usr/share/zoneminder&lt;br /&gt;
&lt;br /&gt;
Kernel shared memory settings:&lt;br /&gt;
&lt;br /&gt;
Set shared memory for 512MB RPi board:&lt;br /&gt;
1) 128MB shhmax shared:&lt;br /&gt;
  sudo su -&lt;br /&gt;
  echo &amp;quot;kernel.shmmax = 134217728&amp;quot; &amp;gt;&amp;gt; /etc/sysctl.conf&lt;br /&gt;
  exit&lt;br /&gt;
&lt;br /&gt;
2) 2MB shmall pages:&lt;br /&gt;
 sudo su -&lt;br /&gt;
 echo &amp;quot;kernel.shmall = 2097152&amp;quot; &amp;gt;&amp;gt; /etc/sysctl.conf&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
You should now be able to access the web server using http://servername&lt;br /&gt;
&lt;br /&gt;
Open Zoneminder in web browser&lt;br /&gt;
&lt;br /&gt;
 http://serverip/zm&lt;br /&gt;
&lt;br /&gt;
Click Options&lt;br /&gt;
&lt;br /&gt;
Uncheck: Check with zoneminder.com for updated versions (?) click Save&lt;br /&gt;
&lt;br /&gt;
Click Images tab&lt;br /&gt;
&lt;br /&gt;
Check Is the (optional) cambozola java streaming client installed (?) Click Save&lt;br /&gt;
&lt;br /&gt;
Click Paths&lt;br /&gt;
&lt;br /&gt;
Change PATH_ZMS from /cgi-bin/nph-zms to /zm/cgi-bin/nph-zms       Click Save&lt;br /&gt;
&lt;br /&gt;
Optional: under Paths change PATH_SWAP to /dev/shm (puts this process in RAM drive)   Click Save&lt;br /&gt;
&lt;br /&gt;
Restart Zoneminder&lt;br /&gt;
&lt;br /&gt;
Your Zoneminder install is now ready to add cameras!&lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7158</id>
		<title>Raspbian</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7158"/>
		<updated>2015-11-14T19:24:21Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;How to install ZoneMinder on Raspberry PO 1 or 2 with Raspbian 8.1 (Jessy) 64 bit&lt;br /&gt;
&lt;br /&gt;
A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.&lt;br /&gt;
&lt;br /&gt;
Prereq before starting:&lt;br /&gt;
* SD card created with raspbian Jessie 64bit&lt;br /&gt;
* filesystem is extended.&lt;br /&gt;
* the systems boots in console mode with autologin disabled (X is disabled)&lt;br /&gt;
&lt;br /&gt;
Log in as pi&lt;br /&gt;
&lt;br /&gt;
 pi  (followed by your root password)&lt;br /&gt;
&lt;br /&gt;
sudo to root&lt;br /&gt;
&lt;br /&gt;
 sudo su&lt;br /&gt;
&lt;br /&gt;
Configure your network and Set static IP address&lt;br /&gt;
&lt;br /&gt;
  nano /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
Make changes similar to this:&lt;br /&gt;
&lt;br /&gt;
 auto eth0&lt;br /&gt;
  &lt;br /&gt;
 #allow-hotplug eth0 (make sure this is commented or you will get 2 ip&amp;#039;s)&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
   address 192.168.1.10&lt;br /&gt;
   netmask 255.255.255.0&lt;br /&gt;
   gateway 192.168.1.1&lt;br /&gt;
   dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Update Raspbian Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
Add the Debian Jessie backports&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
add to the top of the list:&lt;br /&gt;
&lt;br /&gt;
 deb http://http.debian.net/debian jessie-backports main&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
add priority to this repository&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/preferences.d/zoneminder&lt;br /&gt;
&lt;br /&gt;
add to the file:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: origin http.debian.net&lt;br /&gt;
 Pin-Priority: 1100&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
you will get a GPG error message like this:&lt;br /&gt;
 W: GPG error: http://http.debian.net jessie-backports InRelease: The following signatures couldn&amp;#039;t be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553    NO_PUBKEY 7638D0442B90D010&lt;br /&gt;
&lt;br /&gt;
Fix this as following:&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553&lt;br /&gt;
 gpg -a --export 8B48AD6246925553 | sudo apt-key add -&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  7638D0442B90D010&lt;br /&gt;
 gpg -a --export 7638D0442B90D010 | sudo apt-key add -&lt;br /&gt;
&lt;br /&gt;
Update Sources again (now should go fine)&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install  PHP, and MySQL server (This installs MySQL server 5.5. If you want to use MySQL 5.6 follow the instructions [[Install MySQL 5.6 on Debian Jessie]] (using mariadb also works fine, as tested on Debian 8.2, replacement package for mysql-server is then mariadb-server)&lt;br /&gt;
&lt;br /&gt;
 apt-get install  php5 mysql-server php-pear php5-mysql&lt;br /&gt;
&lt;br /&gt;
Install Zoneminder&lt;br /&gt;
&lt;br /&gt;
 apt-get install zoneminder&lt;br /&gt;
&lt;br /&gt;
You may need to install &amp;quot;extra&amp;quot; VLC components (I will check this and edit as needed)&lt;br /&gt;
&lt;br /&gt;
 apt-get install libvlc-dev libvlccore-dev vlc&lt;br /&gt;
&lt;br /&gt;
Create Zoneminder database in MySQL (Note: this also creates the default Zoneminder user and permissions in MySQL)&lt;br /&gt;
&lt;br /&gt;
This next step creates a file which contained the MySQL user and password. Otherwise you will have to enter the user and password on the command line which is not secure!&lt;br /&gt;
&lt;br /&gt;
Go to the root directory&lt;br /&gt;
 &lt;br /&gt;
 cd ~&lt;br /&gt;
&lt;br /&gt;
Create a hidden password file&lt;br /&gt;
&lt;br /&gt;
 nano .my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter this content (but use your MySQL root password!)&lt;br /&gt;
&lt;br /&gt;
 [client]&lt;br /&gt;
 user=root&lt;br /&gt;
 password=(mysqlpass)&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Create database (press ENTER after each command)&lt;br /&gt;
&lt;br /&gt;
 mysql &amp;lt; /usr/share/zoneminder/db/zm_create.sql &lt;br /&gt;
&lt;br /&gt;
 mysql -e &amp;quot;grant select,insert,update,delete,create on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Remove password file&lt;br /&gt;
&lt;br /&gt;
 rm .my.cnf&lt;br /&gt;
&lt;br /&gt;
Set permissions of /etc/zm/zm.conf to root:www-data 740&lt;br /&gt;
&lt;br /&gt;
 chmod 740 /etc/zm/zm.conf&lt;br /&gt;
 &lt;br /&gt;
 chown root:www-data /etc/zm/zm.conf&lt;br /&gt;
&lt;br /&gt;
Enable Zoneminder service to start at boot&lt;br /&gt;
&lt;br /&gt;
 systemctl enable zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Add www-data to the sudo group (to enable use of local video devices)&lt;br /&gt;
&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
&lt;br /&gt;
Start Zoneminder&lt;br /&gt;
&lt;br /&gt;
 systemctl start zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Check to see that Zoneminder is running&lt;br /&gt;
&lt;br /&gt;
 systemctl status zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Enable CGI and Zoneminder configuration in Apache.&lt;br /&gt;
 &lt;br /&gt;
 a2enmod cgi&lt;br /&gt;
 &lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
*** You may be tempted to try Zoneminder at this point but there is one setting you will need to change from the web gui.  Read on!!!&lt;br /&gt;
&lt;br /&gt;
Optional: Install Cambozola (needed if you use Internet Explorer)&lt;br /&gt;
&lt;br /&gt;
 cd /usr/src &amp;amp;&amp;amp; wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 replace 936 with cambozola version downloaded&lt;br /&gt;
&lt;br /&gt;
 cp cambozola-0.936/dist/cambozola.jar /usr/share/zoneminder&lt;br /&gt;
&lt;br /&gt;
Kernel shared memory settings:&lt;br /&gt;
&lt;br /&gt;
Set shared memory for 512MB RPi board:&lt;br /&gt;
1) 128MB shhmax shared:&lt;br /&gt;
  sudo su -&lt;br /&gt;
  echo &amp;quot;kernel.shmmax = 134217728&amp;quot; &amp;gt;&amp;gt; /etc/sysctl.conf&lt;br /&gt;
  exit&lt;br /&gt;
&lt;br /&gt;
2) 2MB shmall pages:&lt;br /&gt;
 sudo su -&lt;br /&gt;
 echo &amp;quot;kernel.shmall = 2097152&amp;quot; &amp;gt;&amp;gt; /etc/sysctl.conf&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
You should now be able to access the web server using http://servername&lt;br /&gt;
&lt;br /&gt;
Open Zoneminder in web browser&lt;br /&gt;
&lt;br /&gt;
 http://serverip/zm&lt;br /&gt;
&lt;br /&gt;
Click Options&lt;br /&gt;
&lt;br /&gt;
Uncheck: Check with zoneminder.com for updated versions (?) click Save&lt;br /&gt;
&lt;br /&gt;
Click Images tab&lt;br /&gt;
&lt;br /&gt;
Check Is the (optional) cambozola java streaming client installed (?) Click Save&lt;br /&gt;
&lt;br /&gt;
Click Paths&lt;br /&gt;
&lt;br /&gt;
Change PATH_ZMS from /cgi-bin/nph-zms to /zm/cgi-bin/nph-zms       Click Save&lt;br /&gt;
&lt;br /&gt;
Optional: under Paths change PATH_SWAP to /dev/shm (puts this process in RAM drive)   Click Save&lt;br /&gt;
&lt;br /&gt;
Restart Zoneminder&lt;br /&gt;
&lt;br /&gt;
Your Zoneminder install is now ready to add cameras!&lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7154</id>
		<title>Raspbian</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7154"/>
		<updated>2015-11-11T22:04:06Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.&lt;br /&gt;
&lt;br /&gt;
This tutorial is created for a Raspberry PI 1 and 2 running Raspbian Jessie 64bit. &lt;br /&gt;
&lt;br /&gt;
Prereq before starting:&lt;br /&gt;
* SD card created with raspbian Jessie 64bit&lt;br /&gt;
* filesystem is extended.&lt;br /&gt;
* the systems boots in console mode with autologin disabled (X is disabled)&lt;br /&gt;
&lt;br /&gt;
Log in as pi&lt;br /&gt;
&lt;br /&gt;
 pi  (followed by your root password)&lt;br /&gt;
&lt;br /&gt;
sudo to root&lt;br /&gt;
&lt;br /&gt;
 sudo su&lt;br /&gt;
&lt;br /&gt;
Configure your network and Set static IP address&lt;br /&gt;
&lt;br /&gt;
  nano /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
Make changes similar to this:&lt;br /&gt;
&lt;br /&gt;
 auto eth0&lt;br /&gt;
  &lt;br /&gt;
 #allow-hotplug eth0 (make sure this is commented or you will get 2 ip&amp;#039;s)&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
   address 192.168.1.10&lt;br /&gt;
   netmask 255.255.255.0&lt;br /&gt;
   gateway 192.168.1.1&lt;br /&gt;
   dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Update Raspbian Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
Add the Debian Jessie backports&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
add to the top of the list:&lt;br /&gt;
&lt;br /&gt;
 deb http://http.debian.net/debian jessie-backports main&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
add priority to this repository&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/preferences.d/zoneminder&lt;br /&gt;
&lt;br /&gt;
add to the file:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: origin http.debian.net&lt;br /&gt;
 Pin-Priority: 1100&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
you will get a GPG error message like this:&lt;br /&gt;
 W: GPG error: http://http.debian.net jessie-backports InRelease: The following signatures couldn&amp;#039;t be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553    NO_PUBKEY 7638D0442B90D010&lt;br /&gt;
&lt;br /&gt;
Fix this as following:&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553&lt;br /&gt;
 gpg -a --export 8B48AD6246925553 | sudo apt-key add -&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  7638D0442B90D010&lt;br /&gt;
 gpg -a --export 7638D0442B90D010 | sudo apt-key add -&lt;br /&gt;
&lt;br /&gt;
Update Sources again (now should go fine)&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install  PHP, and MySQL server (This installs MySQL server 5.5. If you want to use MySQL 5.6 follow the instructions [[Install MySQL 5.6 on Debian Jessie]] (using mariadb also works fine, as tested on Debian 8.2, replacement package for mysql-server is then mariadb-server)&lt;br /&gt;
&lt;br /&gt;
 apt-get install  php5 mysql-server php-pear php5-mysql&lt;br /&gt;
&lt;br /&gt;
Install Zoneminder&lt;br /&gt;
&lt;br /&gt;
 apt-get install zoneminder&lt;br /&gt;
&lt;br /&gt;
You may need to install &amp;quot;extra&amp;quot; VLC components (I will check this and edit as needed)&lt;br /&gt;
&lt;br /&gt;
 apt-get install libvlc-dev libvlccore-dev vlc&lt;br /&gt;
&lt;br /&gt;
Create Zoneminder database in MySQL (Note: this also creates the default Zoneminder user and permissions in MySQL)&lt;br /&gt;
&lt;br /&gt;
This next step creates a file which contained the MySQL user and password. Otherwise you will have to enter the user and password on the command line which is not secure!&lt;br /&gt;
&lt;br /&gt;
Go to the root directory&lt;br /&gt;
 &lt;br /&gt;
 cd ~&lt;br /&gt;
&lt;br /&gt;
Create a hidden password file&lt;br /&gt;
&lt;br /&gt;
 nano .my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter this content (but use your MySQL root password!)&lt;br /&gt;
&lt;br /&gt;
 [client]&lt;br /&gt;
 user=root&lt;br /&gt;
 password=(mysqlpass)&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Create database (press ENTER after each command)&lt;br /&gt;
&lt;br /&gt;
 mysql &amp;lt; /usr/share/zoneminder/db/zm_create.sql &lt;br /&gt;
&lt;br /&gt;
 mysql -e &amp;quot;grant select,insert,update,delete,create on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Remove password file&lt;br /&gt;
&lt;br /&gt;
 rm .my.cnf&lt;br /&gt;
&lt;br /&gt;
Set permissions of /etc/zm/zm.conf to root:www-data 740&lt;br /&gt;
&lt;br /&gt;
 chmod 740 /etc/zm/zm.conf&lt;br /&gt;
 &lt;br /&gt;
 chown root:www-data /etc/zm/zm.conf&lt;br /&gt;
&lt;br /&gt;
Enable Zoneminder service to start at boot&lt;br /&gt;
&lt;br /&gt;
 systemctl enable zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Add www-data to the sudo group (to enable use of local video devices)&lt;br /&gt;
&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
&lt;br /&gt;
Start Zoneminder&lt;br /&gt;
&lt;br /&gt;
 systemctl start zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Check to see that Zoneminder is running&lt;br /&gt;
&lt;br /&gt;
 systemctl status zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Enable CGI and Zoneminder configuration in Apache.&lt;br /&gt;
 &lt;br /&gt;
 a2enmod cgi&lt;br /&gt;
 &lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
*** You may be tempted to try Zoneminder at this point but there is one setting you will need to change from the web gui.  Read on!!!&lt;br /&gt;
&lt;br /&gt;
Optional: Install Cambozola (needed if you use Internet Explorer)&lt;br /&gt;
&lt;br /&gt;
 cd /usr/src &amp;amp;&amp;amp; wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 replace 936 with cambozola version downloaded&lt;br /&gt;
&lt;br /&gt;
 cp cambozola-0.936/dist/cambozola.jar /usr/share/zoneminder&lt;br /&gt;
&lt;br /&gt;
Kernel shared memory settings:&lt;br /&gt;
&lt;br /&gt;
Set shared memory for 512MB RPi board:&lt;br /&gt;
1) 128MB shhmax shared:&lt;br /&gt;
  sudo su -&lt;br /&gt;
  echo &amp;quot;kernel.shmmax = 134217728&amp;quot; &amp;gt;&amp;gt; /etc/sysctl.conf&lt;br /&gt;
  exit&lt;br /&gt;
&lt;br /&gt;
2) 2MB shmall pages:&lt;br /&gt;
 sudo su -&lt;br /&gt;
 echo &amp;quot;kernel.shmall = 2097152&amp;quot; &amp;gt;&amp;gt; /etc/sysctl.conf&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
You should now be able to access the web server using http://servername&lt;br /&gt;
&lt;br /&gt;
Open Zoneminder in web browser&lt;br /&gt;
&lt;br /&gt;
 http://serverip/zm&lt;br /&gt;
&lt;br /&gt;
Click Options&lt;br /&gt;
&lt;br /&gt;
Uncheck: Check with zoneminder.com for updated versions (?) click Save&lt;br /&gt;
&lt;br /&gt;
Click Images tab&lt;br /&gt;
&lt;br /&gt;
Check Is the (optional) cambozola java streaming client installed (?) Click Save&lt;br /&gt;
&lt;br /&gt;
Click Paths&lt;br /&gt;
&lt;br /&gt;
Change PATH_ZMS from /cgi-bin/nph-zms to /zm/cgi-bin/nph-zms       Click Save&lt;br /&gt;
&lt;br /&gt;
Optional: under Paths change PATH_SWAP to /dev/shm (puts this process in RAM drive)   Click Save&lt;br /&gt;
&lt;br /&gt;
Restart Zoneminder&lt;br /&gt;
&lt;br /&gt;
Your Zoneminder install is now ready to add cameras!&lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7153</id>
		<title>Raspbian</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7153"/>
		<updated>2015-11-11T22:02:22Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.&lt;br /&gt;
&lt;br /&gt;
This tutorial is created for a Raspberry PI 1 and 2 running Raspbian Jessie 64bit. &lt;br /&gt;
&lt;br /&gt;
Prereq before starting:&lt;br /&gt;
* SD card created with raspbian Jessie 64bit&lt;br /&gt;
* filesystem is extended.&lt;br /&gt;
* the systems boots in console mode with autologin disabled (X is disabled)&lt;br /&gt;
&lt;br /&gt;
Log in as pi&lt;br /&gt;
&lt;br /&gt;
 pi  (followed by your root password)&lt;br /&gt;
&lt;br /&gt;
sudo to root&lt;br /&gt;
&lt;br /&gt;
 sudo su&lt;br /&gt;
&lt;br /&gt;
Configure your network and Set static IP address&lt;br /&gt;
&lt;br /&gt;
  nano /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
Make changes similar to this:&lt;br /&gt;
&lt;br /&gt;
 auto eth0&lt;br /&gt;
  &lt;br /&gt;
 #allow-hotplug eth0 (make sure this is commented or you will get 2 ip&amp;#039;s)&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
   address 192.168.1.10&lt;br /&gt;
   netmask 255.255.255.0&lt;br /&gt;
   gateway 192.168.1.1&lt;br /&gt;
   dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Update Raspbian Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
Add the Debian Jessie backports&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
add to the top of the list:&lt;br /&gt;
&lt;br /&gt;
 deb http://http.debian.net/debian jessie-backports main&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
add priority to this repository&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/preferences.d/zoneminder&lt;br /&gt;
&lt;br /&gt;
add to the file:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: origin http.debian.net&lt;br /&gt;
 Pin-Priority: 1100&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
you will get a GPG error message like this:&lt;br /&gt;
 W: GPG error: http://http.debian.net jessie-backports InRelease: The following signatures couldn&amp;#039;t be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553    NO_PUBKEY 7638D0442B90D010&lt;br /&gt;
&lt;br /&gt;
Fix this as following:&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553&lt;br /&gt;
 gpg -a --export 8B48AD6246925553 | sudo apt-key add -&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  7638D0442B90D010&lt;br /&gt;
 gpg -a --export 7638D0442B90D010 | sudo apt-key add -&lt;br /&gt;
&lt;br /&gt;
Update Sources again (now should go fine)&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install  PHP, and MySQL server (This installs MySQL server 5.5. If you want to use MySQL 5.6 follow the instructions [[Install MySQL 5.6 on Debian Jessie]] (using mariadb also works fine, as tested on Debian 8.2, replacement package for mysql-server is then mariadb-server)&lt;br /&gt;
&lt;br /&gt;
 apt-get install  php5 mysql-server php-pear php5-mysql&lt;br /&gt;
&lt;br /&gt;
Install Zoneminder&lt;br /&gt;
&lt;br /&gt;
 apt-get install zoneminder&lt;br /&gt;
&lt;br /&gt;
You may need to install &amp;quot;extra&amp;quot; VLC components (I will check this and edit as needed)&lt;br /&gt;
&lt;br /&gt;
 apt-get install libvlc-dev libvlccore-dev vlc&lt;br /&gt;
&lt;br /&gt;
Create Zoneminder database in MySQL (Note: this also creates the default Zoneminder user and permissions in MySQL)&lt;br /&gt;
&lt;br /&gt;
This next step creates a file which contained the MySQL user and password. Otherwise you will have to enter the user and password on the command line which is not secure!&lt;br /&gt;
&lt;br /&gt;
Go to the root directory&lt;br /&gt;
 &lt;br /&gt;
 cd ~&lt;br /&gt;
&lt;br /&gt;
Create a hidden password file&lt;br /&gt;
&lt;br /&gt;
 nano .my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter this content (but use your MySQL root password!)&lt;br /&gt;
&lt;br /&gt;
 [client]&lt;br /&gt;
 user=root&lt;br /&gt;
 password=(mysqlpass)&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Create database (press ENTER after each command)&lt;br /&gt;
&lt;br /&gt;
 mysql &amp;lt; /usr/share/zoneminder/db/zm_create.sql &lt;br /&gt;
&lt;br /&gt;
 mysql -e &amp;quot;grant select,insert,update,delete,create on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Remove password file&lt;br /&gt;
&lt;br /&gt;
 rm .my.cnf&lt;br /&gt;
&lt;br /&gt;
Set permissions of /etc/zm/zm.conf to root:www-data 740&lt;br /&gt;
&lt;br /&gt;
 chmod 740 /etc/zm/zm.conf&lt;br /&gt;
 &lt;br /&gt;
 chown root:www-data /etc/zm/zm.conf&lt;br /&gt;
&lt;br /&gt;
Enable Zoneminder service to start at boot&lt;br /&gt;
&lt;br /&gt;
 systemctl enable zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Add www-data to the sudo group (to enable use of local video devices)&lt;br /&gt;
&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
&lt;br /&gt;
Start Zoneminder&lt;br /&gt;
&lt;br /&gt;
 systemctl start zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Check to see that Zoneminder is running&lt;br /&gt;
&lt;br /&gt;
 systemctl status zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Enable CGI and Zoneminder configuration in Apache.&lt;br /&gt;
 &lt;br /&gt;
 a2enmod cgi&lt;br /&gt;
 &lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
*** You may be tempted to try Zoneminder at this point but there is one setting you will need to change from the web gui.  Read on!!!&lt;br /&gt;
&lt;br /&gt;
Optional: Install Cambozola (needed if you use Internet Explorer)&lt;br /&gt;
&lt;br /&gt;
 cd /usr/src &amp;amp;&amp;amp; wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 replace 936 with cambozola version downloaded&lt;br /&gt;
&lt;br /&gt;
 cp cambozola-0.936/dist/cambozola.jar /usr/share/zoneminder&lt;br /&gt;
&lt;br /&gt;
Kernel shared memory settings:&lt;br /&gt;
# Set shared memory for 512MB RPi board:&lt;br /&gt;
# 128MB shhmax shared:&lt;br /&gt;
  sudo su -&lt;br /&gt;
  echo &amp;quot;kernel.shmmax = 134217728&amp;quot; &amp;gt;&amp;gt; /etc/sysctl.conf&lt;br /&gt;
  exit&lt;br /&gt;
# 2MB shmall pages:&lt;br /&gt;
  sudo su -&lt;br /&gt;
  echo &amp;quot;kernel.shmall = 2097152&amp;quot; &amp;gt;&amp;gt; /etc/sysctl.conf&lt;br /&gt;
  exit&lt;br /&gt;
&lt;br /&gt;
You should now be able to access the web server using http://servername&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Open Zoneminder in web browser&lt;br /&gt;
&lt;br /&gt;
 http://serverip/zm&lt;br /&gt;
&lt;br /&gt;
Click Options&lt;br /&gt;
&lt;br /&gt;
Uncheck: Check with zoneminder.com for updated versions (?) click Save&lt;br /&gt;
&lt;br /&gt;
Click Images tab&lt;br /&gt;
&lt;br /&gt;
Check Is the (optional) cambozola java streaming client installed (?) Click Save&lt;br /&gt;
&lt;br /&gt;
Click Paths&lt;br /&gt;
&lt;br /&gt;
Change PATH_ZMS from /cgi-bin/nph-zms to /zm/cgi-bin/nph-zms       Click Save&lt;br /&gt;
&lt;br /&gt;
Optional: under Paths change PATH_SWAP to /dev/shm (puts this process in RAM drive)   Click Save&lt;br /&gt;
&lt;br /&gt;
Restart Zoneminder&lt;br /&gt;
&lt;br /&gt;
Your Zoneminder install is now ready to add cameras!&lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7152</id>
		<title>Raspbian</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7152"/>
		<updated>2015-11-11T21:59:48Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.&lt;br /&gt;
&lt;br /&gt;
This tutorial is created for a Raspberry PI 1 and 2 running Raspbian Jessie 64bit. &lt;br /&gt;
&lt;br /&gt;
Prereq before starting:&lt;br /&gt;
* SD card created with raspbian Jessie 64bit&lt;br /&gt;
* filesystem is extended.&lt;br /&gt;
* the systems boots in console mode with autologin disabled (X is disabled)&lt;br /&gt;
&lt;br /&gt;
Log in as pi&lt;br /&gt;
&lt;br /&gt;
 pi  (followed by your root password)&lt;br /&gt;
&lt;br /&gt;
sudo to root&lt;br /&gt;
&lt;br /&gt;
 sudo su&lt;br /&gt;
&lt;br /&gt;
Configure your network and Set static IP address&lt;br /&gt;
&lt;br /&gt;
  nano /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
Make changes similar to this:&lt;br /&gt;
&lt;br /&gt;
 auto eth0&lt;br /&gt;
  &lt;br /&gt;
 #allow-hotplug eth0 (make sure this is commented or you will get 2 ip&amp;#039;s)&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
   address 192.168.1.10&lt;br /&gt;
   netmask 255.255.255.0&lt;br /&gt;
   gateway 192.168.1.1&lt;br /&gt;
   dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Update Raspbian Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
Add the Debian Jessie backports&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
add to the top of the list:&lt;br /&gt;
&lt;br /&gt;
 deb http://http.debian.net/debian jessie-backports main&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
add priority to this repository&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/preferences.d/zoneminder&lt;br /&gt;
&lt;br /&gt;
add to the file:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: origin http.debian.net&lt;br /&gt;
 Pin-Priority: 1100&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
you will get a GPG error message like this:&lt;br /&gt;
 W: GPG error: http://http.debian.net jessie-backports InRelease: The following signatures couldn&amp;#039;t be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553    NO_PUBKEY 7638D0442B90D010&lt;br /&gt;
&lt;br /&gt;
Fix this as following:&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553&lt;br /&gt;
 gpg -a --export 8B48AD6246925553 | sudo apt-key add -&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  7638D0442B90D010&lt;br /&gt;
 gpg -a --export 7638D0442B90D010 | sudo apt-key add -&lt;br /&gt;
&lt;br /&gt;
Update Sources again (now should go fine)&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install  PHP, and MySQL server (This installs MySQL server 5.5. If you want to use MySQL 5.6 follow the instructions [[Install MySQL 5.6 on Debian Jessie]] (using mariadb also works fine, as tested on Debian 8.2, replacement package for mysql-server is then mariadb-server)&lt;br /&gt;
&lt;br /&gt;
 apt-get install  php5 mysql-server php-pear php5-mysql&lt;br /&gt;
&lt;br /&gt;
Install Zoneminder&lt;br /&gt;
&lt;br /&gt;
 apt-get install zoneminder&lt;br /&gt;
&lt;br /&gt;
You may need to install &amp;quot;extra&amp;quot; VLC components (I will check this and edit as needed)&lt;br /&gt;
&lt;br /&gt;
 apt-get install libvlc-dev libvlccore-dev vlc&lt;br /&gt;
&lt;br /&gt;
Create Zoneminder database in MySQL (Note: this also creates the default Zoneminder user and permissions in MySQL)&lt;br /&gt;
&lt;br /&gt;
This next step creates a file which contained the MySQL user and password. Otherwise you will have to enter the user and password on the command line which is not secure!&lt;br /&gt;
&lt;br /&gt;
Go to the root directory&lt;br /&gt;
 &lt;br /&gt;
 cd ~&lt;br /&gt;
&lt;br /&gt;
Create a hidden password file&lt;br /&gt;
&lt;br /&gt;
 nano .my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter this content (but use your MySQL root password!)&lt;br /&gt;
&lt;br /&gt;
 [client]&lt;br /&gt;
 user=root&lt;br /&gt;
 password=(mysqlpass)&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Create database (press ENTER after each command)&lt;br /&gt;
&lt;br /&gt;
 mysql &amp;lt; /usr/share/zoneminder/db/zm_create.sql &lt;br /&gt;
&lt;br /&gt;
 mysql -e &amp;quot;grant select,insert,update,delete,create on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Remove password file&lt;br /&gt;
&lt;br /&gt;
 rm .my.cnf&lt;br /&gt;
&lt;br /&gt;
Set permissions of /etc/zm/zm.conf to root:www-data 740&lt;br /&gt;
&lt;br /&gt;
 chmod 740 /etc/zm/zm.conf&lt;br /&gt;
 &lt;br /&gt;
 chown root:www-data /etc/zm/zm.conf&lt;br /&gt;
&lt;br /&gt;
Enable Zoneminder service to start at boot&lt;br /&gt;
&lt;br /&gt;
 systemctl enable zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Add www-data to the sudo group (to enable use of local video devices)&lt;br /&gt;
&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
&lt;br /&gt;
Start Zoneminder&lt;br /&gt;
&lt;br /&gt;
 systemctl start zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Check to see that Zoneminder is running&lt;br /&gt;
&lt;br /&gt;
 systemctl status zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Enable CGI and Zoneminder configuration in Apache.&lt;br /&gt;
 &lt;br /&gt;
 a2enmod cgi&lt;br /&gt;
 &lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
*** You may be tempted to try Zoneminder at this point but there is one setting you will need to change from the web gui.  Read on!!!&lt;br /&gt;
&lt;br /&gt;
Optional: Install Cambozola (needed if you use Internet Explorer)&lt;br /&gt;
&lt;br /&gt;
 cd /usr/src &amp;amp;&amp;amp; wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 replace 936 with cambozola version downloaded&lt;br /&gt;
&lt;br /&gt;
 cp cambozola-0.936/dist/cambozola.jar /usr/share/zoneminder&lt;br /&gt;
&lt;br /&gt;
You should now be able to access the web server using http://servername&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Open Zoneminder in web browser&lt;br /&gt;
&lt;br /&gt;
 http://serverip/zm&lt;br /&gt;
&lt;br /&gt;
Click Options&lt;br /&gt;
&lt;br /&gt;
Uncheck: Check with zoneminder.com for updated versions (?) click Save&lt;br /&gt;
&lt;br /&gt;
Click Images tab&lt;br /&gt;
&lt;br /&gt;
Check Is the (optional) cambozola java streaming client installed (?) Click Save&lt;br /&gt;
&lt;br /&gt;
Click Paths&lt;br /&gt;
&lt;br /&gt;
Change PATH_ZMS from /cgi-bin/nph-zms to /zm/cgi-bin/nph-zms       Click Save&lt;br /&gt;
&lt;br /&gt;
Optional: under Paths change PATH_SWAP to /dev/shm (puts this process in RAM drive)   Click Save&lt;br /&gt;
&lt;br /&gt;
Restart Zoneminder&lt;br /&gt;
&lt;br /&gt;
Your Zoneminder install is now ready to add cameras!&lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Helpful_user_contributed_resources&amp;diff=7151</id>
		<title>Helpful user contributed resources</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Helpful_user_contributed_resources&amp;diff=7151"/>
		<updated>2015-11-11T21:56:07Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: /* Distribution-specific guides */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Documentation==&lt;br /&gt;
[[Main Documentation]]&lt;br /&gt;
&lt;br /&gt;
[[FAQ]]&lt;br /&gt;
&lt;br /&gt;
[[Supplementary Documentation]]&lt;br /&gt;
&lt;br /&gt;
[[General Notes]]&lt;br /&gt;
&lt;br /&gt;
[[Change History]]&lt;br /&gt;
&lt;br /&gt;
[[Future Development]]&lt;br /&gt;
&lt;br /&gt;
[[Patches]]&lt;br /&gt;
&lt;br /&gt;
[[ZoneMinder 1.24.2 Bugfixes]]&lt;br /&gt;
&lt;br /&gt;
==Supported== &lt;br /&gt;
&lt;br /&gt;
[[Beginner hardware]]&lt;br /&gt;
&lt;br /&gt;
[[Supported distributions]]&lt;br /&gt;
&lt;br /&gt;
[[Hardware Compatibility List ]]&lt;br /&gt;
&lt;br /&gt;
(External: Flash&amp;#039;s IP Camera Database: http://digdilem.org/cameras ]&lt;br /&gt;
&lt;br /&gt;
[[MobileDevices]]&lt;br /&gt;
&lt;br /&gt;
==Distribution-specific guides==&lt;br /&gt;
[[Fedora]] / [[CentOS]]&lt;br /&gt;
&lt;br /&gt;
[[Debian]] / [[Ubuntu]] / [[Raspbian]] / [http://www.guiadohardware.net/tutoriais/sistema-vigilancia-zoneminder/ Kurumin (in Portuguese)] &lt;br /&gt;
&lt;br /&gt;
[[Mandrake-Mandriva]] / [[ZMliveCD]]&lt;br /&gt;
&lt;br /&gt;
[[Slackware]]&lt;br /&gt;
&lt;br /&gt;
[[SuSE]]&lt;br /&gt;
&lt;br /&gt;
[[Gentoo]] / [[Sabayon]]&lt;br /&gt;
&lt;br /&gt;
[[Yellow Dog Linux]] / [[Sony PS3]]&lt;br /&gt;
&lt;br /&gt;
[[PCLinuxOS_and_1.23.1|PCLinuxOS]]&lt;br /&gt;
&lt;br /&gt;
[[FreeBSD]]&lt;br /&gt;
&lt;br /&gt;
[[Arch Linux]] / [[ZMLarch]]&lt;br /&gt;
&lt;br /&gt;
[[MS Windows/Virtual Appliance]]&lt;br /&gt;
&lt;br /&gt;
==Third party==&lt;br /&gt;
[[Flash&amp;#039;s IP Camera Database]]&lt;br /&gt;
&lt;br /&gt;
[[Utilities]]&lt;br /&gt;
&lt;br /&gt;
[http://foscam.us/forum/showing-secure-methods-using-php-to-display-your-ip-cameras-t8721.html Embed any IP Camera in website and webpages securely] - Free, many options. Includes many live examples.&lt;br /&gt;
&lt;br /&gt;
[[Standalone Zm Frontends]]&lt;br /&gt;
&lt;br /&gt;
[http://code.google.com/p/zonerama/ Zonerama] - Merges multiple  monitors into one and supports video creation. &lt;br /&gt;
&lt;br /&gt;
[[IpCamMontage]] Ip Camera Montage - remove the user viewing load from the server for IP Camera setups.&lt;br /&gt;
&lt;br /&gt;
[[Plugins]]&lt;br /&gt;
&lt;br /&gt;
[[Infrared Leds, Cameras, DC-DC converters etc]]&lt;br /&gt;
&lt;br /&gt;
[[Consultants]]&lt;br /&gt;
&lt;br /&gt;
[[Video Recorders running ZM]]&lt;br /&gt;
&lt;br /&gt;
==Other documentation==&lt;br /&gt;
[[External resources of information related to ZM]]&lt;br /&gt;
&lt;br /&gt;
[[How To]] &lt;br /&gt;
&lt;br /&gt;
[[Miscellaneous helpful hints]]&lt;br /&gt;
&lt;br /&gt;
[[Hardware specific tips]]&lt;br /&gt;
&lt;br /&gt;
[[Various Learnings from getting Zomeminder 1.28.1 working well on Ubuntu Server 14.04]]&lt;br /&gt;
&lt;br /&gt;
==CCTV Laws==&lt;br /&gt;
[[Area Specific Laws]]&lt;br /&gt;
&lt;br /&gt;
[http://www.library.ca.gov/CRB/97/05/ California Report on Public Video Surveillance]&lt;br /&gt;
&lt;br /&gt;
 &lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7150</id>
		<title>Raspbian</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7150"/>
		<updated>2015-11-11T21:51:12Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.&lt;br /&gt;
&lt;br /&gt;
This tutorial is created for a Raspberry PI 1 and 2 running Raspbian Jessie 64bit. &lt;br /&gt;
&lt;br /&gt;
Prereq before starting:&lt;br /&gt;
* SD card created with raspbian Jessie 64bit&lt;br /&gt;
* filesystem is extended.&lt;br /&gt;
* the systems boots in console mode (X is disabled)&lt;br /&gt;
&lt;br /&gt;
Log in as pi&lt;br /&gt;
&lt;br /&gt;
 pi  (followed by your root password)&lt;br /&gt;
&lt;br /&gt;
sudo to root&lt;br /&gt;
&lt;br /&gt;
 sudo su&lt;br /&gt;
&lt;br /&gt;
Configure your network and Set static IP address&lt;br /&gt;
&lt;br /&gt;
  nano /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
Make changes similar to this:&lt;br /&gt;
&lt;br /&gt;
 auto eth0&lt;br /&gt;
  &lt;br /&gt;
 #allow-hotplug eth0 (make sure this is commented or you will get 2 ip&amp;#039;s)&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
   address 192.168.1.10&lt;br /&gt;
   netmask 255.255.255.0&lt;br /&gt;
   gateway 192.168.1.1&lt;br /&gt;
   dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Update Raspbian Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
Add the Debian Jessie backports&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
add to the top of the list:&lt;br /&gt;
&lt;br /&gt;
 deb http://http.debian.net/debian jessie-backports main&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
add priority to this repository&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/preferences.d/zoneminder&lt;br /&gt;
&lt;br /&gt;
add to the file:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: origin http.debian.net&lt;br /&gt;
 Pin-Priority: 1100&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
you will get a GPG error message like this:&lt;br /&gt;
 W: GPG error: http://http.debian.net jessie-backports InRelease: The following signatures couldn&amp;#039;t be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553    NO_PUBKEY 7638D0442B90D010&lt;br /&gt;
&lt;br /&gt;
Fix this as following:&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553&lt;br /&gt;
 gpg -a --export 8B48AD6246925553 | sudo apt-key add -&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  7638D0442B90D010&lt;br /&gt;
 gpg -a --export 7638D0442B90D010 | sudo apt-key add -&lt;br /&gt;
&lt;br /&gt;
Update Sources again (now should go fine)&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install  PHP, and MySQL server (This installs MySQL server 5.5. If you want to use MySQL 5.6 follow the instructions [[Install MySQL 5.6 on Debian Jessie]] (using mariadb also works fine, as tested on Debian 8.2, replacement package for mysql-server is then mariadb-server)&lt;br /&gt;
&lt;br /&gt;
 apt-get install  php5 mysql-server php-pear php5-mysql&lt;br /&gt;
&lt;br /&gt;
Install Zoneminder&lt;br /&gt;
&lt;br /&gt;
 apt-get install zoneminder&lt;br /&gt;
&lt;br /&gt;
You may need to install &amp;quot;extra&amp;quot; VLC components (I will check this and edit as needed)&lt;br /&gt;
&lt;br /&gt;
 apt-get install libvlc-dev libvlccore-dev vlc&lt;br /&gt;
&lt;br /&gt;
Create Zoneminder database in MySQL (Note: this also creates the default Zoneminder user and permissions in MySQL)&lt;br /&gt;
&lt;br /&gt;
This next step creates a file which contained the MySQL user and password. Otherwise you will have to enter the user and password on the command line which is not secure!&lt;br /&gt;
&lt;br /&gt;
Go to the root directory&lt;br /&gt;
 &lt;br /&gt;
 cd ~&lt;br /&gt;
&lt;br /&gt;
Create a hidden password file&lt;br /&gt;
&lt;br /&gt;
 nano .my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter this content (but use your MySQL root password!)&lt;br /&gt;
&lt;br /&gt;
 [client]&lt;br /&gt;
 user=root&lt;br /&gt;
 password=(mysqlpass)&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Create database (press ENTER after each command)&lt;br /&gt;
&lt;br /&gt;
 mysql &amp;lt; /usr/share/zoneminder/db/zm_create.sql &lt;br /&gt;
&lt;br /&gt;
 mysql -e &amp;quot;grant select,insert,update,delete,create on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Remove password file&lt;br /&gt;
&lt;br /&gt;
 rm .my.cnf&lt;br /&gt;
&lt;br /&gt;
Set permissions of /etc/zm/zm.conf to root:www-data 740&lt;br /&gt;
&lt;br /&gt;
 chmod 740 /etc/zm/zm.conf&lt;br /&gt;
 &lt;br /&gt;
 chown root:www-data /etc/zm/zm.conf&lt;br /&gt;
&lt;br /&gt;
Enable Zoneminder service to start at boot&lt;br /&gt;
&lt;br /&gt;
 systemctl enable zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Add www-data to the sudo group (to enable use of local video devices)&lt;br /&gt;
&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
&lt;br /&gt;
Start Zoneminder&lt;br /&gt;
&lt;br /&gt;
 systemctl start zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Check to see that Zoneminder is running&lt;br /&gt;
&lt;br /&gt;
 systemctl status zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Enable CGI and Zoneminder configuration in Apache.&lt;br /&gt;
 &lt;br /&gt;
 a2enmod cgi&lt;br /&gt;
 &lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
*** You may be tempted to try Zoneminder at this point but there is one setting you will need to change from the web gui.  Read on!!!&lt;br /&gt;
&lt;br /&gt;
Optional: Install Cambozola (needed if you use Internet Explorer)&lt;br /&gt;
&lt;br /&gt;
 cd /usr/src &amp;amp;&amp;amp; wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 replace 936 with cambozola version downloaded&lt;br /&gt;
&lt;br /&gt;
 cp cambozola-0.936/dist/cambozola.jar /usr/share/zoneminder&lt;br /&gt;
&lt;br /&gt;
You should now be able to access the web server using http://servername&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Open Zoneminder in web browser&lt;br /&gt;
&lt;br /&gt;
 http://serverip/zm&lt;br /&gt;
&lt;br /&gt;
Click Options&lt;br /&gt;
&lt;br /&gt;
Uncheck: Check with zoneminder.com for updated versions (?) click Save&lt;br /&gt;
&lt;br /&gt;
Click Images tab&lt;br /&gt;
&lt;br /&gt;
Check Is the (optional) cambozola java streaming client installed (?) Click Save&lt;br /&gt;
&lt;br /&gt;
Click Paths&lt;br /&gt;
&lt;br /&gt;
Change PATH_ZMS from /cgi-bin/nph-zms to /zm/cgi-bin/nph-zms       Click Save&lt;br /&gt;
&lt;br /&gt;
Optional: under Paths change PATH_SWAP to /dev/shm (puts this process in RAM drive)   Click Save&lt;br /&gt;
&lt;br /&gt;
Restart Zoneminder&lt;br /&gt;
&lt;br /&gt;
Your Zoneminder install is now ready to add cameras!&lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7149</id>
		<title>Raspbian</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7149"/>
		<updated>2015-11-11T21:49:27Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.&lt;br /&gt;
&lt;br /&gt;
This tutorial is created for a Raspberry PI 1 and 2 running Raspbian Jessie 64bit. &lt;br /&gt;
&lt;br /&gt;
Prereq before starting:&lt;br /&gt;
* SD card created with raspbian Jessie 64bit&lt;br /&gt;
* filesystem is extended.&lt;br /&gt;
* the systems boots in console mode (X is disabled)&lt;br /&gt;
&lt;br /&gt;
Log in as root&lt;br /&gt;
&lt;br /&gt;
 su root  (followed by your root password)&lt;br /&gt;
&lt;br /&gt;
Configure your network Set static IP address&lt;br /&gt;
&lt;br /&gt;
  nano /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
Make changes similar to this:&lt;br /&gt;
&lt;br /&gt;
 auto eth0&lt;br /&gt;
  &lt;br /&gt;
 #allow-hotplug eth0 (make sure this is commented or you will get 2 ip&amp;#039;s)&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
   address 192.168.1.10&lt;br /&gt;
   netmask 255.255.255.0&lt;br /&gt;
   gateway 192.168.1.1&lt;br /&gt;
   dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Update Raspbian Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
Add the Jessie backports&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
add to the top of the list:&lt;br /&gt;
&lt;br /&gt;
 deb http://http.debian.net/debian jessie-backports main&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
add priority to this repository&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/preferences.d/zoneminder&lt;br /&gt;
&lt;br /&gt;
add to the file:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: origin http.debian.net&lt;br /&gt;
 Pin-Priority: 1100&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
you will get a GPG error message like this:&lt;br /&gt;
 W: GPG error: http://http.debian.net jessie-backports InRelease: The following signatures couldn&amp;#039;t be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553    NO_PUBKEY 7638D0442B90D010&lt;br /&gt;
&lt;br /&gt;
Fix this as following:&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553&lt;br /&gt;
 gpg -a --export 8B48AD6246925553 | sudo apt-key add -&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  7638D0442B90D010&lt;br /&gt;
 gpg -a --export 7638D0442B90D010 | sudo apt-key add -&lt;br /&gt;
&lt;br /&gt;
Update Sources again (now should go fine)&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install  PHP, and MySQL server (This installs MySQL server 5.5. If you want to use MySQL 5.6 follow the instructions [[Install MySQL 5.6 on Debian Jessie]] (using mariadb also works fine, as tested on Debian 8.2, replacement package for mysql-server is then mariadb-server)&lt;br /&gt;
&lt;br /&gt;
 apt-get install  php5 mysql-server php-pear php5-mysql&lt;br /&gt;
&lt;br /&gt;
Install Zoneminder&lt;br /&gt;
&lt;br /&gt;
 apt-get install zoneminder&lt;br /&gt;
&lt;br /&gt;
You may need to install &amp;quot;extra&amp;quot; VLC components (I will check this and edit as needed)&lt;br /&gt;
&lt;br /&gt;
 apt-get install libvlc-dev libvlccore-dev vlc&lt;br /&gt;
&lt;br /&gt;
Create Zoneminder database in MySQL (Note: this also creates the default Zoneminder user and permissions in MySQL)&lt;br /&gt;
&lt;br /&gt;
This next step creates a file which contained the MySQL user and password. Otherwise you will have to enter the user and password on the command line which is not secure!&lt;br /&gt;
&lt;br /&gt;
Go to the root directory&lt;br /&gt;
 &lt;br /&gt;
 cd ~&lt;br /&gt;
&lt;br /&gt;
Create a hidden password file&lt;br /&gt;
&lt;br /&gt;
 nano .my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter this content (but use your MySQL root password!)&lt;br /&gt;
&lt;br /&gt;
 [client]&lt;br /&gt;
 user=root&lt;br /&gt;
 password=(mysqlpass)&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Create database (press ENTER after each command)&lt;br /&gt;
&lt;br /&gt;
 mysql &amp;lt; /usr/share/zoneminder/db/zm_create.sql &lt;br /&gt;
&lt;br /&gt;
 mysql -e &amp;quot;grant select,insert,update,delete,create on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Remove password file&lt;br /&gt;
&lt;br /&gt;
 rm .my.cnf&lt;br /&gt;
&lt;br /&gt;
Set permissions of /etc/zm/zm.conf to root:www-data 740&lt;br /&gt;
&lt;br /&gt;
 chmod 740 /etc/zm/zm.conf&lt;br /&gt;
 &lt;br /&gt;
 chown root:www-data /etc/zm/zm.conf&lt;br /&gt;
&lt;br /&gt;
Enable Zoneminder service to start at boot&lt;br /&gt;
&lt;br /&gt;
 systemctl enable zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Add www-data to the sudo group (to enable use of local video devices)&lt;br /&gt;
&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
&lt;br /&gt;
Start Zoneminder&lt;br /&gt;
&lt;br /&gt;
 systemctl start zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Check to see that Zoneminder is running&lt;br /&gt;
&lt;br /&gt;
 systemctl status zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Enable CGI and Zoneminder configuration in Apache.&lt;br /&gt;
 &lt;br /&gt;
 a2enmod cgi&lt;br /&gt;
 &lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
*** You may be tempted to try Zoneminder at this point but there is one setting you will need to change from the web gui.  Read on!!!&lt;br /&gt;
&lt;br /&gt;
Optional: Install Cambozola (needed if you use Internet Explorer)&lt;br /&gt;
&lt;br /&gt;
 cd /usr/src &amp;amp;&amp;amp; wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 replace 936 with cambozola version downloaded&lt;br /&gt;
&lt;br /&gt;
 cp cambozola-0.936/dist/cambozola.jar /usr/share/zoneminder&lt;br /&gt;
&lt;br /&gt;
You should now be able to access the web server using http://servername&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Open Zoneminder in web browser&lt;br /&gt;
&lt;br /&gt;
 http://serverip/zm&lt;br /&gt;
&lt;br /&gt;
Click Options&lt;br /&gt;
&lt;br /&gt;
Uncheck: Check with zoneminder.com for updated versions (?) click Save&lt;br /&gt;
&lt;br /&gt;
Click Images tab&lt;br /&gt;
&lt;br /&gt;
Check Is the (optional) cambozola java streaming client installed (?) Click Save&lt;br /&gt;
&lt;br /&gt;
Click Paths&lt;br /&gt;
&lt;br /&gt;
Change PATH_ZMS from /cgi-bin/nph-zms to /zm/cgi-bin/nph-zms       Click Save&lt;br /&gt;
&lt;br /&gt;
Optional: under Paths change PATH_SWAP to /dev/shm (puts this process in RAM drive)   Click Save&lt;br /&gt;
&lt;br /&gt;
Restart Zoneminder&lt;br /&gt;
&lt;br /&gt;
Your Zoneminder install is now ready to add cameras!&lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7148</id>
		<title>Raspbian</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7148"/>
		<updated>2015-11-11T21:48:28Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.&lt;br /&gt;
&lt;br /&gt;
This tutorial is created for a Raspberry PI 1 and 2 running Raspbian Jessie 64bit. &lt;br /&gt;
&lt;br /&gt;
Prereq before starting:&lt;br /&gt;
- SD card created with raspbian Jessie 64bit&lt;br /&gt;
- filesystem is extended.&lt;br /&gt;
- the systems boots in console mode (X is disabled)&lt;br /&gt;
&lt;br /&gt;
Log in as root&lt;br /&gt;
&lt;br /&gt;
 su root  (followed by your root password)&lt;br /&gt;
&lt;br /&gt;
Configure your network Set static IP address&lt;br /&gt;
&lt;br /&gt;
  nano /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
Make changes similar to this:&lt;br /&gt;
&lt;br /&gt;
 auto eth0&lt;br /&gt;
  &lt;br /&gt;
 #allow-hotplug eth0 (make sure this is commented or you will get 2 ip&amp;#039;s)&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
   address 192.168.1.10&lt;br /&gt;
   netmask 255.255.255.0&lt;br /&gt;
   gateway 192.168.1.1&lt;br /&gt;
   dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Update Raspbian Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
Add the Jessie backports&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
add to the top of the list:&lt;br /&gt;
&lt;br /&gt;
 deb http://http.debian.net/debian jessie-backports main&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
add priority to this repository&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/preferences.d/zoneminder&lt;br /&gt;
&lt;br /&gt;
add to the file:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: origin http.debian.net&lt;br /&gt;
 Pin-Priority: 1100&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
you will get a GPG error message like this:&lt;br /&gt;
 W: GPG error: http://http.debian.net jessie-backports InRelease: The following signatures couldn&amp;#039;t be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553    NO_PUBKEY 7638D0442B90D010&lt;br /&gt;
&lt;br /&gt;
Fix this as following:&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553&lt;br /&gt;
 gpg -a --export 8B48AD6246925553 | sudo apt-key add -&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  7638D0442B90D010&lt;br /&gt;
 gpg -a --export 7638D0442B90D010 | sudo apt-key add -&lt;br /&gt;
&lt;br /&gt;
Update Sources again (now should go fine)&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install  PHP, and MySQL server (This installs MySQL server 5.5. If you want to use MySQL 5.6 follow the instructions [[Install MySQL 5.6 on Debian Jessie]] (using mariadb also works fine, as tested on Debian 8.2, replacement package for mysql-server is then mariadb-server)&lt;br /&gt;
&lt;br /&gt;
 apt-get install  php5 mysql-server php-pear php5-mysql&lt;br /&gt;
&lt;br /&gt;
Install Zoneminder&lt;br /&gt;
&lt;br /&gt;
 apt-get install zoneminder&lt;br /&gt;
&lt;br /&gt;
You may need to install &amp;quot;extra&amp;quot; VLC components (I will check this and edit as needed)&lt;br /&gt;
&lt;br /&gt;
 apt-get install libvlc-dev libvlccore-dev vlc&lt;br /&gt;
&lt;br /&gt;
Create Zoneminder database in MySQL (Note: this also creates the default Zoneminder user and permissions in MySQL)&lt;br /&gt;
&lt;br /&gt;
This next step creates a file which contained the MySQL user and password. Otherwise you will have to enter the user and password on the command line which is not secure!&lt;br /&gt;
&lt;br /&gt;
Go to the root directory&lt;br /&gt;
 &lt;br /&gt;
 cd ~&lt;br /&gt;
&lt;br /&gt;
Create a hidden password file&lt;br /&gt;
&lt;br /&gt;
 nano .my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter this content (but use your MySQL root password!)&lt;br /&gt;
&lt;br /&gt;
 [client]&lt;br /&gt;
 user=root&lt;br /&gt;
 password=(mysqlpass)&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Create database (press ENTER after each command)&lt;br /&gt;
&lt;br /&gt;
 mysql &amp;lt; /usr/share/zoneminder/db/zm_create.sql &lt;br /&gt;
&lt;br /&gt;
 mysql -e &amp;quot;grant select,insert,update,delete,create on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Remove password file&lt;br /&gt;
&lt;br /&gt;
 rm .my.cnf&lt;br /&gt;
&lt;br /&gt;
Set permissions of /etc/zm/zm.conf to root:www-data 740&lt;br /&gt;
&lt;br /&gt;
 chmod 740 /etc/zm/zm.conf&lt;br /&gt;
 &lt;br /&gt;
 chown root:www-data /etc/zm/zm.conf&lt;br /&gt;
&lt;br /&gt;
Enable Zoneminder service to start at boot&lt;br /&gt;
&lt;br /&gt;
 systemctl enable zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Add www-data to the sudo group (to enable use of local video devices)&lt;br /&gt;
&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
&lt;br /&gt;
Start Zoneminder&lt;br /&gt;
&lt;br /&gt;
 systemctl start zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Check to see that Zoneminder is running&lt;br /&gt;
&lt;br /&gt;
 systemctl status zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Enable CGI and Zoneminder configuration in Apache.&lt;br /&gt;
 &lt;br /&gt;
 a2enmod cgi&lt;br /&gt;
 &lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
*** You may be tempted to try Zoneminder at this point but there is one setting you will need to change from the web gui.  Read on!!!&lt;br /&gt;
&lt;br /&gt;
Optional: Install Cambozola (needed if you use Internet Explorer)&lt;br /&gt;
&lt;br /&gt;
 cd /usr/src &amp;amp;&amp;amp; wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 replace 936 with cambozola version downloaded&lt;br /&gt;
&lt;br /&gt;
 cp cambozola-0.936/dist/cambozola.jar /usr/share/zoneminder&lt;br /&gt;
&lt;br /&gt;
You should now be able to access the web server using http://servername&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Open Zoneminder in web browser&lt;br /&gt;
&lt;br /&gt;
 http://serverip/zm&lt;br /&gt;
&lt;br /&gt;
Click Options&lt;br /&gt;
&lt;br /&gt;
Uncheck: Check with zoneminder.com for updated versions (?) click Save&lt;br /&gt;
&lt;br /&gt;
Click Images tab&lt;br /&gt;
&lt;br /&gt;
Check Is the (optional) cambozola java streaming client installed (?) Click Save&lt;br /&gt;
&lt;br /&gt;
Click Paths&lt;br /&gt;
&lt;br /&gt;
Change PATH_ZMS from /cgi-bin/nph-zms to /zm/cgi-bin/nph-zms       Click Save&lt;br /&gt;
&lt;br /&gt;
Optional: under Paths change PATH_SWAP to /dev/shm (puts this process in RAM drive)   Click Save&lt;br /&gt;
&lt;br /&gt;
Restart Zoneminder&lt;br /&gt;
&lt;br /&gt;
Your Zoneminder install is now ready to add cameras!&lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7147</id>
		<title>Raspbian</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7147"/>
		<updated>2015-11-11T21:47:48Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.&lt;br /&gt;
&lt;br /&gt;
This tutorial is created for a Raspberry PI 1 and 2 running Raspbian Jessie&lt;br /&gt;
&lt;br /&gt;
Prereq before starting:&lt;br /&gt;
- SD card created with raspbian Jessie 64bit&lt;br /&gt;
- filesystem is extended.&lt;br /&gt;
- the systems boots in console mode (X is disabled)&lt;br /&gt;
&lt;br /&gt;
Log in as root&lt;br /&gt;
&lt;br /&gt;
 su root  (followed by your root password)&lt;br /&gt;
&lt;br /&gt;
Configure your network Set static IP address&lt;br /&gt;
&lt;br /&gt;
  nano /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
Make changes similar to this:&lt;br /&gt;
&lt;br /&gt;
 auto eth0&lt;br /&gt;
  &lt;br /&gt;
 #allow-hotplug eth0 (make sure this is commented or you will get 2 ip&amp;#039;s)&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
   address 192.168.1.10&lt;br /&gt;
   netmask 255.255.255.0&lt;br /&gt;
   gateway 192.168.1.1&lt;br /&gt;
   dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Update Raspbian Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
Add the Jessie backports&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
add to the top of the list:&lt;br /&gt;
&lt;br /&gt;
 deb http://http.debian.net/debian jessie-backports main&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
add priority to this repository&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/preferences.d/zoneminder&lt;br /&gt;
&lt;br /&gt;
add to the file:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: origin http.debian.net&lt;br /&gt;
 Pin-Priority: 1100&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
you will get a GPG error message like this:&lt;br /&gt;
 W: GPG error: http://http.debian.net jessie-backports InRelease: The following signatures couldn&amp;#039;t be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553    NO_PUBKEY 7638D0442B90D010&lt;br /&gt;
&lt;br /&gt;
Fix this as following:&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  8B48AD6246925553&lt;br /&gt;
 gpg -a --export 8B48AD6246925553 | sudo apt-key add -&lt;br /&gt;
 gpg --keyserver pgpkeys.mit.edu --recv-key  7638D0442B90D010&lt;br /&gt;
 gpg -a --export 7638D0442B90D010 | sudo apt-key add -&lt;br /&gt;
&lt;br /&gt;
Update Sources again (now should go fine)&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install  PHP, and MySQL server (This installs MySQL server 5.5. If you want to use MySQL 5.6 follow the instructions [[Install MySQL 5.6 on Debian Jessie]] (using mariadb also works fine, as tested on Debian 8.2, replacement package for mysql-server is then mariadb-server)&lt;br /&gt;
&lt;br /&gt;
 apt-get install  php5 mysql-server php-pear php5-mysql&lt;br /&gt;
&lt;br /&gt;
Install Zoneminder&lt;br /&gt;
&lt;br /&gt;
 apt-get install zoneminder&lt;br /&gt;
&lt;br /&gt;
You may need to install &amp;quot;extra&amp;quot; VLC components (I will check this and edit as needed)&lt;br /&gt;
&lt;br /&gt;
 apt-get install libvlc-dev libvlccore-dev vlc&lt;br /&gt;
&lt;br /&gt;
Create Zoneminder database in MySQL (Note: this also creates the default Zoneminder user and permissions in MySQL)&lt;br /&gt;
&lt;br /&gt;
This next step creates a file which contained the MySQL user and password. Otherwise you will have to enter the user and password on the command line which is not secure!&lt;br /&gt;
&lt;br /&gt;
Go to the root directory&lt;br /&gt;
 &lt;br /&gt;
 cd ~&lt;br /&gt;
&lt;br /&gt;
Create a hidden password file&lt;br /&gt;
&lt;br /&gt;
 nano .my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter this content (but use your MySQL root password!)&lt;br /&gt;
&lt;br /&gt;
 [client]&lt;br /&gt;
 user=root&lt;br /&gt;
 password=(mysqlpass)&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Create database (press ENTER after each command)&lt;br /&gt;
&lt;br /&gt;
 mysql &amp;lt; /usr/share/zoneminder/db/zm_create.sql &lt;br /&gt;
&lt;br /&gt;
 mysql -e &amp;quot;grant select,insert,update,delete,create on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Remove password file&lt;br /&gt;
&lt;br /&gt;
 rm .my.cnf&lt;br /&gt;
&lt;br /&gt;
Set permissions of /etc/zm/zm.conf to root:www-data 740&lt;br /&gt;
&lt;br /&gt;
 chmod 740 /etc/zm/zm.conf&lt;br /&gt;
 &lt;br /&gt;
 chown root:www-data /etc/zm/zm.conf&lt;br /&gt;
&lt;br /&gt;
Enable Zoneminder service to start at boot&lt;br /&gt;
&lt;br /&gt;
 systemctl enable zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Add www-data to the sudo group (to enable use of local video devices)&lt;br /&gt;
&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
&lt;br /&gt;
Start Zoneminder&lt;br /&gt;
&lt;br /&gt;
 systemctl start zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Check to see that Zoneminder is running&lt;br /&gt;
&lt;br /&gt;
 systemctl status zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Enable CGI and Zoneminder configuration in Apache.&lt;br /&gt;
 &lt;br /&gt;
 a2enmod cgi&lt;br /&gt;
 &lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
*** You may be tempted to try Zoneminder at this point but there is one setting you will need to change from the web gui.  Read on!!!&lt;br /&gt;
&lt;br /&gt;
Optional: Install Cambozola (needed if you use Internet Explorer)&lt;br /&gt;
&lt;br /&gt;
 cd /usr/src &amp;amp;&amp;amp; wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 replace 936 with cambozola version downloaded&lt;br /&gt;
&lt;br /&gt;
 cp cambozola-0.936/dist/cambozola.jar /usr/share/zoneminder&lt;br /&gt;
&lt;br /&gt;
You should now be able to access the web server using http://servername&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Open Zoneminder in web browser&lt;br /&gt;
&lt;br /&gt;
 http://serverip/zm&lt;br /&gt;
&lt;br /&gt;
Click Options&lt;br /&gt;
&lt;br /&gt;
Uncheck: Check with zoneminder.com for updated versions (?) click Save&lt;br /&gt;
&lt;br /&gt;
Click Images tab&lt;br /&gt;
&lt;br /&gt;
Check Is the (optional) cambozola java streaming client installed (?) Click Save&lt;br /&gt;
&lt;br /&gt;
Click Paths&lt;br /&gt;
&lt;br /&gt;
Change PATH_ZMS from /cgi-bin/nph-zms to /zm/cgi-bin/nph-zms       Click Save&lt;br /&gt;
&lt;br /&gt;
Optional: under Paths change PATH_SWAP to /dev/shm (puts this process in RAM drive)   Click Save&lt;br /&gt;
&lt;br /&gt;
Restart Zoneminder&lt;br /&gt;
&lt;br /&gt;
Your Zoneminder install is now ready to add cameras!&lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7146</id>
		<title>Raspbian</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7146"/>
		<updated>2015-11-11T21:44:15Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.&lt;br /&gt;
&lt;br /&gt;
This tutorial is created for a Raspberry PI 1 and 2 running Raspbian Jessie&lt;br /&gt;
&lt;br /&gt;
Prereq before starting:&lt;br /&gt;
- SD card created with raspbian Jessie 64bit&lt;br /&gt;
- filesystem is extended.&lt;br /&gt;
- the systems boots in console mode (X is disabled)&lt;br /&gt;
&lt;br /&gt;
Log in as root&lt;br /&gt;
&lt;br /&gt;
 su root  (followed by your root password)&lt;br /&gt;
&lt;br /&gt;
Configure your network Set static IP address&lt;br /&gt;
&lt;br /&gt;
  nano /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
Make changes similar to this:&lt;br /&gt;
&lt;br /&gt;
 auto eth0&lt;br /&gt;
  &lt;br /&gt;
 #allow-hotplug eth0 (make sure this is commented or you will get 2 ip&amp;#039;s)&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
   address 192.168.1.10&lt;br /&gt;
   netmask 255.255.255.0&lt;br /&gt;
   gateway 192.168.1.1&lt;br /&gt;
   dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Update Raspbian Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
Add the Jessie backports&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
add to the top of the list:&lt;br /&gt;
&lt;br /&gt;
 deb http://http.debian.net/debian jessie-backports main&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
add priority to this repository&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/preferences.d/zoneminder&lt;br /&gt;
&lt;br /&gt;
add to the file:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: origin http.debian.net&lt;br /&gt;
 Pin-Priority: 1100&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
you will get a GPG error message like this:&lt;br /&gt;
 W: GPG error: http://http.debian.net jessie-backports InRelease: The following signatures couldn&amp;#039;t be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553    NO_PUBKEY 7638D0442B90D010&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install  PHP, and MySQL server (This installs MySQL server 5.5. If you want to use MySQL 5.6 follow the instructions [[Install MySQL 5.6 on Debian Jessie]] (using mariadb also works fine, as tested on Debian 8.2, replacement package for mysql-server is then mariadb-server)&lt;br /&gt;
&lt;br /&gt;
 apt-get install  php5 mysql-server php-pear php5-mysql&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot server if needed&lt;br /&gt;
&lt;br /&gt;
Install Zoneminder&lt;br /&gt;
&lt;br /&gt;
 apt-get install zoneminder&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You may need to install &amp;quot;extra&amp;quot; VLC components (I will check this and edit as needed)&lt;br /&gt;
&lt;br /&gt;
 apt-get install libvlc-dev libvlccore-dev vlc&lt;br /&gt;
&lt;br /&gt;
Create Zoneminder database in MySQL (Note: this also creates the default Zoneminder user and permissions in MySQL)&lt;br /&gt;
&lt;br /&gt;
This next step creates a file which contained the MySQL user and password. Otherwise you will have to enter the user and password on the command line which is not secure!&lt;br /&gt;
&lt;br /&gt;
Go to the root directory&lt;br /&gt;
 &lt;br /&gt;
 cd ~&lt;br /&gt;
&lt;br /&gt;
Create a hidden password file&lt;br /&gt;
&lt;br /&gt;
 nano .my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter this content (but use your MySQL root password!)&lt;br /&gt;
&lt;br /&gt;
 [client]&lt;br /&gt;
 user=root&lt;br /&gt;
 password=(mysqlpass)&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Create database (press ENTER after each command)&lt;br /&gt;
&lt;br /&gt;
 mysql &amp;lt; /usr/share/zoneminder/db/zm_create.sql &lt;br /&gt;
&lt;br /&gt;
 mysql -e &amp;quot;grant select,insert,update,delete,create on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Remove password file&lt;br /&gt;
&lt;br /&gt;
 rm .my.cnf&lt;br /&gt;
&lt;br /&gt;
Set permissions of /etc/zm/zm.conf to root:www-data 740&lt;br /&gt;
&lt;br /&gt;
 chmod 740 /etc/zm/zm.conf&lt;br /&gt;
 &lt;br /&gt;
 chown root:www-data /etc/zm/zm.conf&lt;br /&gt;
&lt;br /&gt;
Enable Zoneminder service to start at boot&lt;br /&gt;
&lt;br /&gt;
 systemctl enable zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Add www-data to the sudo group (to enable use of local video devices)&lt;br /&gt;
&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
&lt;br /&gt;
Start Zoneminder&lt;br /&gt;
&lt;br /&gt;
 systemctl start zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Check to see that Zoneminder is running&lt;br /&gt;
&lt;br /&gt;
 systemctl status zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Enable CGI and Zoneminder configuration in Apache.&lt;br /&gt;
 &lt;br /&gt;
 a2enmod cgi&lt;br /&gt;
 &lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
*** You may be tempted to try Zoneminder at this point but there is one setting you will need to change from the web gui.  Read on!!!&lt;br /&gt;
&lt;br /&gt;
Optional: Install Cambozola (needed if you use Internet Explorer)&lt;br /&gt;
&lt;br /&gt;
 cd /usr/src &amp;amp;&amp;amp; wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 replace 936 with cambozola version downloaded&lt;br /&gt;
&lt;br /&gt;
 cp cambozola-0.936/dist/cambozola.jar /usr/share/zoneminder&lt;br /&gt;
&lt;br /&gt;
You should now be able to access the web server using http://servername&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Open Zoneminder in web browser&lt;br /&gt;
&lt;br /&gt;
 http://serverip/zm&lt;br /&gt;
&lt;br /&gt;
Click Options&lt;br /&gt;
&lt;br /&gt;
Uncheck: Check with zoneminder.com for updated versions (?) click Save&lt;br /&gt;
&lt;br /&gt;
Click Images tab&lt;br /&gt;
&lt;br /&gt;
Check Is the (optional) cambozola java streaming client installed (?) Click Save&lt;br /&gt;
&lt;br /&gt;
Click Paths&lt;br /&gt;
&lt;br /&gt;
Change PATH_ZMS from /cgi-bin/nph-zms to /zm/cgi-bin/nph-zms       Click Save&lt;br /&gt;
&lt;br /&gt;
Optional: under Paths change PATH_SWAP to /dev/shm (puts this process in RAM drive)   Click Save&lt;br /&gt;
&lt;br /&gt;
Restart Zoneminder&lt;br /&gt;
&lt;br /&gt;
Your Zoneminder install is now ready to add cameras!&lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7145</id>
		<title>Raspbian</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7145"/>
		<updated>2015-11-11T21:41:55Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.&lt;br /&gt;
&lt;br /&gt;
This tutorial is created for a Raspberry PI 1 and 2 running Raspbian Jessie&lt;br /&gt;
&lt;br /&gt;
Prereq before starting:&lt;br /&gt;
- SD card created with raspbian Jessie 64bit&lt;br /&gt;
- filesystem is extended.&lt;br /&gt;
- the systems boots in console mode (X is disabled)&lt;br /&gt;
&lt;br /&gt;
Log in as root&lt;br /&gt;
&lt;br /&gt;
 su root  (followed by your root password)&lt;br /&gt;
&lt;br /&gt;
Configure your network Set static IP address&lt;br /&gt;
&lt;br /&gt;
  nano /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
Make changes similar to this:&lt;br /&gt;
&lt;br /&gt;
 auto eth0&lt;br /&gt;
  &lt;br /&gt;
 #allow-hotplug eth0 (make sure this is commented or you will get 2 ip&amp;#039;s)&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
   address 192.168.1.10&lt;br /&gt;
   netmask 255.255.255.0&lt;br /&gt;
   gateway 192.168.1.1&lt;br /&gt;
   dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Update Raspbian Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
Add the Jessie backports&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
add to the top of the list:&lt;br /&gt;
&lt;br /&gt;
 deb http://http.debian.net/debian jessie-backports main&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
add priority to this repository&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/preferences.d/zoneminder&lt;br /&gt;
&lt;br /&gt;
add to the file:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: origin http.debian.net&lt;br /&gt;
 Pin-Priority: 1100&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
Install  PHP, and MySQL server (This installs MySQL server 5.5. If you want to use MySQL 5.6 follow the instructions [[Install MySQL 5.6 on Debian Jessie]] (using mariadb also works fine, as tested on Debian 8.2, replacement package for mysql-server is then mariadb-server)&lt;br /&gt;
&lt;br /&gt;
 apt-get install  php5 mysql-server php-pear php5-mysql&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot server if needed&lt;br /&gt;
&lt;br /&gt;
Install Zoneminder&lt;br /&gt;
&lt;br /&gt;
 apt-get install zoneminder&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You may need to install &amp;quot;extra&amp;quot; VLC components (I will check this and edit as needed)&lt;br /&gt;
&lt;br /&gt;
 apt-get install libvlc-dev libvlccore-dev vlc&lt;br /&gt;
&lt;br /&gt;
Create Zoneminder database in MySQL (Note: this also creates the default Zoneminder user and permissions in MySQL)&lt;br /&gt;
&lt;br /&gt;
This next step creates a file which contained the MySQL user and password. Otherwise you will have to enter the user and password on the command line which is not secure!&lt;br /&gt;
&lt;br /&gt;
Go to the root directory&lt;br /&gt;
 &lt;br /&gt;
 cd ~&lt;br /&gt;
&lt;br /&gt;
Create a hidden password file&lt;br /&gt;
&lt;br /&gt;
 nano .my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter this content (but use your MySQL root password!)&lt;br /&gt;
&lt;br /&gt;
 [client]&lt;br /&gt;
 user=root&lt;br /&gt;
 password=(mysqlpass)&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Create database (press ENTER after each command)&lt;br /&gt;
&lt;br /&gt;
 mysql &amp;lt; /usr/share/zoneminder/db/zm_create.sql &lt;br /&gt;
&lt;br /&gt;
 mysql -e &amp;quot;grant select,insert,update,delete,create on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Remove password file&lt;br /&gt;
&lt;br /&gt;
 rm .my.cnf&lt;br /&gt;
&lt;br /&gt;
Set permissions of /etc/zm/zm.conf to root:www-data 740&lt;br /&gt;
&lt;br /&gt;
 chmod 740 /etc/zm/zm.conf&lt;br /&gt;
 &lt;br /&gt;
 chown root:www-data /etc/zm/zm.conf&lt;br /&gt;
&lt;br /&gt;
Enable Zoneminder service to start at boot&lt;br /&gt;
&lt;br /&gt;
 systemctl enable zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Add www-data to the sudo group (to enable use of local video devices)&lt;br /&gt;
&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
&lt;br /&gt;
Start Zoneminder&lt;br /&gt;
&lt;br /&gt;
 systemctl start zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Check to see that Zoneminder is running&lt;br /&gt;
&lt;br /&gt;
 systemctl status zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Enable CGI and Zoneminder configuration in Apache.&lt;br /&gt;
 &lt;br /&gt;
 a2enmod cgi&lt;br /&gt;
 &lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
*** You may be tempted to try Zoneminder at this point but there is one setting you will need to change from the web gui.  Read on!!!&lt;br /&gt;
&lt;br /&gt;
Optional: Install Cambozola (needed if you use Internet Explorer)&lt;br /&gt;
&lt;br /&gt;
 cd /usr/src &amp;amp;&amp;amp; wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 replace 936 with cambozola version downloaded&lt;br /&gt;
&lt;br /&gt;
 cp cambozola-0.936/dist/cambozola.jar /usr/share/zoneminder&lt;br /&gt;
&lt;br /&gt;
You should now be able to access the web server using http://servername&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Open Zoneminder in web browser&lt;br /&gt;
&lt;br /&gt;
 http://serverip/zm&lt;br /&gt;
&lt;br /&gt;
Click Options&lt;br /&gt;
&lt;br /&gt;
Uncheck: Check with zoneminder.com for updated versions (?) click Save&lt;br /&gt;
&lt;br /&gt;
Click Images tab&lt;br /&gt;
&lt;br /&gt;
Check Is the (optional) cambozola java streaming client installed (?) Click Save&lt;br /&gt;
&lt;br /&gt;
Click Paths&lt;br /&gt;
&lt;br /&gt;
Change PATH_ZMS from /cgi-bin/nph-zms to /zm/cgi-bin/nph-zms       Click Save&lt;br /&gt;
&lt;br /&gt;
Optional: under Paths change PATH_SWAP to /dev/shm (puts this process in RAM drive)   Click Save&lt;br /&gt;
&lt;br /&gt;
Restart Zoneminder&lt;br /&gt;
&lt;br /&gt;
Your Zoneminder install is now ready to add cameras!&lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7144</id>
		<title>Raspbian</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Raspbian&amp;diff=7144"/>
		<updated>2015-11-11T21:41:07Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: Created page with &amp;quot;A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.  This tutorial is created for a Raspberry PI 1 and 2 running Raspbian Jessie  Prereq before start...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A special Thanks to &amp;quot;Felixr&amp;quot; and &amp;quot;BBungle&amp;quot; from witch I took the initial FAQ.&lt;br /&gt;
&lt;br /&gt;
This tutorial is created for a Raspberry PI 1 and 2 running Raspbian Jessie&lt;br /&gt;
&lt;br /&gt;
Prereq before starting:&lt;br /&gt;
- SD card created with raspbian Jessie 64bit&lt;br /&gt;
- filesystem is extended.&lt;br /&gt;
- the systems boots in console mode (X is disabled)&lt;br /&gt;
&lt;br /&gt;
Log in as root&lt;br /&gt;
&lt;br /&gt;
 su root  (followed by your root password)&lt;br /&gt;
&lt;br /&gt;
Configure your network&lt;br /&gt;
&lt;br /&gt;
 Set static IP address&lt;br /&gt;
&lt;br /&gt;
  nano /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
 Make changes similar to this:&lt;br /&gt;
&lt;br /&gt;
  auto eth0&lt;br /&gt;
  &lt;br /&gt;
  #allow-hotplug eth0 (make sure this is commented or you will get 2 ip&amp;#039;s)&lt;br /&gt;
  iface eth0 inet static&lt;br /&gt;
    address 192.168.1.10&lt;br /&gt;
    netmask 255.255.255.0&lt;br /&gt;
    gateway 192.168.1.1&lt;br /&gt;
    dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Update Raspbian Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date for the raspbian distribution&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
Add the Jessie backports&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
add to the top of the list:&lt;br /&gt;
&lt;br /&gt;
 deb http://http.debian.net/debian jessie-backports main&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
add priority to this repository&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt/preferences.d/zoneminder&lt;br /&gt;
&lt;br /&gt;
add to the file:&lt;br /&gt;
&lt;br /&gt;
 Package: *&lt;br /&gt;
 Pin: origin http.debian.net&lt;br /&gt;
 Pin-Priority: 1100&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
Install  PHP, and MySQL server (This installs MySQL server 5.5. If you want to use MySQL 5.6 follow the instructions [[Install MySQL 5.6 on Debian Jessie]] (using mariadb also works fine, as tested on Debian 8.2, replacement package for mysql-server is then mariadb-server)&lt;br /&gt;
&lt;br /&gt;
 apt-get install  php5 mysql-server php-pear php5-mysql&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Update Sources&lt;br /&gt;
&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Check to be sure everything is up to date&lt;br /&gt;
&lt;br /&gt;
 apt-get upgrade&lt;br /&gt;
 apt-get dist-upgrade&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot server if needed&lt;br /&gt;
&lt;br /&gt;
Install Zoneminder&lt;br /&gt;
&lt;br /&gt;
 apt-get install zoneminder&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You may need to install &amp;quot;extra&amp;quot; VLC components (I will check this and edit as needed)&lt;br /&gt;
&lt;br /&gt;
 apt-get install libvlc-dev libvlccore-dev vlc&lt;br /&gt;
&lt;br /&gt;
Create Zoneminder database in MySQL (Note: this also creates the default Zoneminder user and permissions in MySQL)&lt;br /&gt;
&lt;br /&gt;
This next step creates a file which contained the MySQL user and password. Otherwise you will have to enter the user and password on the command line which is not secure!&lt;br /&gt;
&lt;br /&gt;
Go to the root directory&lt;br /&gt;
 &lt;br /&gt;
 cd ~&lt;br /&gt;
&lt;br /&gt;
Create a hidden password file&lt;br /&gt;
&lt;br /&gt;
 nano .my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter this content (but use your MySQL root password!)&lt;br /&gt;
&lt;br /&gt;
 [client]&lt;br /&gt;
 user=root&lt;br /&gt;
 password=(mysqlpass)&lt;br /&gt;
&lt;br /&gt;
Ctrl+o Enter to save&lt;br /&gt;
&lt;br /&gt;
CTRL+x to exit&lt;br /&gt;
&lt;br /&gt;
Create database (press ENTER after each command)&lt;br /&gt;
&lt;br /&gt;
 mysql &amp;lt; /usr/share/zoneminder/db/zm_create.sql &lt;br /&gt;
&lt;br /&gt;
 mysql -e &amp;quot;grant select,insert,update,delete,create on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Remove password file&lt;br /&gt;
&lt;br /&gt;
 rm .my.cnf&lt;br /&gt;
&lt;br /&gt;
Set permissions of /etc/zm/zm.conf to root:www-data 740&lt;br /&gt;
&lt;br /&gt;
 chmod 740 /etc/zm/zm.conf&lt;br /&gt;
 &lt;br /&gt;
 chown root:www-data /etc/zm/zm.conf&lt;br /&gt;
&lt;br /&gt;
Enable Zoneminder service to start at boot&lt;br /&gt;
&lt;br /&gt;
 systemctl enable zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Add www-data to the sudo group (to enable use of local video devices)&lt;br /&gt;
&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
&lt;br /&gt;
Start Zoneminder&lt;br /&gt;
&lt;br /&gt;
 systemctl start zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Check to see that Zoneminder is running&lt;br /&gt;
&lt;br /&gt;
 systemctl status zoneminder.service&lt;br /&gt;
&lt;br /&gt;
Enable CGI and Zoneminder configuration in Apache.&lt;br /&gt;
 &lt;br /&gt;
 a2enmod cgi&lt;br /&gt;
 &lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
&lt;br /&gt;
Restart Apache&lt;br /&gt;
&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
*** You may be tempted to try Zoneminder at this point but there is one setting you will need to change from the web gui.  Read on!!!&lt;br /&gt;
&lt;br /&gt;
Optional: Install Cambozola (needed if you use Internet Explorer)&lt;br /&gt;
&lt;br /&gt;
 cd /usr/src &amp;amp;&amp;amp; wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;
&lt;br /&gt;
 replace 936 with cambozola version downloaded&lt;br /&gt;
&lt;br /&gt;
 cp cambozola-0.936/dist/cambozola.jar /usr/share/zoneminder&lt;br /&gt;
&lt;br /&gt;
You should now be able to access the web server using http://servername&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Open Zoneminder in web browser&lt;br /&gt;
&lt;br /&gt;
 http://serverip/zm&lt;br /&gt;
&lt;br /&gt;
Click Options&lt;br /&gt;
&lt;br /&gt;
Uncheck: Check with zoneminder.com for updated versions (?) click Save&lt;br /&gt;
&lt;br /&gt;
Click Images tab&lt;br /&gt;
&lt;br /&gt;
Check Is the (optional) cambozola java streaming client installed (?) Click Save&lt;br /&gt;
&lt;br /&gt;
Click Paths&lt;br /&gt;
&lt;br /&gt;
Change PATH_ZMS from /cgi-bin/nph-zms to /zm/cgi-bin/nph-zms       Click Save&lt;br /&gt;
&lt;br /&gt;
Optional: under Paths change PATH_SWAP to /dev/shm (puts this process in RAM drive)   Click Save&lt;br /&gt;
&lt;br /&gt;
Restart Zoneminder&lt;br /&gt;
&lt;br /&gt;
Your Zoneminder install is now ready to add cameras!&lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Helpful_user_contributed_resources&amp;diff=7143</id>
		<title>Helpful user contributed resources</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Helpful_user_contributed_resources&amp;diff=7143"/>
		<updated>2015-11-11T20:55:14Z</updated>

		<summary type="html">&lt;p&gt;Funstuffkg: /* Distribution-specific guides */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Documentation==&lt;br /&gt;
[[Main Documentation]]&lt;br /&gt;
&lt;br /&gt;
[[FAQ]]&lt;br /&gt;
&lt;br /&gt;
[[Supplementary Documentation]]&lt;br /&gt;
&lt;br /&gt;
[[General Notes]]&lt;br /&gt;
&lt;br /&gt;
[[Change History]]&lt;br /&gt;
&lt;br /&gt;
[[Future Development]]&lt;br /&gt;
&lt;br /&gt;
[[Patches]]&lt;br /&gt;
&lt;br /&gt;
[[ZoneMinder 1.24.2 Bugfixes]]&lt;br /&gt;
&lt;br /&gt;
==Supported== &lt;br /&gt;
&lt;br /&gt;
[[Beginner hardware]]&lt;br /&gt;
&lt;br /&gt;
[[Supported distributions]]&lt;br /&gt;
&lt;br /&gt;
[[Hardware Compatibility List ]]&lt;br /&gt;
&lt;br /&gt;
(External: Flash&amp;#039;s IP Camera Database: http://digdilem.org/cameras ]&lt;br /&gt;
&lt;br /&gt;
[[MobileDevices]]&lt;br /&gt;
&lt;br /&gt;
==Distribution-specific guides==&lt;br /&gt;
[[Fedora]] / [[CentOS]]&lt;br /&gt;
&lt;br /&gt;
[[Debian]] / [[Ubuntu]] / [http://www.guiadohardware.net/tutoriais/sistema-vigilancia-zoneminder/ Kurumin (in Portuguese)] [[Raspbian]]&lt;br /&gt;
&lt;br /&gt;
[[Mandrake-Mandriva]] / [[ZMliveCD]]&lt;br /&gt;
&lt;br /&gt;
[[Slackware]]&lt;br /&gt;
&lt;br /&gt;
[[SuSE]]&lt;br /&gt;
&lt;br /&gt;
[[Gentoo]] / [[Sabayon]]&lt;br /&gt;
&lt;br /&gt;
[[Yellow Dog Linux]] / [[Sony PS3]]&lt;br /&gt;
&lt;br /&gt;
[[PCLinuxOS_and_1.23.1|PCLinuxOS]]&lt;br /&gt;
&lt;br /&gt;
[[FreeBSD]]&lt;br /&gt;
&lt;br /&gt;
[[Arch Linux]] / [[ZMLarch]]&lt;br /&gt;
&lt;br /&gt;
[[MS Windows/Virtual Appliance]]&lt;br /&gt;
&lt;br /&gt;
==Third party==&lt;br /&gt;
[[Flash&amp;#039;s IP Camera Database]]&lt;br /&gt;
&lt;br /&gt;
[[Utilities]]&lt;br /&gt;
&lt;br /&gt;
[http://foscam.us/forum/showing-secure-methods-using-php-to-display-your-ip-cameras-t8721.html Embed any IP Camera in website and webpages securely] - Free, many options. Includes many live examples.&lt;br /&gt;
&lt;br /&gt;
[[Standalone Zm Frontends]]&lt;br /&gt;
&lt;br /&gt;
[http://code.google.com/p/zonerama/ Zonerama] - Merges multiple  monitors into one and supports video creation. &lt;br /&gt;
&lt;br /&gt;
[[IpCamMontage]] Ip Camera Montage - remove the user viewing load from the server for IP Camera setups.&lt;br /&gt;
&lt;br /&gt;
[[Plugins]]&lt;br /&gt;
&lt;br /&gt;
[[Infrared Leds, Cameras, DC-DC converters etc]]&lt;br /&gt;
&lt;br /&gt;
[[Consultants]]&lt;br /&gt;
&lt;br /&gt;
[[Video Recorders running ZM]]&lt;br /&gt;
&lt;br /&gt;
==Other documentation==&lt;br /&gt;
[[External resources of information related to ZM]]&lt;br /&gt;
&lt;br /&gt;
[[How To]] &lt;br /&gt;
&lt;br /&gt;
[[Miscellaneous helpful hints]]&lt;br /&gt;
&lt;br /&gt;
[[Hardware specific tips]]&lt;br /&gt;
&lt;br /&gt;
[[Various Learnings from getting Zomeminder 1.28.1 working well on Ubuntu Server 14.04]]&lt;br /&gt;
&lt;br /&gt;
==CCTV Laws==&lt;br /&gt;
[[Area Specific Laws]]&lt;br /&gt;
&lt;br /&gt;
[http://www.library.ca.gov/CRB/97/05/ California Report on Public Video Surveillance]&lt;br /&gt;
&lt;br /&gt;
 &lt;/div&gt;</summary>
		<author><name>Funstuffkg</name></author>
	</entry>
</feed>