×

INDI Library v2.0.7 is Released (01 Apr 2024)

Bi-monthly release with minor bug fixes and improvements

[SOLVED} Kstars v3.4.2 bombing while drivers loading on Ubuntu 18.0.4

  • Posts: 1957
  • Thank you received: 420
This line

2020-04-16T12:12:21: Driver indi_dfmc_focus: 2020-04-16T12:12:21: Driver indi_dfmc_focus: execlp: No such file or directory

indicates that the execlp command doesn't exist. What happens if you type

execlp

on a command line in the Odroid? Ubuntu usually suggests which package to install if it cannot find a command. Perhaps that will get you further?


HTH, Wouter
The following user(s) said Thank You: Jerry Black
4 years 1 week ago #52005

Please Log in or Create an account to join the conversation.

  • Posts: 460
  • Thank you received: 69
Thanks,

as you expected

odroid@odroid:~$ execlp
bash: execlp: command not found

Synaptics Package manager doesn't show execlp. I'd do some more research.

Thanks!
4 years 1 week ago #52009

Please Log in or Create an account to join the conversation.

  • Posts: 1957
  • Thank you received: 420
Hmm maybe I replied too soon. My Ubuntu 18.04 doesn't contain this command either. Perhaps it is a C or C++ command or so. I don't have your focuser so I cannot check that.
4 years 1 week ago #52038

Please Log in or Create an account to join the conversation.

  • Posts: 460
  • Thank you received: 69
OK, thanks. In the meantime I've noticed my usb plug connection wasn'r snug so I wasn't getting my dev/focuscube device. That would have been a problem. Problem 2, I had the driver name wrong in some of my testing.i
ndiserver -v indi_dmfc_focus indi_nikon_ccd (I had dfmc rather than DMFC)
But it is stubbornly refusing to let that driver work, although I'm now convinced it's just in my configuration/setup.
Last edit: 4 years 1 week ago by Jerry Black.
4 years 1 week ago #52039

Please Log in or Create an account to join the conversation.

  • Posts: 460
  • Thank you received: 69
After upgrading the system to Ubuntu 19.10, system updates, kstars updates, purging the Pegasus driver, and getting a handle on the devices in use using:
#!/bin/bash
 
for sysdevpath in $(find /sys/bus/usb/devices/usb*/ -name dev); do
        syspath="${sysdevpath%/dev}"
        devname="$(udevadm info -q name -p $syspath)"
        [[ "$devname" == "bus/"* ]] && continue
        eval "$(udevadm info -q property --export -p $syspath)"
        [[ -z "$ID_SERIAL" ]] && continue
        echo "/dev/$devname - $ID_SERIAL"
 done

everything seems to be working :)
The following user(s) said Thank You: Eric
Last edit: 3 years 11 months ago by Jerry Black.
3 years 11 months ago #53178

Please Log in or Create an account to join the conversation.

Time to create page: 0.338 seconds