Raspberry Pi 3 Raspbian Installation
Posted: Wed Feb 08, 2017 8:30 am
Which on is the right way to install ZoneMinder to Raspberry 3 Raspbian NOOBS and does it install latest 1.30.x?
https://wiki.zoneminder.com/Raspbian
https://wiki.zoneminder.com/Raspberry_Pi_-_Raspbian
That page looks scary but i think i can make it.
If i make these changes, does my internet still work thru WiFi or how i need to change this code so i can still use WiFi?
Are these memory instructions still same for Raspberry 3?
Which is better way to for newbie to “dedicate an entire partition, drive, or network share for ZoneMinder's event storage”?
https://wiki.zoneminder.com/Using_a_ded ... Hard_Drive
or
Systemd:
https://zoneminder.blogspot.it/p/blog-page.html
Thanks
https://wiki.zoneminder.com/Raspbian
https://wiki.zoneminder.com/Raspberry_Pi_-_Raspbian
That page looks scary but i think i can make it.

If i make these changes, does my internet still work thru WiFi or how i need to change this code so i can still use WiFi?
Code: Select all
Make changes similar to this:
auto eth0
#allow-hotplug eth0 (make sure this is commented or you will get 2 ip's)
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 192.168.1.1
Code: Select all
Kernel shared memory settings:
Set shared memory for 512MB RPi board: 1) 128MB shhmax shared:
sudo su -
echo "kernel.shmmax = 134217728" >> /etc/sysctl.conf
exit
2) 2MB shmall pages:
sudo su -
echo "kernel.shmall = 2097152" >> /etc/sysctl.conf
exit
https://wiki.zoneminder.com/Using_a_ded ... Hard_Drive
or
Systemd:
https://zoneminder.blogspot.it/p/blog-page.html
Thanks