<?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=Csfoster2</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=Csfoster2"/>
	<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/Special:Contributions/Csfoster2"/>
	<updated>2026-05-03T16:05:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Fedora_Core_6_Step-by-Step&amp;diff=1829</id>
		<title>Fedora Core 6 Step-by-Step</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Fedora_Core_6_Step-by-Step&amp;diff=1829"/>
		<updated>2007-01-19T05:28:50Z</updated>

		<summary type="html">&lt;p&gt;Csfoster2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This short guide takes you through the specific tasks you need to install ZoneMinder 1.22.3 from scratch onto a Fedora Core 6 box. It assumes you have selected the &amp;#039;Server&amp;#039; and &amp;#039;Development&amp;#039; package options during install. If you select &amp;#039;All Packages&amp;#039; then you can probably skip most of the first section. It also assumes you have disabled selinux during installation. If not then you will need to disable it by editing /etc/selinux/config or create appropriate policies for the various system components to allow ZoneMinder to run.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;The instructions assume a database name of &amp;#039;zm&amp;#039;, a database user of &amp;#039;zmuser&amp;#039; and a database password of &amp;#039;zmpass&amp;#039;.&lt;br /&gt;
You should change these to something more secure in the ZoneMinder &amp;#039;configure&amp;#039; line and the database &amp;#039;grant&amp;#039; line.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Install Required Packages&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
yum install mysql-server&lt;br /&gt;
&lt;br /&gt;
yum install mysql-devel&lt;br /&gt;
&lt;br /&gt;
yum install php-mysql&lt;br /&gt;
&lt;br /&gt;
yum install pcre-devel&lt;br /&gt;
&lt;br /&gt;
yum install perl-DateManip&lt;br /&gt;
&lt;br /&gt;
yum install perl-libwww-perl&lt;br /&gt;
&lt;br /&gt;
yum install perl-Device-SerialPort&lt;br /&gt;
&lt;br /&gt;
yum install perl-MIME-Lite&lt;br /&gt;
&lt;br /&gt;
yum install perl-Archive-Zip&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Install ffmeg from source&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg&lt;br /&gt;
&lt;br /&gt;
cd ffmpeg/&lt;br /&gt;
&lt;br /&gt;
./configure&lt;br /&gt;
&lt;br /&gt;
make&lt;br /&gt;
&lt;br /&gt;
make install&lt;br /&gt;
&lt;br /&gt;
make install-libs&lt;br /&gt;
&lt;br /&gt;
cd ..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Configure system daemons&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
chkconfig --add mysqld&lt;br /&gt;
&lt;br /&gt;
chkconfig --level 345 mysqld on&lt;br /&gt;
&lt;br /&gt;
chkconfig --level 345 httpd on&lt;br /&gt;
&lt;br /&gt;
service mysqld start&lt;br /&gt;
&lt;br /&gt;
service httpd start&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Download and install ZoneMinder&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
wget http://www.zoneminder.com/downloads/ZoneMinder-1.22.3.tar.gz&lt;br /&gt;
&lt;br /&gt;
tar xvfz ZoneMinder-1.22.3.tar.gz&lt;br /&gt;
&lt;br /&gt;
cd ZoneMinder-1.22.3&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
At this point you will need to patch the software to correct a problem with the monitor configuration presets  (See patches in wiki table of contents)&lt;br /&gt;
After you patch the software, continue with the following.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
./configure --with-webdir=/var/www/html/zm --with-cgidir=/var/www/cgi-bin ZM_DB_HOST=localhost ZM_DB_NAME=zm ZM_DB_USER=zmuser ZM_DB_PASS=zmpass CFLAGS=&amp;quot;-g -O3 -march=pentium4&amp;quot; CXXFLAGS=&amp;quot;-g -O3 -march=pentium4&amp;quot;&lt;br /&gt;
&lt;br /&gt;
make&lt;br /&gt;
&lt;br /&gt;
make install&lt;br /&gt;
&lt;br /&gt;
install scripts/zm /etc/init.d/&lt;br /&gt;
&lt;br /&gt;
chkconfig --add zm&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Create and configure the ZoneMinder database&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
mysql mysql &amp;lt; db/zm_create.sql&lt;br /&gt;
&lt;br /&gt;
mysql mysql&lt;br /&gt;
&lt;br /&gt;
grant select,insert,update,delete on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&lt;br /&gt;
&lt;br /&gt;
quit&lt;br /&gt;
&lt;br /&gt;
mysqladmin reload&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Start ZoneMinder&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
service zm start&lt;/div&gt;</summary>
		<author><name>Csfoster2</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Fedora_Core_6_Step-by-Step&amp;diff=1828</id>
		<title>Fedora Core 6 Step-by-Step</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Fedora_Core_6_Step-by-Step&amp;diff=1828"/>
		<updated>2007-01-19T01:05:08Z</updated>

		<summary type="html">&lt;p&gt;Csfoster2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This short guide takes you through the specific tasks you need to install ZoneMinder 1.22.3 from scratch onto a Fedora Core 6 box. It assumes you have selected the &amp;#039;Server&amp;#039; and &amp;#039;Development&amp;#039; package options during install. If you select &amp;#039;All Packages&amp;#039; then you can probably skip most of the first section. It also assumes you have disabled selinux during installation. If not then you will need to disable it by editing /etc/selinux/config or create appropriate policies for the various system components to allow ZoneMinder to run.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;The instructions assume a database name of &amp;#039;zm&amp;#039;, a database user of &amp;#039;zmuser&amp;#039; and a database password of &amp;#039;zmpass&amp;#039;.&lt;br /&gt;
