ZoneMinder which combine monitoring on Linux

Zoneminder is combine in its field.
On the Windows manufacturers often provide a tool for managing cameras, however, they forget that not all are dependent on Windows.
With glory and is open source software that perfectly fulfills its task.
Below I will explain step by step how to install Zoneminder that will help us monitor the apartment on Linux.

In the previous section describing LAMP server installation which will be necessary to install ZoneMindera

I'll skip this installation because everyone can benefit from the previous tutorial we go straight to the installation.

Installation and konfoguracja sudo:

apt-get update
apt-get install sudo
usermod -a -G sudo
exit

And we run sudo update system:

sudo -i
apt-get upgrade

Zonemindera package is not in the standard repositories and in backports you must add them to our system:

nano /etc/apt/sources.list

And we add the repository:

# Backports repository
deb http://httpredir.debian.org/debian jessie-backports main contrib non-free

Installation and update repositories zonemindera:

apt-get update
apt-get install zoneminder

We can also extract documentation and become acquainted with it:

gunzip /usr/share/doc/zoneminder/README.Debian.gz
cat /usr/share/doc/zoneminder/README.Debian

The next step is to configure the database:

cat /usr/share/zoneminder/db/zm_create.sql | sudo mysql --defaults-file=/etc/mysql/debian.cnf
echo 'grant lock tables,alter,create,select,insert,update,delete,index on zm.* to 'zmuser'@localhost identified by "zmpass";' | sudo mysql --defaults-file=/etc/mysql/debian.cnf mysql

We give permission to the file:

chgrp -c www-data /etc/zm/zm.conf

Zonemindera we configure and run with system

systemctl enable zoneminder.service

run the appropriate modules apache:

a2enconf zoneminder
a2enmod cgi
a2enmod rewrite

Configuration zone

nano /etc/php5/apache2/php.ini
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = Europe/Warsaw

The last step is to restart apache and start zoneminder:

systemctl reload apache2
systemctl start zoneminder

It's all a whole should work correctly

Zoneminder should be available under the: http://ADRESIP / RESOLUTION /

in the case of Ubuntu case it is even easier, authors launched the script autoinstalacji:

Charge from the script:

https://onedrive.live.com/?authkey=%21AG79sCNR4w1ATWo&id=DECAED2A9DCA1993%2127153&cid=DECAED2A9DCA1993

We give chmod:

chmod 755 zm_install

and run the installer do the work for us:

./zm_install

Linux

Udostępnij
Opublikowane przez
Linux

Recent posts

KeePass2 2.52 w Ubuntu 22.04

The guide below describes how to install KeePass on Ubuntu. Całość wykonamy za pomocą kilku poleceń

2 years temu

Installing Master PDF editor in Ubuntu 22.04

Master PDF Editor is a comprehensive PDF program, which includes many features. Oprócz tworzenia i edycji

2 years temu

iotop - memory monitoring

Iotop jest prostym narzędziem dla systemów Uniksowych umożliwiającym monitorowanie użycia dowolnego nośnika pamięci flash/hdd/ssd w

2 years temu

Run multiple commands in one cron job

You can separate two or more commands with semicolons (;), Semicolon (;): służy do oddzielania

2 years temu

Changing the exif data of a photo in the Linux terminal

Poniższy poradnik opisuje w jaki sposób za pomocą konsoli możemy dokonać edycji danych zdjęcia exif.

2 years temu

Installing Rocket.Chat Server on Rocky Linux 8

The following guide describes how to install Rocket.Chat on Rocky Linux 8 Całość bardzo prosto zainstalujemy

2 years temu