Finally managed to get rayhunter working on my orbic, but i am running into the issue of saving logs. The only way I can get the log file to create is by connecting my Orbic, killing all services using the port, and then running the installer again, but that has permission issues.
My device isn’t using an activated sim and i have no way to use wifi. I’m stuck using USB. My issue is that every time I connect my device, something else grabs my device. I then need to set permissions with chmod, but they are lost every time i run the installer to force the log to rewrite. My log only has a note about the device being used by by another application so my logs are not writing properly to my file.
So once it reboots, all the permissions i set with chmod 666 /dev/bus/usb/… are reset, because USB devices are recreated at the kernel level randomly.
How do i get the temp logs from the Orbic and bypass this error?
Failed to install Rayhunter on the Orbic RC400L
Caused by: The Orbic is plugged in but is being used by another program
TL;DR: Another process is holding the USB on Ubuntu. Rayhunter/ADB needs exclusive access to the Orbic over USB. If anything else has the device open, Rayhunter can’t communicate, and the installer/log write fails. After a reboot, the Orbic appears as /dev/bus/usb/003/031 one time, then /003/035 the next, etc. If i manually chmod-ed the old device node, it no longer applies. I can kill processes that are holding it hostage, but as soon as the Orbic reboots, it starts the loop over.
How do I get the logs off of the Orbic? I must be over thinking this or doing something wrong.
United States, Orbic RC400L, v1.2.0 Ubuntu 24
I’m sorry, I cannot make sense of the first two paragraphs at all, and how that relates to the goal of getting logs.
The error about another program using the orbic comes from the fact that you ran
adb. you can fix it withadb kill-server. I don’t understand why you are chmodding devices, please just run the installer with sudo if you have to.To get logs you can go to the Rayhunter UI, there’s a button in the top right to get logs. You can also
adb shellinto it and runcat /data/rayhunter/rayhunter.log, it’s the same content.I reinstalled using native linux and everything is working.
adb shellnow works properly.