<?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=Jpbrain</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=Jpbrain"/>
	<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/Special:Contributions/Jpbrain"/>
	<updated>2026-05-03T17:40:11Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Ubuntu_Server_18.04_64-bit_with_Zoneminder_1.32.x_the_easy_way&amp;diff=15382</id>
		<title>Ubuntu Server 18.04 64-bit with Zoneminder 1.32.x the easy way</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Ubuntu_Server_18.04_64-bit_with_Zoneminder_1.32.x_the_easy_way&amp;diff=15382"/>
		<updated>2018-12-14T01:05:55Z</updated>

		<summary type="html">&lt;p&gt;Jpbrain: /* Install Zoneminder on Ubuntu 18.04 with shell script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Things to check before installing Zoneminder on Bionic!===&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;We recommend you read the release notes to see what has changed in this version. The release notes can be found here: https://github.com/ZoneMinder/zoneminder/releases&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;There have been some reports of the install failing. We feel this is due to missing repositories in the sources.list. You can check this by running&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt.sources.list&lt;br /&gt;
&lt;br /&gt;
Look for the universe repositorys of which there should be three, bionic universe, bionic-updates universe and bionic-security universe&lt;br /&gt;
&lt;br /&gt;
See: https://help.ubuntu.com/community/Repositories/CommandLine&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Install Zoneminder on Ubuntu 18.04 with shell script===&lt;br /&gt;
&lt;br /&gt;
This will install Zoneminder by using a shell script with one basic command (how easy is that!).&lt;br /&gt;
&lt;br /&gt;
You will need a Ubuntu 18.04 install with LAMP (Apache, MySQL and PHP) installed desktop or server. As an alternate you may use Mariadb in lieu of MySQL&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===TIP===&lt;br /&gt;
&lt;br /&gt;
Do not install &amp;quot;password validation module&amp;quot; on MySQL it will not allow to create users and installation will not work unless you set it to &amp;quot;low&amp;quot; and less than 6 characters long password validation&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Shell script file contents:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;This script installs Zoneminder 1.32.x on Ubuntu 18.04 AMD64 with LAMP (MySQL) installed...&lt;br /&gt;
 Press Enter to continue or Ctrl + c to quit&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;You must be logged in as root using sudo su ...&lt;br /&gt;
 Press Enter to continue or Ctrl + c to quit&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;Next we will add the PPA repository, install and configure the system to run Zoneminder. &lt;br /&gt;
 Press enter to continue&amp;quot; nothing&lt;br /&gt;
 apt install -y software-properties-common&lt;br /&gt;
 clear&lt;br /&gt;
 add-apt-repository ppa:iconnor/zoneminder-1.32&lt;br /&gt;
 apt update&lt;br /&gt;
 clear&lt;br /&gt;
 awk &amp;#039;$0=&amp;quot;date.timezone = &amp;quot;$0&amp;#039; /etc/timezone &amp;gt;&amp;gt; /etc/php/7.2/apache2/php.ini&lt;br /&gt;
 clear&lt;br /&gt;
 apt install -y zoneminder&lt;br /&gt;
 systemctl enable zoneminder&lt;br /&gt;
 service zoneminder start&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
 a2enmod rewrite&lt;br /&gt;
 chown -R www-data:www-data /usr/share/zoneminder/&lt;br /&gt;
 service apache2 reload&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;Install complete.Press enter to continue&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
&lt;br /&gt;
Copy the contents of the script, open a terminal and run:&lt;br /&gt;
&lt;br /&gt;
 nano zm-install&lt;br /&gt;
&lt;br /&gt;
Paste the contents of the script into Nano&lt;br /&gt;
&lt;br /&gt;
Then:&lt;br /&gt;
&lt;br /&gt;
 Ctrl + o&lt;br /&gt;
 Ctrl + x&lt;br /&gt;
&lt;br /&gt;
Next run:&lt;br /&gt;
&lt;br /&gt;
 chmod 755 zm-install&lt;br /&gt;
&lt;br /&gt;
Start the script by entering:&lt;br /&gt;
&lt;br /&gt;
 ./zm-install&lt;br /&gt;
&lt;br /&gt;
Follow the prompts. Things are pretty simple. The timezone will be detected from the OS and added to the php.ini.&lt;br /&gt;
&lt;br /&gt;
Good Luck! &lt;br /&gt;
&lt;br /&gt;
While this script worked for me I can&amp;#039;t be responsible if you loose data when you run this. It is intended for a new install not an upgrade.&lt;/div&gt;</summary>
		<author><name>Jpbrain</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Ubuntu_Server_18.04_64-bit_with_Zoneminder_1.32.x_the_easy_way&amp;diff=15381</id>
		<title>Ubuntu Server 18.04 64-bit with Zoneminder 1.32.x the easy way</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Ubuntu_Server_18.04_64-bit_with_Zoneminder_1.32.x_the_easy_way&amp;diff=15381"/>
		<updated>2018-12-14T01:05:39Z</updated>

		<summary type="html">&lt;p&gt;Jpbrain: /* Install Zoneminder on Ubuntu 18.04 with shell script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Things to check before installing Zoneminder on Bionic!===&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;We recommend you read the release notes to see what has changed in this version. The release notes can be found here: https://github.com/ZoneMinder/zoneminder/releases&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;There have been some reports of the install failing. We feel this is due to missing repositories in the sources.list. You can check this by running&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt.sources.list&lt;br /&gt;
&lt;br /&gt;
Look for the universe repositorys of which there should be three, bionic universe, bionic-updates universe and bionic-security universe&lt;br /&gt;
&lt;br /&gt;
See: https://help.ubuntu.com/community/Repositories/CommandLine&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Install Zoneminder on Ubuntu 18.04 with shell script===&lt;br /&gt;
&lt;br /&gt;
This will install Zoneminder by using a shell script with one basic command (how easy is that!).&lt;br /&gt;
&lt;br /&gt;
You will need a Ubuntu 18.04 install with LAMP (Apache, MySQL and PHP) installed desktop or server. As an alternate you may use Mariadb in lieu of MySQL&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===TIP&lt;br /&gt;
&lt;br /&gt;
Do not install &amp;quot;password validation module&amp;quot; on MySQL it will not allow to create users and installation will not work unless you set it to &amp;quot;low&amp;quot; and less than 6 characters long password validation&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Shell script file contents:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;This script installs Zoneminder 1.32.x on Ubuntu 18.04 AMD64 with LAMP (MySQL) installed...&lt;br /&gt;
 Press Enter to continue or Ctrl + c to quit&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;You must be logged in as root using sudo su ...&lt;br /&gt;
 Press Enter to continue or Ctrl + c to quit&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;Next we will add the PPA repository, install and configure the system to run Zoneminder. &lt;br /&gt;
 Press enter to continue&amp;quot; nothing&lt;br /&gt;
 apt install -y software-properties-common&lt;br /&gt;
 clear&lt;br /&gt;
 add-apt-repository ppa:iconnor/zoneminder-1.32&lt;br /&gt;
 apt update&lt;br /&gt;
 clear&lt;br /&gt;
 awk &amp;#039;$0=&amp;quot;date.timezone = &amp;quot;$0&amp;#039; /etc/timezone &amp;gt;&amp;gt; /etc/php/7.2/apache2/php.ini&lt;br /&gt;
 clear&lt;br /&gt;
 apt install -y zoneminder&lt;br /&gt;
 systemctl enable zoneminder&lt;br /&gt;
 service zoneminder start&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
 a2enmod rewrite&lt;br /&gt;
 chown -R www-data:www-data /usr/share/zoneminder/&lt;br /&gt;
 service apache2 reload&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;Install complete.Press enter to continue&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
&lt;br /&gt;
Copy the contents of the script, open a terminal and run:&lt;br /&gt;
&lt;br /&gt;
 nano zm-install&lt;br /&gt;
&lt;br /&gt;
Paste the contents of the script into Nano&lt;br /&gt;
&lt;br /&gt;
Then:&lt;br /&gt;
&lt;br /&gt;
 Ctrl + o&lt;br /&gt;
 Ctrl + x&lt;br /&gt;
&lt;br /&gt;
Next run:&lt;br /&gt;
&lt;br /&gt;
 chmod 755 zm-install&lt;br /&gt;
&lt;br /&gt;
Start the script by entering:&lt;br /&gt;
&lt;br /&gt;
 ./zm-install&lt;br /&gt;
&lt;br /&gt;
Follow the prompts. Things are pretty simple. The timezone will be detected from the OS and added to the php.ini.&lt;br /&gt;
&lt;br /&gt;
Good Luck! &lt;br /&gt;
&lt;br /&gt;
While this script worked for me I can&amp;#039;t be responsible if you loose data when you run this. It is intended for a new install not an upgrade.&lt;/div&gt;</summary>
		<author><name>Jpbrain</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Ubuntu_Server_18.04_64-bit_with_Zoneminder_1.32.x_the_easy_way&amp;diff=15380</id>
		<title>Ubuntu Server 18.04 64-bit with Zoneminder 1.32.x the easy way</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Ubuntu_Server_18.04_64-bit_with_Zoneminder_1.32.x_the_easy_way&amp;diff=15380"/>
		<updated>2018-12-14T01:05:15Z</updated>

		<summary type="html">&lt;p&gt;Jpbrain: /* = */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Things to check before installing Zoneminder on Bionic!===&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;We recommend you read the release notes to see what has changed in this version. The release notes can be found here: https://github.com/ZoneMinder/zoneminder/releases&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;There have been some reports of the install failing. We feel this is due to missing repositories in the sources.list. You can check this by running&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt.sources.list&lt;br /&gt;