You should change these to something more secure in the ZoneMinder &amp;#039;configure&amp;#039; line and the database &amp;#039;grant&amp;#039; line.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Install Required Packages&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
yum install mysql-server&lt;br /&gt;
&lt;br /&gt;
yum install mysql-devel&lt;br /&gt;
&lt;br /&gt;
yum install php-mysql&lt;br /&gt;
&lt;br /&gt;
yum install pcre-devel&lt;br /&gt;
&lt;br /&gt;
yum install perl-DateManip&lt;br /&gt;
&lt;br /&gt;
yum install perl-libwww-perl&lt;br /&gt;
&lt;br /&gt;
yum install perl-Device-SerialPort&lt;br /&gt;
&lt;br /&gt;
yum install perl-MIME-Lite&lt;br /&gt;
&lt;br /&gt;
yum install perl-Archive-Zip&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Install ffmeg from source&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg&lt;br /&gt;
&lt;br /&gt;
cd ffmpeg/&lt;br /&gt;
&lt;br /&gt;
./configure&lt;br /&gt;
&lt;br /&gt;
make&lt;br /&gt;
&lt;br /&gt;
make install&lt;br /&gt;
&lt;br /&gt;
make install-libs&lt;br /&gt;
&lt;br /&gt;
cd ..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Configure system daemons&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
chkconfig --add mysqld&lt;br /&gt;
&lt;br /&gt;
chkconfig --level 345 mysqld on&lt;br /&gt;
&lt;br /&gt;
chkconfig --level 345 httpd on&lt;br /&gt;
&lt;br /&gt;
service mysqld start&lt;br /&gt;
&lt;br /&gt;
service httpd start&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Download and install ZoneMinder&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
wget http://www.zoneminder.com/downloads/ZoneMinder-1.22.3.tar.gz&lt;br /&gt;
&lt;br /&gt;
tar xvfz ZoneMinder-1.22.3.tar.gz&lt;br /&gt;
&lt;br /&gt;
cd ZoneMinder-1.22.3&lt;br /&gt;
&lt;br /&gt;
./configure --with-webdir=/var/www/html/zm --with-cgidir=/var/www/cgi-bin ZM_DB_HOST=localhost ZM_DB_NAME=zm ZM_DB_USER=zmuser ZM_DB_PASS=zmpass CFLAGS=&amp;quot;-g -O3 -march=pentium4&amp;quot; CXXFLAGS=&amp;quot;-g -O3 -march=pentium4&amp;quot;&lt;br /&gt;
&lt;br /&gt;
make&lt;br /&gt;
&lt;br /&gt;
make install&lt;br /&gt;
&lt;br /&gt;
install scripts/zm /etc/init.d/&lt;br /&gt;
&lt;br /&gt;
chkconfig --add zm&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Create and configure the ZoneMinder database&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
mysql mysql &amp;lt; db/zm_create.sql&lt;br /&gt;
&lt;br /&gt;
mysql mysql&lt;br /&gt;
&lt;br /&gt;
grant select,insert,update,delete on zm.* to &amp;#039;zmuser&amp;#039;@localhost identified by &amp;#039;zmpass&amp;#039;;&lt;br /&gt;
&lt;br /&gt;
quit&lt;br /&gt;
&lt;br /&gt;
mysqladmin reload&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Start ZoneMinder&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
service zm start&lt;/div&gt;</summary>
		<author><name>Csfoster2</name></author>
	</entry>
</feed>