Engineering and technology notes

Connect to Motion stream – ZoneMinder Forums

Set up source type as remote
protocol as HTTP
remote method as Simple
remote host name ip address of Motion server ie 192.168.1.11
remote host port as 8081 ( providing this is the streaming port on Motion )
remote host path as /
set the colour and image size to match that of Motion ( found in the motion.conf file )

Hope this helps you or others.
https://forums.zoneminder.com/viewtopic.php?t=20575

Armbian 5.25 on OrangePI PC: The gc2035 video camera doesn’t work – Page 3 – Allwinner H2 & H3 – Armbian forum

The most import is that don’t load gc2035 & vfe_v4l2 before. So you had better remove it in /etc/modules

This is my /etc/modules

#w1-sunxi
#w1-gpio
#w1-therm
#gc2035
#vfe_v4l2
#sunxi-cir
#v4l2loopback

you may see /dev/video0, but when you reboot, it lose again

I add my scrip to /etc/rc.local

this is my /etc/rc.local

sunxi-pio -m "PG11<1><0><1><1>"
modprobe gc2035
modprobe vfe_v4l2
sleep 5
modprobe v4l2loopback devices=2
/root/vidcopy/vidcopy -w 640 -h 480 -r 30 -i /dev/video0 -o /dev/video1 -f UYVY
sleep 5
/root/vidcopy/vidcopy -w 640 -h 480 -r 30 -i /dev/video1 -o /dev/video2 -f UYVY
exit 0

Thanks my friend: “虚耗”

Source: Armbian 5.25 on OrangePI PC: The gc2035 video camera doesn’t work – Page 3 – Allwinner H2 & H3 – Armbian forum

server – apache mod_jk not working – Ask Ubuntu

Here is an examples of how to configure tomcat-apache connector.

You forgot JkWorkersFile directive. Add this line:

  JkWorkersFile /path/workers.properties

where path is where you saved your workers.properties file.

The port defined by:

  worker.worker1.port=8080

is the port where is listening Tomcat. Check tomcat configuration, usually is 8009.

Source: server – apache mod_jk not working – Ask Ubuntu