Installing ZoneMinder from Kubuntu 8.04 Step by Step
Posted: Fri Aug 01, 2008 10:46 pm
Before installing anything, update motherboard bios if possible
Install KUBUNTU (current version is 8.04)
Reboot Computer
From Desktop click on K>>System>>Console
sudo nano /etc/apt/sources.list
uncomment all 'deb' lines
Ctrl-X to save
sudo apt-get update
sudo apt-get upgrade
sudo apt-get update
sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl
Install Webmin
sudo wget http://prdownloads.sourceforge.net/weba ... 70_all.deb
sudo dpkg -i webmin_1.370_all.deb
(note address to access webmin https://computername:10000/)
Install PHP MYSQL APACHE2
sudo apt-get install apache2 mysql-server php5 php5-mysql libapache2-mod-php5
set password for mysql root user
Check to See if everything installed correctly
CONTROL APACHE
Start --> sudo /etc/init.d/apache2 start
Restart --> sudo /etc/init.d/apache2 restart
Stop --> sudo /etc/init.d/apache2 stop
if you get an error message
apache2: Could not determine the server's domain name, using 127.0.0.1 for ServerName
then
sudo nano /etc/apache2/apache2.conf
add--> ServerName 'localhost' to the file
CONTROL MySQL
Start --> sudo /etc/init.d/mysql start
Restart --> sudo /etc/init.d/mysql restart
Stop --> sudo /etc/init.d/mysql stop
Set root password for MySQL
from terminal prompt: mysql -u root
from mysql prompt:
set password for root@localhost = password('password'');
flush privileges;
quit;
TEST PHP
Create a new file called test.php at this location /var/www/test.php (will need to change permissions to be able to create file)
from Terminal:
cd /var
sudo chmod 777 -R /var/www
sudo nano /var/www/test.php (enter the following into the file)
<? phpinfo(); ?>
Ctrl-X
save Y
open web browser and enter in the address bar
http://localhost/test.php
Install ZoneMinder
sudo apt-get install zoneminder
zoneminder is installed at /usr/share/zoneminder we will need to redirect apache2 to know that zoneminder isn't located at /var/www/zoneminder
https://yourcomputername:10000
enter user and password
WebMin is launched
Click Servers
Apache Webserver
Existing Virtual Hosts tab
Default Server
Aliases & Redirects
Document directory aliases
/zoneminder /usr/share/zoneminder
Click Save
Restart Apache2 from terminal:
sudo /etc/init.d/apache2 restart
Change some permission settings:
sudo chmod 4755 /usr/bin/zmfix
sudo chmod 666 /dev/video*
Install FFMPEG
sudo apt-get install ffmpeg
Install Firefox Browser (do not want ver 3 yet)
K>>Add Remove Programs>>Internet>>FireFox2
Launch FireFox
From the address bar type:
about:config
Find network.http.max-connections double click and change to 100
Find network.http.max-connections-per-server double click and change to 100
Find network.http.max-persistent-connections-per-proxy double click and change to 100
Find network.http.max-persistent-connections-per-server double click and change to 100
Everything should now be installed need to launch ZoneMinder and add monitors
http://localhost/zoneminder
change bandwidth to high
Need to make two changes to the scripts to allow mpeg video exports
Create generate_movie file
cd /usr/share/zoneminder
sudo nano generate_movie
Contents of generate_movie
#!/bin/bash
rm -rf temp/frames 2> /dev/null
mkdir temp/frames
cat $1 | sort | grep -i capture > temp/zmSortFileList.txt
cat temp/zmSortFileList.txt | grep -i capture | while read n
do
i=$(($i+1));
j=$(printf “%07d\nâ€
Install KUBUNTU (current version is 8.04)
Reboot Computer
From Desktop click on K>>System>>Console
sudo nano /etc/apt/sources.list
uncomment all 'deb' lines
Ctrl-X to save
sudo apt-get update
sudo apt-get upgrade
sudo apt-get update
sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl
Install Webmin
sudo wget http://prdownloads.sourceforge.net/weba ... 70_all.deb
sudo dpkg -i webmin_1.370_all.deb
(note address to access webmin https://computername:10000/)
Install PHP MYSQL APACHE2
sudo apt-get install apache2 mysql-server php5 php5-mysql libapache2-mod-php5
set password for mysql root user
Check to See if everything installed correctly
CONTROL APACHE
Start --> sudo /etc/init.d/apache2 start
Restart --> sudo /etc/init.d/apache2 restart
Stop --> sudo /etc/init.d/apache2 stop
if you get an error message
apache2: Could not determine the server's domain name, using 127.0.0.1 for ServerName
then
sudo nano /etc/apache2/apache2.conf
add--> ServerName 'localhost' to the file
CONTROL MySQL
Start --> sudo /etc/init.d/mysql start
Restart --> sudo /etc/init.d/mysql restart
Stop --> sudo /etc/init.d/mysql stop
Set root password for MySQL
from terminal prompt: mysql -u root
from mysql prompt:
set password for root@localhost = password('password'');
flush privileges;
quit;
TEST PHP
Create a new file called test.php at this location /var/www/test.php (will need to change permissions to be able to create file)
from Terminal:
cd /var
sudo chmod 777 -R /var/www
sudo nano /var/www/test.php (enter the following into the file)
<? phpinfo(); ?>
Ctrl-X
save Y
open web browser and enter in the address bar
http://localhost/test.php
Install ZoneMinder
sudo apt-get install zoneminder
zoneminder is installed at /usr/share/zoneminder we will need to redirect apache2 to know that zoneminder isn't located at /var/www/zoneminder
https://yourcomputername:10000
enter user and password
WebMin is launched
Click Servers
Apache Webserver
Existing Virtual Hosts tab
Default Server
Aliases & Redirects
Document directory aliases
/zoneminder /usr/share/zoneminder
Click Save
Restart Apache2 from terminal:
sudo /etc/init.d/apache2 restart
Change some permission settings:
sudo chmod 4755 /usr/bin/zmfix
sudo chmod 666 /dev/video*
Install FFMPEG
sudo apt-get install ffmpeg
Install Firefox Browser (do not want ver 3 yet)
K>>Add Remove Programs>>Internet>>FireFox2
Launch FireFox
From the address bar type:
about:config
Find network.http.max-connections double click and change to 100
Find network.http.max-connections-per-server double click and change to 100
Find network.http.max-persistent-connections-per-proxy double click and change to 100
Find network.http.max-persistent-connections-per-server double click and change to 100
Everything should now be installed need to launch ZoneMinder and add monitors
http://localhost/zoneminder
change bandwidth to high
Need to make two changes to the scripts to allow mpeg video exports
Create generate_movie file
cd /usr/share/zoneminder
sudo nano generate_movie
Contents of generate_movie
#!/bin/bash
rm -rf temp/frames 2> /dev/null
mkdir temp/frames
cat $1 | sort | grep -i capture > temp/zmSortFileList.txt
cat temp/zmSortFileList.txt | grep -i capture | while read n
do
i=$(($i+1));
j=$(printf “%07d\nâ€