Adrian replied to the topic 'Weather Radio - info channel' in the forum. 3 years ago

It looks like the file does not exist.

You showed the output of % ps aux | grep indiserver as

nafa 704 0.0 0.0 1836 1364 ? Ss févr.11 0:14 /usr/bin/indiserver -v indi_weatherradio >> /tmp/weatherradio_output.txt

Which indicates that the server is running so it should be outputting something to the file in /tmp/weatherradio_output.txt

1. Check that the tmp directory exists
$ sudo ls -l /tmp
It should exist

Check if the indiserver is running again with the ps aux command
$ ps aux | grep indiserver

If the indiserver is running and there is no /tmp directory kill the indiserver
$ sudo killall indiserver

Start indiserver as your normal user in the terminal
$ indiserver -v indi_weatherradio > ~/logfile.txt

Leave it running and monitor ~/logfile.txt in your home directory

Read More...