&lt;br /&gt;
Look for the universe repositorys of which there should be three, bionic universe, bionic-updates universe and bionic-security universe&lt;br /&gt;
&lt;br /&gt;
See: https://help.ubuntu.com/community/Repositories/CommandLine&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Install Zoneminder on Ubuntu 18.04 with shell script===&lt;br /&gt;
&lt;br /&gt;
This will install Zoneminder by using a shell script with one basic command (how easy is that!).&lt;br /&gt;
&lt;br /&gt;
You will need a Ubuntu 18.04 install with LAMP (Apache, MySQL and PHP) installed desktop or server. As an alternate you may use Mariadb in lieu of MySQL&lt;br /&gt;
&lt;br /&gt;
= TIP&lt;br /&gt;
&lt;br /&gt;
Do not install &amp;quot;password validation module&amp;quot; on MySQL it will not allow to create users and installation will not work unless you set it to &amp;quot;low&amp;quot; and less than 6 characters long password validation&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Shell script file contents:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;This script installs Zoneminder 1.32.x on Ubuntu 18.04 AMD64 with LAMP (MySQL) installed...&lt;br /&gt;
 Press Enter to continue or Ctrl + c to quit&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;You must be logged in as root using sudo su ...&lt;br /&gt;
 Press Enter to continue or Ctrl + c to quit&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;Next we will add the PPA repository, install and configure the system to run Zoneminder. &lt;br /&gt;
 Press enter to continue&amp;quot; nothing&lt;br /&gt;
 apt install -y software-properties-common&lt;br /&gt;
 clear&lt;br /&gt;
 add-apt-repository ppa:iconnor/zoneminder-1.32&lt;br /&gt;
 apt update&lt;br /&gt;
 clear&lt;br /&gt;
 awk &amp;#039;$0=&amp;quot;date.timezone = &amp;quot;$0&amp;#039; /etc/timezone &amp;gt;&amp;gt; /etc/php/7.2/apache2/php.ini&lt;br /&gt;
 clear&lt;br /&gt;
 apt install -y zoneminder&lt;br /&gt;
 systemctl enable zoneminder&lt;br /&gt;
 service zoneminder start&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
 a2enmod rewrite&lt;br /&gt;
 chown -R www-data:www-data /usr/share/zoneminder/&lt;br /&gt;
 service apache2 reload&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;Install complete.Press enter to continue&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
