README.SLACKWARE 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. Droidcam Slackware
  2. After installing the package, a file to load the video audio modules will be
  3. created in "/etc/rc.d" called "rc.droidcam",
  4. If the module responsible for functional the camera is not working the
  5. file is already with execution permission, only need run.
  6. chmod +x /etc/rc.d/rc.droidcam
  7. /etc/rc.d/rc.droidcam start
  8. Probably the camera and microphone modules of the cell phone will not be
  9. loaded at startup, being necessary to add the
  10. following lines in the file "rc.local".
  11. if [-x /etc/rc.d/rc.droidcam]; then
  12. /etc/rc.d/rc.droidcam start &> / dev / null
  13. fi
  14. If you prefer to add in rc.shutdown.
  15. if [-x /etc/rc.d/rc.droidcam]; then
  16. /etc/rc.d/rc.droidcam stop &> / dev / null
  17. fi
  18. Whenever you upgrade the kernel you need to reinstall the package so that the
  19. module is recompiled on the new kernel.
  20. When you need to uninstall the package The camera video driver will still be
  21. installed and you need to remove manually if you can.
  22. Login as root.
  23. rmmod -f v4l2loopback_dc
  24. rm -f /lib/modules/`uname -r`/kernel/drivers/media/video/v4l2loopback-dc.ko
  25. For more informations.
  26. https://www.dev47apps.com/droidcam/linux/