Direkt zum Hauptbereich

Webcam monitors the entrance ...

Yesterday I picked up my camera (http://www.ebay.de/itm/390641740206) from the post office. I powered off my Raspberry, plugged in the little webcam guy and powered up again. Then I checked my camera:

pi@raspberrypi:~$ dmesg | grep -i vid
[    0.028498] mailbox: Broadcom VideoCore Mailbox driver
[    1.329416] vc-cma: Videocore CMA driver
[    6.182242] Linux video capture interface: v2.00
[    6.628217] uvcvideo: Found UVC 1.00 device USB2.0 Camera (1e4e:0110)
[    7.120691] usbcore: registered new interface driver uvcvideo
[    7.128191] USB Video Class driver (1.1.1)
 

pi@raspberrypi:~$ dmesg | grep input
[    6.890757] input: USB2.0 Camera as /devices/platform/bcm2708_usb/usb1/1-1/1-1.2/1-1.2:1.0/input/input0
 


Everything seems fine. Installed fswebcam:

sudo apt-get install fswebcam

First testpicture: fswebcam -v -r "640×480" /home/$USER/t.jpg


Installing motion:

sudo apt-get install motion

insserv: warning: script 'mathkernel' missing LSB tags and overrides
[warn] Not starting motion daemon, disabled via /etc/default/motion ... (warning).


Grmpf! What exactly does this mean? However, set start_motion_daemon=yes.

sudo /etc/init.d/motion restart

Now playing with the options. Obviously motion has an embedded webserver running on port 8081 which shows the recent picture. Coming back when there is real progress in the project i.e. when I know what to really do with it.

Kommentare

Beliebte Posts aus diesem Blog

Error: HPDMG0764E An internal error has occurred. (status 0x14c012fc)

Error: HPDMG0764E An internal error has occurred. (status 0x14c012fc) pdadmin sec_master> user create dg1234 uid=dg1234,cn=team1,cn=users,o=company lala lala ********** Could not perform the administration request Error: HPDMG0764E An internal error has occurred. (status 0x14c012fc) Description: After the upgrade from Policy Director (policy server) V5.1 to V6.0 the errors above occured when trying to write to the registry. Solution: The task of updating the ldap schema did not work well for some reason. After doing it again the errors did not occur again: # ivrgy_tool -d -h ldap_host -p port -D ldap_admin -w pwd schema

WebSphere Application Server LDAP: The administrative user ID does not exist in the user repository.

When you try to enable global security with ldap authentication you get the following error when configuring your ldap repository (IBM Directory Server): The administrative user ID does not exist in the user repository. Reason: The bind user must be searchable. This means that an ldapsearch with this user as bind user must return his own entry. If this does not work, you have to add an aclEntry: vi change-was7101-aclentry.ldif dn: uid=was7101,cn=mygroup,cn=admusr,o=mycomp aclentry: access-id:UID=WAS7101,CN=MYGROUP,CN=ADMUSR,O=MYCOMP:normal:rsc $ ldapmodify -h myhost -x -D "cn=root" -w ******* -f change-was7101-aclentry.ldif modifying entry "uid=was7101,cn=mygroup,cn=admusr,o=mycomp" Now user was7101 can do an ldapsearch to find itself and therefore you can use it to configure you LDAP repository. This article gave me the hint: http://www-01.ibm.com/support/docview.wss?rs=767&uid=swg21219253