Posts

balenaCloud can be used to view Zoneminder Console

Image
How to install Zoneminder Docker on a qemu virtual machine with balenaOS on UBUNTU 20.04 LTS ( Focal Fossa) and view Zoneminder console remotely on balenaCloud Balena is a latest opensource container-based platform for deploying IoT applications. For the details please refer the following link https://www.balena.io/ The balena is well designed to accommodate docker repositories. The objective of this tutorial is self explanatory by the heading . In order to simplify the procedure , the tutorial has been broken to three steps and described by three posts . Two posts have already published previously The following are the main steps followed. Installing qemu and creating a qemu virtual machine with balenaOS on a computer with UBUNTU 20.04 operating system . Then connect the qemu device (qemu virtual machine with balenaOS) to balenaCloud Please refer the following post to get the details How to use a balena-cloud image in qemu emulator ...

how to use bkjaya1952/smath-studio (a docker repository of SMath Studio-0.99.7030) on Ubuntu 19.10 (eoan)

Image
SMath Studio 0.99.7030 is a  tiny, powerful, free mathematical program with WYSIWYG editor and complete units of measurements support. SMath Studio has features similar to  Mathcad which is a commercial software. Docker repositories are used in preset days as those can be installed easily on host machines with out interfering the default software configuration. bkjaya1952/smathstudio-docker docker repository has been created based on following  software 1. SMath Studio 0.99.7030       Please refer https://en.smath.com/forum/ 2. solarkennedy/wine-x11-novnc-docker   –  A docker repository First I must be thankful to the following gentalman for providing their valuable resources and support to build my docker repository on Andrey Ivashov’s SMath Studio-0.99.7030 Andrey Ivashov – Owner of Studio-0.99.7030 Kyle Anderson – Owner of solarkennedy/wine-x11-novnc-docker ( I have forked his ripository to buid my repository ) ...

How to install ivms4200-linux docker image on Ubuntu 19.10 (eoan)

Image
Now, most of the people prefer to use Linux operating systems on personal computers as those are opensource freeware with  less risk for virus attacks.  But some software developers make their software to promote  Windows platforms according to a  commercial  agenda. Most of the Hikvision camera configuration software are designed for Windows platforms. There is only one ivms4200- Linux built in the past . But this Linux version is not known to most of the people . Best thing is to use docker repositories , as those do not have dependency problems  or clash with the  operating systems of host machine. Therefore , I have created a docker repository  bkjaya1952/docker-ivms4200-linux using  solarkennedy / wine-x11-novnc-docker   as the base and uploaded to the dockerhub This image has been created based on repository solarkennedy/wine-x11-novnc-docker . This repository bkjaya1952/docker-ivms4200-linux can be used in Li...

HOW TO INSTALL ZONEMINDER, master ON UBUNTU 19.10 (eoan), with php 7.4 & mysql 8

Installation of php 7.4 sudo su apt install -y software-properties-common add-apt-repository ppa:ondrej/php apt update  apt -y install php7.4 Installation of Zoneminder To install Zoneminder Please refer Connor’s web site add-apt-repository ppa:iconnor/zoneminder-master apt update apt install zoneminder rm /etc/mysql/my.cnf cp /etc/mysql/mysql.conf.d/mysqld.cnf /etc/mysql/my.cnf sed -i "15i default_authentication_plugin= mysql_native_password" /etc/mysql/my.cnf /etc/init.d/mysql start mysql CREATE USER 'zmuser'@localhost IDENTIFIED WITH mysql_native_password BY 'zmpass'; GRANT ALL PRIVILEGES ON zm.* TO 'zmuser'@'localhost' WITH GRANT OPTION; FLUSH PRIVILEGES ; quit mysqladmin -uroot -p reload sudo add-apt-repository ppa:iconnor/zoneminder-master sudo apt-get update sudo apt install zoneminder mysql -uroot -p < /usr/share/zoneminder/db/zm_create.sql mysqladmin -uroot -p reload chmod 740 ...

HOW TO INSTALL ZONEMINDER, v1.34.0. ON UBUNTU 19.10 (eoan), with mysql 8

Image
HOW TO INSTALL ZONEMINDER, v1.34.0. ON UBUNTU 19.10 (eoan), with mysql 8   Today, Mr. Isaac Connor has published the  first successful Zoneminder-master-eoan  package for Ubuntu 19.10. in his website . To avoid errors when installing Zoneminder , MySQL-server is installed first. Installation of MySQL-server On the Ubuntu terminal sudo su apt install mysql-server rm /etc/mysql/my.cnf cp /etc/mysql/mysql.conf.d/mysqld.cnf /etc/mysql/my.cnf sed -i "15i default_authentication_plugin= mysql_native_password" /etc/mysql/my.cnf /etc/init.d/mysql start   mysql   CREATE USER 'admin'@'localhost' IDENTIFIED WITH mysql_native_password BY ''; GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost' WITH GRANT OPTION; FLUSH PRIVILEGES ; quit mysqladmin -uroot -p reload Installation of Zoneminder To install Zoneminder Please refer Connor’s web site Open the terminal and run following commands.   mysql CREATE USER 'zmuser'...

How to Build a Zoneminder-master Docker-Image with MYSQL 8 & MSMTP

Image
How to Build a Zoneminder-master Docker-Image with MYSQL 8 & MSMTP We observed that most of the Linux software have compatibility problems due to dependency issues when operating systems are upgraded.  To overcome dependency issues and to avoid conflicts with the default system structure of the OS , the Docker-images play an important role. Since the official Zoneminder eoan has Dependency wait on lgw01-amd64-051 , I thought of developing a docker-image  with MYSQL 8 & MSMTP and push to docker hub  . This docker image is structured based on the basic concepts in my earlier post on How to install Zoneminder , ( v1.33.16.) with Mysql 8 on Ubuntu 19.10 This image is created on ubuntu:eoan  with zoneminder-master/ubuntu disco main In the Dockerfile , Ubuntu environment used is ubuntu:eoan. deb For Zoneminder ppa used is http://ppa.launchpad.net/iconnor/zoneminder-master/ubuntu disco main . Therefore libmysqlclient20 has to...

How to install Zoneminder-master- Docker , v1.33.16 with Mysql 8 ,MSMTP on Ubuntu 19.10 (Eoan Ermine)

Image
How to install Zoneminder-master- Docker , v1.33.16 with Mysql 8 ,MSMTP on Ubuntu 19.10 (Eoan Ermine) January 14, 2020 B.K.Jayasundera In this tutorial ,we are going to use “Docker: Enterprise Container Platform”   ( docker.io ) on Ubuntu 19.10. As , still there is on official  zoneminder issued for  Ubuntu 19.10 due dependency issues, the best option is to use docker Zoneminder  to overcome dependency problems and to avoid conflicts with the default setup of  Ubuntu 19.10 First Installation of Docker on Ubuntu 19.10 On the Ubuntu terminal sudo apt install docker.io Then use ,  bkjaya1952/docker-zoneminder-master-mysql8 Docker Repository to make a container . ( This image has been created on ubuntu:eoan  with  zoneminder-master/ubuntu disco main) I have created the above docker image and pushed to the Docker Hub. Figure:- bkjaya1952/docker-zoneminder-master-mysql8:1.33.16 Repository at dockerhu...