Hi!
Would like to have a webcam running on my pogoplug. I have the V4 with Archlinux installed, and then I installed:
$this->bbcode_second_pass_code('', '[root@alarm /]# pacman -Sy motion')
and:
$this->bbcode_second_pass_code('', '[root@alarm /]# pacman -Sy ffmpeg')
As far as I can see, it should be running on port 8081 from the config (/etc/motion/motion.conf):
$this->bbcode_second_pass_code('', '# The mini-http server listens to this port for requests (default: 0 = disabled)
webcam_port 8081
')
But I cannot see anything!
The process is running:
$this->bbcode_second_pass_code('', '[root@alarm /]# ps -ef |grep motion
root 162 1 6 18:13 ? 00:01:34 /usr/bin/motion
root 316 293 0 18:39 pts/0 00:00:00 grep motion
[root@alarm /]#
')
My webcam details:
$this->bbcode_second_pass_code('', 'Make and Model Device Id Driver
Logitech Quickcam Communicate STX 046d:08d7 gspca')
$this->bbcode_second_pass_code('', '[root@alarm ~]# lsusb
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 002 Device 002: ID 046d:08d7 Logitech, Inc. QuickCam Communicate STX
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
[root@alarm ~]#')
Kernel:
$this->bbcode_second_pass_code('', '[root@alarm ~]# uname -a
Linux alarm 3.1.10-32-ARCH #1 PREEMPT Tue Feb 11 06:26:34 MST 2014 armv5tel GNU/Linux
[root@alarm ~]#')
Loaded drivers:
$this->bbcode_second_pass_code('', '[root@alarm ~]# lsmod
Module Size Used by
snd_usb_audio 76792 0
snd_usbmidi_lib 16087 1 snd_usb_audio
snd_hwdep 4916 1 snd_usb_audio
snd_rawmidi 16404 1 snd_usbmidi_lib
snd_seq_device 4854 1 snd_rawmidi
snd_pcm 62063 1 snd_usb_audio
snd_page_alloc 4783 1 snd_pcm
snd_timer 17409 1 snd_pcm
snd 36906 7 snd_timer,snd_pcm,snd_seq_device,snd_rawmidi,snd_hwdep,snd_usbmidi_lib,snd_usb_audio
soundcore 690 1 snd
gspca_zc3xx 35886 1
gspca_main 17448 2 gspca_zc3xx
videodev 77800 2 gspca_main
i2c_core 16545 1 videodev
mv_cesa 9362 0
ipv6 272990 16
autofs4 22305 2
[root@alarm ~]#')
So as far as I can see, it looks like it should work, but it is not.
Any advice?