&lt;br /&gt;
Copy the contents of the script, open a terminal and run:&lt;br /&gt;
&lt;br /&gt;
 nano zm-install&lt;br /&gt;
&lt;br /&gt;
Paste the contents of the script into Nano&lt;br /&gt;
&lt;br /&gt;
Then:&lt;br /&gt;
&lt;br /&gt;
 Ctrl + o&lt;br /&gt;
 Ctrl + x&lt;br /&gt;
&lt;br /&gt;
Next run:&lt;br /&gt;
&lt;br /&gt;
 chmod 755 zm-install&lt;br /&gt;
&lt;br /&gt;
Start the script by entering:&lt;br /&gt;
&lt;br /&gt;
 ./zm-install&lt;br /&gt;
&lt;br /&gt;
Follow the prompts. Things are pretty simple. The timezone will be detected from the OS and added to the php.ini.&lt;br /&gt;
&lt;br /&gt;
Good Luck! &lt;br /&gt;
&lt;br /&gt;
While this script worked for me I can&amp;#039;t be responsible if you loose data when you run this. It is intended for a new install not an upgrade.&lt;/div&gt;</summary>
		<author><name>Jpbrain</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Ubuntu_Server_18.04_64-bit_with_Zoneminder_1.32.x_the_easy_way&amp;diff=15379</id>
		<title>Ubuntu Server 18.04 64-bit with Zoneminder 1.32.x the easy way</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Ubuntu_Server_18.04_64-bit_with_Zoneminder_1.32.x_the_easy_way&amp;diff=15379"/>
		<updated>2018-12-14T01:04:59Z</updated>

		<summary type="html">&lt;p&gt;Jpbrain: /* = */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Things to check before installing Zoneminder on Bionic!===&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;We recommend you read the release notes to see what has changed in this version. The release notes can be found here: https://github.com/ZoneMinder/zoneminder/releases&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;There have been some reports of the install failing. We feel this is due to missing repositories in the sources.list. You can check this by running&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt.sources.list&lt;br /&gt;
&lt;br /&gt;
Look for the universe repositorys of which there should be three, bionic universe, bionic-updates universe and bionic-security universe&lt;br /&gt;
&lt;br /&gt;
See: https://help.ubuntu.com/community/Repositories/CommandLine&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Install Zoneminder on Ubuntu 18.04 with shell script===&lt;br /&gt;
&lt;br /&gt;
This will install Zoneminder by using a shell script with one basic command (how easy is that!).&lt;br /&gt;
&lt;br /&gt;
You will need a Ubuntu 18.04 install with LAMP (Apache, MySQL and PHP) installed desktop or server. As an alternate you may use Mariadb in lieu of MySQL&lt;br /&gt;
&lt;br /&gt;
= TIP&lt;br /&gt;
&lt;br /&gt;
Do not install &amp;quot;password validation module&amp;quot; on MySQL it will not allow to create users and installation will not work unless you set it to &amp;quot;low&amp;quot; and less than 6 characters long password validation&lt;br /&gt;
&lt;br /&gt;
===&lt;br /&gt;
&lt;br /&gt;
Shell script file contents:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;This script installs Zoneminder 1.32.x on Ubuntu 18.04 AMD64 with LAMP (MySQL) installed...&lt;br /&gt;
 Press Enter to continue or Ctrl + c to quit&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;You must be logged in as root using sudo su ...&lt;br /&gt;
 Press Enter to continue or Ctrl + c to quit&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;Next we will add the PPA repository, install and configure the system to run Zoneminder. &lt;br /&gt;
 Press enter to continue&amp;quot; nothing&lt;br /&gt;
 apt install -y software-properties-common&lt;br /&gt;
 clear&lt;br /&gt;
 add-apt-repository ppa:iconnor/zoneminder-1.32&lt;br /&gt;
 apt update&lt;br /&gt;
 clear&lt;br /&gt;
 awk &amp;#039;$0=&amp;quot;date.timezone = &amp;quot;$0&amp;#039; /etc/timezone &amp;gt;&amp;gt; /etc/php/7.2/apache2/php.ini&lt;br /&gt;
 clear&lt;br /&gt;
 apt install -y zoneminder&lt;br /&gt;
 systemctl enable zoneminder&lt;br /&gt;
 service zoneminder start&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
 a2enmod rewrite&lt;br /&gt;
 chown -R www-data:www-data /usr/share/zoneminder/&lt;br /&gt;
 service apache2 reload&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;Install complete.Press enter to continue&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
&lt;br /&gt;
Copy the contents of the script, open a terminal and run:&lt;br /&gt;
&lt;br /&gt;
 nano zm-install&lt;br /&gt;
&lt;br /&gt;
Paste the contents of the script into Nano&lt;br /&gt;
&lt;br /&gt;
Then:&lt;br /&gt;
&lt;br /&gt;
 Ctrl + o&lt;br /&gt;
 Ctrl + x&lt;br /&gt;
&lt;br /&gt;
Next run:&lt;br /&gt;
&lt;br /&gt;
 chmod 755 zm-install&lt;br /&gt;
&lt;br /&gt;
Start the script by entering:&lt;br /&gt;
&lt;br /&gt;
 ./zm-install&lt;br /&gt;
&lt;br /&gt;
Follow the prompts. Things are pretty simple. The timezone will be detected from the OS and added to the php.ini.&lt;br /&gt;
&lt;br /&gt;
Good Luck! &lt;br /&gt;
&lt;br /&gt;
While this script worked for me I can&amp;#039;t be responsible if you loose data when you run this. It is intended for a new install not an upgrade.&lt;/div&gt;</summary>
		<author><name>Jpbrain</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Ubuntu_Server_18.04_64-bit_with_Zoneminder_1.32.x_the_easy_way&amp;diff=15378</id>
		<title>Ubuntu Server 18.04 64-bit with Zoneminder 1.32.x the easy way</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Ubuntu_Server_18.04_64-bit_with_Zoneminder_1.32.x_the_easy_way&amp;diff=15378"/>
		<updated>2018-12-14T01:03:53Z</updated>

		<summary type="html">&lt;p&gt;Jpbrain: /* Install Zoneminder on Ubuntu 18.04 with shell script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Things to check before installing Zoneminder on Bionic!===&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;We recommend you read the release notes to see what has changed in this version. The release notes can be found here: https://github.com/ZoneMinder/zoneminder/releases&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;There have been some reports of the install failing. We feel this is due to missing repositories in the sources.list. You can check this by running&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt.sources.list&lt;br /&gt;
&lt;br /&gt;
Look for the universe repositorys of which there should be three, bionic universe, bionic-updates universe and bionic-security universe&lt;br /&gt;
&lt;br /&gt;
See: https://help.ubuntu.com/community/Repositories/CommandLine&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Install Zoneminder on Ubuntu 18.04 with shell script===&lt;br /&gt;
&lt;br /&gt;
This will install Zoneminder by using a shell script with one basic command (how easy is that!).&lt;br /&gt;
&lt;br /&gt;
You will need a Ubuntu 18.04 install with LAMP (Apache, MySQL and PHP) installed desktop or server. As an alternate you may use Mariadb in lieu of MySQL&lt;br /&gt;
&lt;br /&gt;
===&lt;br /&gt;
&lt;br /&gt;
Do not install &amp;quot;password validation module&amp;quot; on MySQL it will not allow to create users and installation will not work unless you set it to &amp;quot;low&amp;quot; and less than 6 characters long password validation&lt;br /&gt;
&lt;br /&gt;
===&lt;br /&gt;
&lt;br /&gt;
Shell script file contents:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;This script installs Zoneminder 1.32.x on Ubuntu 18.04 AMD64 with LAMP (MySQL) installed...&lt;br /&gt;
 Press Enter to continue or Ctrl + c to quit&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;You must be logged in as root using sudo su ...&lt;br /&gt;
 Press Enter to continue or Ctrl + c to quit&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;Next we will add the PPA repository, install and configure the system to run Zoneminder. &lt;br /&gt;
 Press enter to continue&amp;quot; nothing&lt;br /&gt;
 apt install -y software-properties-common&lt;br /&gt;
 clear&lt;br /&gt;
 add-apt-repository ppa:iconnor/zoneminder-1.32&lt;br /&gt;
 apt update&lt;br /&gt;
 clear&lt;br /&gt;
 awk &amp;#039;$0=&amp;quot;date.timezone = &amp;quot;$0&amp;#039; /etc/timezone &amp;gt;&amp;gt; /etc/php/7.2/apache2/php.ini&lt;br /&gt;
 clear&lt;br /&gt;
 apt install -y zoneminder&lt;br /&gt;
 systemctl enable zoneminder&lt;br /&gt;
 service zoneminder start&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
 a2enmod rewrite&lt;br /&gt;
 chown -R www-data:www-data /usr/share/zoneminder/&lt;br /&gt;
 service apache2 reload&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;Install complete.Press enter to continue&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
&lt;br /&gt;
Copy the contents of the script, open a terminal and run:&lt;br /&gt;
&lt;br /&gt;
 nano zm-install&lt;br /&gt;
&lt;br /&gt;
Paste the contents of the script into Nano&lt;br /&gt;
&lt;br /&gt;
Then:&lt;br /&gt;
&lt;br /&gt;
 Ctrl + o&lt;br /&gt;
 Ctrl + x&lt;br /&gt;
&lt;br /&gt;
Next run:&lt;br /&gt;
&lt;br /&gt;
 chmod 755 zm-install&lt;br /&gt;
&lt;br /&gt;
Start the script by entering:&lt;br /&gt;
&lt;br /&gt;
 ./zm-install&lt;br /&gt;
&lt;br /&gt;
Follow the prompts. Things are pretty simple. The timezone will be detected from the OS and added to the php.ini.&lt;br /&gt;
&lt;br /&gt;
Good Luck! &lt;br /&gt;
&lt;br /&gt;
While this script worked for me I can&amp;#039;t be responsible if you loose data when you run this. It is intended for a new install not an upgrade.&lt;/div&gt;</summary>
		<author><name>Jpbrain</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Ubuntu_Server_18.04_64-bit_with_Zoneminder_1.32.x_the_easy_way&amp;diff=15377</id>
		<title>Ubuntu Server 18.04 64-bit with Zoneminder 1.32.x the easy way</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Ubuntu_Server_18.04_64-bit_with_Zoneminder_1.32.x_the_easy_way&amp;diff=15377"/>
		<updated>2018-12-14T01:03:25Z</updated>

		<summary type="html">&lt;p&gt;Jpbrain: /* Install Zoneminder on Ubuntu 18.04 with shell script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Things to check before installing Zoneminder on Bionic!===&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;We recommend you read the release notes to see what has changed in this version. The release notes can be found here: https://github.com/ZoneMinder/zoneminder/releases&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;There have been some reports of the install failing. We feel this is due to missing repositories in the sources.list. You can check this by running&lt;br /&gt;
&lt;br /&gt;
 nano /etc/apt.sources.list&lt;br /&gt;
&lt;br /&gt;
Look for the universe repositorys of which there should be three, bionic universe, bionic-updates universe and bionic-security universe&lt;br /&gt;
&lt;br /&gt;
See: https://help.ubuntu.com/community/Repositories/CommandLine&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Install Zoneminder on Ubuntu 18.04 with shell script===&lt;br /&gt;
&lt;br /&gt;
This will install Zoneminder by using a shell script with one basic command (how easy is that!).&lt;br /&gt;
&lt;br /&gt;
You will need a Ubuntu 18.04 install with LAMP (Apache, MySQL and PHP) installed desktop or server. As an alternate you may use Mariadb in lieu of MySQL&lt;br /&gt;
&lt;br /&gt;
**********************&lt;br /&gt;
&lt;br /&gt;
Do not install &amp;quot;password validation module&amp;quot; on MySQL it will not allow to create users and installation will not work unless you set it to &amp;quot;low&amp;quot; and less than 6 characters long password validation&lt;br /&gt;
&lt;br /&gt;
**********************&lt;br /&gt;
&lt;br /&gt;
Shell script file contents:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;This script installs Zoneminder 1.32.x on Ubuntu 18.04 AMD64 with LAMP (MySQL) installed...&lt;br /&gt;
 Press Enter to continue or Ctrl + c to quit&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;You must be logged in as root using sudo su ...&lt;br /&gt;
 Press Enter to continue or Ctrl + c to quit&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;Next we will add the PPA repository, install and configure the system to run Zoneminder. &lt;br /&gt;
 Press enter to continue&amp;quot; nothing&lt;br /&gt;
 apt install -y software-properties-common&lt;br /&gt;
 clear&lt;br /&gt;
 add-apt-repository ppa:iconnor/zoneminder-1.32&lt;br /&gt;
 apt update&lt;br /&gt;
 clear&lt;br /&gt;
 awk &amp;#039;$0=&amp;quot;date.timezone = &amp;quot;$0&amp;#039; /etc/timezone &amp;gt;&amp;gt; /etc/php/7.2/apache2/php.ini&lt;br /&gt;
 clear&lt;br /&gt;
 apt install -y zoneminder&lt;br /&gt;
 systemctl enable zoneminder&lt;br /&gt;
 service zoneminder start&lt;br /&gt;
 adduser www-data video&lt;br /&gt;
 a2enconf zoneminder&lt;br /&gt;
 a2enmod rewrite&lt;br /&gt;
 chown -R www-data:www-data /usr/share/zoneminder/&lt;br /&gt;
 service apache2 reload&lt;br /&gt;
 clear&lt;br /&gt;
 read -p &amp;quot;Install complete.Press enter to continue&amp;quot; nothing&lt;br /&gt;
 clear&lt;br /&gt;
&lt;br /&gt;
Copy the contents of the script, open a terminal and run:&lt;br /&gt;
&lt;br /&gt;
 nano zm-install&lt;br /&gt;
&lt;br /&gt;
Paste the contents of the script into Nano&lt;br /&gt;
&lt;br /&gt;
Then:&lt;br /&gt;
&lt;br /&gt;
 Ctrl + o&lt;br /&gt;
 Ctrl + x&lt;br /&gt;
&lt;br /&gt;
Next run:&lt;br /&gt;
&lt;br /&gt;
 chmod 755 zm-install&lt;br /&gt;
&lt;br /&gt;
Start the script by entering:&lt;br /&gt;
&lt;br /&gt;
 ./zm-install&lt;br /&gt;
&lt;br /&gt;
Follow the prompts. Things are pretty simple. The timezone will be detected from the OS and added to the php.ini.&lt;br /&gt;
&lt;br /&gt;
Good Luck! &lt;br /&gt;
&lt;br /&gt;
While this script worked for me I can&amp;#039;t be responsible if you loose data when you run this. It is intended for a new install not an upgrade.&lt;/div&gt;</summary>
		<author><name>Jpbrain</name></author>
	</entry>
</feed>