1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

sim201 bl76 to bl84 ?

Discussion in 'Digital TV - UK & Europe' started by lenny123, Feb 11, 2012.

  1. lukeian5

    lukeian5 Member

    Joined:
    Jun 24, 2010
    Messages:
    79
    Likes Received:
    0
    Trophy Points:
    16
    @ lenny, it downloads for me with no problems at all, just have to reboot every 2/3 days & set it to usb again.

    @ fint, any chance you catch me by the hand & talk me through setting up a cron job, I know how to get into the cron option, once in there it all goes to pieces on me, scripts & stuff go right over my head lol.
    I want to save the epg on my usb/lower slot,& have the epg set to download every night @ 04am, so would I only need to set up a cron job to reboot as I don't need to wake up the hdd ??? Dumb it down as much as you can please lol
     
  2. fintannl

    fintannl Regular member

    Joined:
    Feb 11, 2009
    Messages:
    1,834
    Likes Received:
    9
    Trophy Points:
    48
    luk, this is taken from dreamboxuk.com. The below is easily achieved using flashfxp to edit files and change permissions

    Add as file reboot_timer.sh in map /var/script (chmod 755!!)




    #!/bin/sh

    strHour="04"
    strMin="00"

    while true
    do
    DateSTR=`date +%H%M%S`
    #echo "$DateSTR"
    if [ "$DateSTR" -ge "$strHour$strMin"00 ] && [ "$DateSTR" -le "$strHour$strMin"10 ]; then
    echo "its time to reboot"
    #shutdown -r now
    reboot
    exit 0
    else
    #echo "do sleeping"
    sleep 8
    fi
    done


    Reboot the dreambox and it should now auto reboot every night at 04 00

    Change time to suit your needs.
     
  3. lukeian5

    lukeian5 Member

    Joined:
    Jun 24, 2010
    Messages:
    79
    Likes Received:
    0
    Trophy Points:
    16
    Tanx fint, have done it, I'll keep an eye on it and get back to ye
     
  4. lukeian5

    lukeian5 Member

    Joined:
    Jun 24, 2010
    Messages:
    79
    Likes Received:
    0
    Trophy Points:
    16
    At the risk of blighting myself, this has been fine the last few days. I'll give it a few more & then spread the word, as I've seen loads with this problem & no answers. Thanks again fintannl [​IMG]
     

Share This Page