Welcome!

Welcome to Satlover forums, full of great people, ideas and excitement.

Please register if you would like to take part. link..

Register Now

Alert: Don't Use Hotmail Email Accounts for registration

Collapse

Before Access to all Forums and Trial accounts you must need to activate your account Email address

How to create Cccam.log

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Triad
    Experienced Member
    • Jan 2012
    • 422

    How to create Cccam.log

    Since you have ecm.info in (E1) /var/temp, or (E2) /temp, that are momentarily logging which channel you're viewing, most users are complained here as elsewhere that there's no complete Cccam.log file that records all Cccam activities like start and stop script sessions as well as channel decode streams and ecm times dcw's etc!

    Procedure should be easy below ==>

    Create an empty log file in the var/log directory with full attributes.
    In this example:
    Code:
    cccam.log
    In CCcam.cfg set the following
    Code:
    DEBUG: yes
    save and exit.

    goto
    Code:
    usr/script
    select and load for editing, the CCcam script you are going to use.

    eg. cccam_2.14.sh

    Look for the line that fires up the cam.

    Code:
    /var/bin/CCcam_2.1.4 &
    and mod this to:

    Code:
    /var/bin/CCcam_2.1.4 -d > /var/log/cccam.log &
    It's important that the name of the log file is identical to the file you created.

    Save and exit.
    Reload the cam and there you have it - log files !

    This script can be timed in order to delete itself after some memory consumption so that your Dream doesn't froze itself!
  • mur10
    Junior Member
    • Sep 2011
    • 11

    #2
    Re: How to create Cccam.log

    hi
    after creating the cccam.log by following this guide dont see ecm on info bar.
    why?
    i'm using cccam 2.3.0 on nemesis 2.6
    thanks
    bye

    Comment

    • peremacedonia
      Experienced Board Member
      • Jun 2010
      • 872

      #3
      Re: How to create Cccam.log

      I have easy metod for this.
      only add this to cccam.cfg
      WARNINGS : /tmp/warnings.txt
      and you have log file
      Rule n.33 kid..... Concentrate

      Comment

      • mur10
        Junior Member
        • Sep 2011
        • 11

        #4
        Re: How to create Cccam.log

        Triad wrote
        (This script can be timed in order to delete itself after some memory consumption so that your Dream doesn't froze itself!)
        how to get this???
        thanks

        Comment

        • bonilla
          Board Senior Member
          • Aug 2012
          • 251

          #5
          Re: How to create Cccam.log

          You can backup and copy files adding this :
          Code:
          # copy to windows share
          #
          # on the windows share (//192.168.1.20/Backup)
          # create the cccam user
          # with a password and give
          # him read,write permissions
          mkdir /tmp/bkpsrv
          smbmount //192.168.1.20/Backup /tmp/bkpsrv -o username=cccam,password=cccam
          cp -r /var/backups/$DATUM /tmp/bkpsrv/cccam/$DATUM
          sleep 1
          umount /tmp/bkpsrv
          rm -r /tmp/bkpsrv
          If you like my post, please don't hesitate to click on "Thanks"button. Thank you

          Comment

          • Triad
            Experienced Member
            • Jan 2012
            • 422

            #6
            Re: How to create Cccam.log

            Originally posted by mur10
            Triad wrote
            (This script can be timed in order to delete itself after some memory consumption so that your Dream doesn't froze itself!)
            how to get this???
            thanks
            You can add a "restart.sh" script in "/etc/crontab" if you want to run this script at say 5 min interval, like below:

            Code:
            */5 root   /emu/script/restart.sh >/dev/null
            Also, if you have situation that there are problems in your scripts you want to have Cccam debug options active, which we explained above.
            In CCcam.cfg set:
            Code:
            DEBUG: yes

            Comment

            Working...