05-01-2024, 01:58 PM
I didn't try with any local files, but I can if that's helpful
Thank you for your donation!
Problem: No Receivers Discovered
|
05-01-2024, 01:58 PM
I didn't try with any local files, but I can if that's helpful
05-02-2024, 04:29 PM
(This post was last modified: 05-02-2024, 04:36 PM by TheOldPresbyope.
Edit Reason: fix two stupid typos; modified commentary
)
@downriver_bob
Since moOde 9 is still a work in process and it has many moving parts/functionalities, it's great if you can contribute to testing and providing feedback on the bits which matter to you. In the meantime, however, you can build the latest stable nmap-7.95 on your moOde 8.3.9 player(s) and see if that resolves your original problem. [The Raspberry Pi OS is built on the debian distro. Debian is great but it is often as much as a year or more behind current developments of some of its constituent components. ASIDE- it's never a good idea to run "apt-get upgrade" on a moOde player.] The following steps work on my moOde 8.3.9 player installed on a Pi4B. Code: # download the current sources for nmap, ca 11.7MB At this point, the old version of nmap remains in /usr/bin and the new version of nmap is in /usr/local/bin. Since /usr/local/bin precedes /usr/bin in the default PATH variable, the new version will prevail if nakedly invoked. Hence Code: pi@m839test:~ $ nmap -V and my moOde player handily finds all the players on my LAN using Tim's code snippets Code: pi@m839test:~ $ sudo nmap -Pn -p6600 --open 10.0.0.0/24 -oG /tmp/mpd_nmap.scan >/dev/null I believe the harmless warning relates to the "without localdirs" report from the ./configure step, see notes below. The warning is harmless but could be removed by setting the environmental variable as described. It arises because we have both old and new versions installed in different directories. It will be interesting to hear if this resolves your moOde 8.3.9 player's inability to find receivers on your Unifi network. Notes 1) the configure step should end with Code: NMAP IS A POWERFUL TOOL -- USE CAREFULLY AND RESPONSIBLY Candidly, I wasn't sure how to configure with "localdirs" so I didn't; we disabled zenmap on purpose; I didn't think either OpenSSL or LibSSH2 were needed for our use but one could certainly add them back in after installing some extra packages. 2) the make step should end unceremoniously with the line Code: make[1]: Leaving directory '/home/pi/nmap-7.95/ncat' 3) The install step should end with Code: NMAP SUCCESSFULLY INSTALLED Regards, Kent |
« Next Oldest | Next Newest »
|