How to do an Automatic timed cuberevo reboot at 5am every morning ?

carrpet

Registered
Messages
183
Hi There,

Can anybody help me with - How to do an Automatic timed cuberevo reboot at 5am every morning ?

I am using the latest NLB DGS image (which is outstanding !) with Crossepg running on 28.2E but the image seems to need a reboot following the automatic download EPG update from HipHop. I cam using a n external timer now but would be much smarter if I can use the box to tell itself to do it ?
 

Jahu

Donating Member
Messages
254
Well some scripting guru could make a small bash script to put it as a cron job to to that.
 

Jahu

Donating Member
Messages
254
Try this:

Edit the cron table:
> crontab -e

Now you are in vi, editing the cron table. Add a line like:

0 4 * * * init 6 >/dev/null

This command says, when the minute is 0 and the hour is 4, execute the command "init 6" and send any standard output to /dev/null (which cause the output to be thrown away).
 
Top