#Weekly Feeder Reset?

1 messages · Page 1 of 1 (latest)

maiden meadow
#

Hi all. New feeder (2 weeks in) and I've noticed that my feeder seems to reboot every Sunday around 2200 Local/0400 UTC. Is this built into the image? The problem is that it turns off my BiasT for my LNA and I have to manually do a bunch of tasks via SSH (stop readsb, enable biast, then start readsb again) in order to receive anything.

Any suggestions on avoiding this on a weekly basis? Screenshot shows the reboot last week at around the same time.

spare cobalt
#

i think 30 4 * * 7 is the right cron schedule format

#

uh replace 7 with 1, 7 is sunday

#

it's happening in monday morning

#

So it will do the task every monday morning at 4:30

maiden meadow
spare cobalt
#

well just put 3 cron job

#

30 is the minute, so i think 30 4 * * 1 to say stop readsb i think 31 4 * * 1 to start biasT and i think 32 4 * * 1 to restart readsb

#

or something like that

#
30 4 * * 1 root systemctl stop readsb
31 4 * * 1 root systemctl start biast
32 4 * * 1 root systemctl start readsb
#

or whatever is the command to start biast

#

(don't copy the 1 2 3 number in front)

#

then ctrl+O to save and hit enter

#

and it should work i guess

quasi ether
maiden meadow
#

Thanks fellow humans!

maiden meadow
#

I ended up chaining commands and setting it to run at any system reboot in case of power failure.

@reboot sudo systemctl stop readsb && sudo rtl_biast -b 1 && sudo systemctl start readsb

Pushed a manual restart and it worked a charm.

Thanks for the help again, friends!

spare cobalt
#

Nice no_problem