Hi together,
here's a HowTo for installing ZM 1.22.3 on Sabayon Linux 3.2.
This is by the way the fastest methode to get a working ZM.
I've needed less then 1,5 hours for installing Sabayon and ZoneMinder.
What is Sabayone Linux?
Home of Sabayon LinuxSabayonLinux is based on the source-based distro named Gentoo - http://gentoo.org. Gentoo is a highly customizable distro which we have used as our base and using their excellent development techniques, we have created a pre-configured distribution with the tenets of Performance, Versatility, and Stability. If you have any more question about what Gentoo is and its philosophy, please visit their website.
read more...
http://www.sabayonlinux.org/
Preparation
Download the Sabayon Linux miniEdition, burn it, and install it.
Installing ZM
Open a Terminal and do the following Steps:
Code: Select all
# emerge --sync
# emerge portage
# emerge zoneminder
1.] Edit the /etc/mysql/my.cnf
Search for:
Code: Select all
bind-address = 127.0.0.1
Code: Select all
# bind-address = 127.0.0.1
2.] Type this:
Code: Select all
# /etc/init.d/mysql start
# mysql_install_db
# cd /usr
# /usr/bin/mysqld_safe &
Create the MySQL Database for ZoneMinder
Type this:
Code: Select all
# cd /usr/share/zoneminder
# mysql mysql < db/zm_create.sql
# mysql mysql
mysql> GRANT ALL PRIVILEGES ON zm.* TO 'zmuser'@localhost identified by 'zmpass';
mysql> GRANT ALL PRIVILEGES ON zm.* TO 'zmuser'@'%' identified by 'zmpass';
mysql> quit
# mysqladmin reload
Edit the /etc/zm.conf
Change
Code: Select all
# ZM_PATH_BUILD=/var/tmp/portage/www-misc/zoneminder-1.22.3/work/ZoneMinder-1.22.3
Code: Select all
ZM_PATH_BUILD=/usr/share/zoneminder
Code: Select all
ZM_PATH_WEB=/usr/share/webapps/zoneminder/1.22.3/htdocs
Code: Select all
ZM_PATH_WEB=/var/www/localhost/htdocs/zoneminder
Code: Select all
ZM_PATH_CGI=/usr/share/webapps/zoneminder/1.22.3/hostroot/cgi-bin
Code: Select all
ZM_PATH_CGI=/var/www/localhost/cgi-bin
1.] Starting Apache Webserver
Code: Select all
/etc/init.d/apache2 start
Code: Select all
rc-update -a apache2 default
Code: Select all
rc-update -a mysql default
Code: Select all
rc-update -s
Code: Select all
rc-update -a zoneminder default
Code: Select all
/etc/init.d/zoneminder start
Open a Webbrowser an type:
Code: Select all
http://<IP_of_your_ZM-Machine>/zoneminder
Installing Cambozola
If you want to use Cambozola, type this:
Code: Select all
# emerge dev-java/ant
# cd /usr/local/src
# wget http://www.charliemouse.com/code/cambozola/cambozola-latest.tar.gz
# tar xvfz cambozola-latest.tar.gz
# cp /usr/local/src/cambozola-0.68/dist/cambozola.jar /var/www/localhost/htdocs/zoneminder
# chmod 775 /var/www/localhost/htdocs/zoneminder/cambozola.jar
That's all, now you can configure your ZoneMinder, --> have fun.
...Also in Wiki