-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dw-start.sh script isseu #100
Comments
Hello PD0RBO, screen -dr direwolf Unless you'd like to report an issue, please close this "issue" and if you want more help, join the Yahoo group. --David |
I'd really like to report a problem. :~$ screen -ls :
: |
Try these commands and see if you get a different result: sudo screen -ls If those commands find a running screen session, this means you're aren't running screen under the correct user to see the session. --David |
/direwolf$ ./dw-start.sh
|
It's strange that it's saying "S-usr" which makes me think that this screen is running on a non-existent username "usr". Since it seems Direwolf isn't running, you probably have some stale lock files in /var/run/screen/ . To confirm, try running: sudo find /var/run/screen I would recommend to cd into that directory and delete all directories and files in there. For example, use: sudo rm -Rf /var/run/screen/S-usr Clear out anything else in there as well (they are just temporary lock files). Once done, I'd just recommend to reboot your Rpi to have a clean slate and then try again. |
I substituted the username for 'usr' Deleting the directories and files worked once, I added the line in the cron and rebooted. Then the same problem occured, deleting the line in the cron and deleting the files and directory again didn't work from there. I backstepped my tracks a couple of times to check if I stepped over something I did before, but didn't now. That being said, I experience this problem on a fresh and clean install. |
Ok, so you cleared out old directory and file state from /var/run/screen and then rebooted? At that point, Direwolf started up ok? After that, did direwolf stop working for you or did you again reboot the Rpi somehow? If a reboot.. HOW did you reboot it (pulling the power plug is VERY VERY bad for an Rpi). It's critical that you gracefully shutdown the Rpi every time. To help further your troubleshooting, I would recommend to disable the dw-start.sh script from the crontab for now and load it via the /etc/rc.local file. This should load Direwolf only once but also not keep trying to restart it just to help troubleshooting. |
I have some experience with SD cards, electronics and microcontrollers. What makes me to reboot and not powercycle. The only time it worked I just empty the directory like you sugested and rebooted, then ran the .sh from direwolf$ and it worked. Then I added the crontab line like in the documentation and rebooted. Then checked the running processes with 'top' and discovered that Direwolf and rtl_fm werent running. Removed the line of the crontab and began troubleschooting by repeating the above sugested steps. |
So it seems that after adding the dw-start.sh to the crontab and rebooting then created the issue? This is very strange as when you reboot a machine, all processes should be shutdown. If screen is shutdown first, direwolf should also be shutdown as part of that process and all screen lock files should be auto-cleaned up automatically. |
Well, focussing on the 'once'. Yes, adding the crontab did created the isssu on that particular instance.
However! I wasn't able to replicate that particular hapening and got stuck with the isseu like I experienced before what made me report this problem.
Do you have experience with Orange PI zero and ARMBian (Ubuntu stable)?
Maybe you can sugest a distro I can use what had been proven to work an troubleshoot from there?
… Op 17 mei 2017 om 17:48 heeft David Ranch ***@***.***> het volgende geschreven:
So it seems that after adding the dw-start.sh to the crontab and rebooting then created the issue? This is very strange as when you reboot a machine, all processes should be shutdown. If screen is shutdown first, direwolf should also be shutdown as part of that process and all screen lock files should be auto-cleaned up automatically.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Well, try to reproduce the issue and maybe we can mitigate it. Beyond that, no, I don't have any experience on the OrangePi but if it's running Ubuntu reliably, it should just work. |
I was able to get around this problem by modifying the script. I changed the line where screen is actually called, because I thought the shell might be interpreting the meaning of the pipe in the string in an unexpected way when it is passed as a variable. So, I replaced this line:
with this:
After that, the cron job started to work, and the screens are detached in daemon mode, leaving the rlt_rm and direwolf processes running. For what it's worth, I also modified the cron frequency to every five minutes to reduce the noise in the log file:
This second log from cron only lists output when the dw-start.sh script actually starts the processes. Regular time stamps continue in /var/tmp/dw-start.log I hope that helps! Best 73, Mike - KG4Y |
Dear @PD0RBO, I walked into the same trap, the dw-start script does a check in the process list to see if Direwolf is already running. If 'direwolf' is the or part of the hostname, the script 'thinks' it has found a running Direwolf process which is actually the avahi-daemon. Just change your hostname without 'direwolf' of modify the script by using the $DIREWORF define: original: suggestion: Note. do not copy past the sample code, due to the styling of this forum the required quotes are not shown correctly. By this small change the hostname doesn't matter anymore, the script checks the correct process. All the best, 73, |
Hi All, I tried Mike - KG4Y sugestion and it worked. I did tried Karel - PE2KDK sugestion, however I missed being $DIREWOLF in caps and it didn't work. I didn't tried again with caps. I have now a working situation. Thanks for thinking for me. 73 Remi |
I had the same problem on a Raspberry Pi. Another solution is to replace
with a function:
and to replace
with
This is the better/safer way to implement things according to https://stackoverflow.com/questions/43752854/bash-pipe-character-in-variable-for-command-substitution KX3F |
A new version of this script (intended for RTL SDR users) but has several other improvements that may help standard sound device Direwolf use cases) is offered here: https://groups.io/g/direwolf/message/8002 |
Just putting it out there, I'm a novice regarding Linux at configuring level.
I've got Direwolf and RTL-SDR running on a Orange Pi Zero and ARMbian.
Running the .sh is giving me:
$ ./dw-start.sh
Direwolf in CLI mode start up
There is a screen on:
3727.direwolf (05/14/2017 07:17:06 PM) (Detached)
1 Socket in /var/run/screen/S-usr.
$
Direwolf and rtl_fm don't seem to be running from there.
In the script I already changed 'screen -d -m -S' into '-dmS'
Making a detached screen and running rtl_fm and direwolf from there works just fine.
The text was updated successfully, but these errors were encountered: