ccCam in an original DMM Image

j0k3r

Registered
Messages
4
Hi folk,

is it possible to install a ccCam into an original DMM Image? Does I need TsPanel, or a softcammanager for that?


Thanks in advance
 

j0k3r

Registered
Messages
4
I think you can rename CCcam to dccamd and overwrite it in /user/bin and reboot.

Thanks for the replie, but is there any way that the cccam autostarts when I did a rebbot? I read somewhere about a script, but I dont know what I have to do with that script

Code:
#!/bin/sh 
 case "$1" in 
 start) 
  /usr/bin/CCcam 
  ;; 
 stop) 
  /usr/bin/CCcam 
  sleep 2 
  killall -9 CCcam 2>/dev/null 
  ;; 
 restart|reload) 
  $0 stop 
  sleep 1 
  $0 start 
  ;; 
 *) 
  echo "Usage: $0 start|stop|restart" 
  exit 1 
  ;; 
 esac 
 exit 0
 
Top