I'm trying to set up the High Precision AD/DA Board from Waveform. The last step is to run sudo ./dac8532_test
, where it notes in the instructions that if command not found, to run chmod +x
. The command was not found, so I ran chmod +x dac8532_test
and tried sudo ./dac8532_test
again.
The command was again not found (sudo: ./dac8532_test: command not found
). I checked and the file dac8532_test is indeed in the directory I'm in (there are two other files with that name, but they have the extensions .c and .o if that matters).
What am I doing wrong? (Note: if there's any information I need to add, please let me know; I wasn't sure what was necessary.)
Output of file dac8532_test
:
dac8532_test: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, for GNU/Linux 3.2.0, BuildID[sha1]=ff54034576038bbed2b96bce738f008281aa7d28, not stripped
Output of ls -al dac8532_test
:
-rw-r--r-- 1 pi pi 59232 Jun 29 11:07 dac8532_test
x
, right?) set; I ran sudo chmod a+rx and again got command not found. – auden Jun 29 '18 at 18:37file dac8532_test
andls -al dac8532_test
to the question. – N0rbert Jun 29 '18 at 18:39sudo: ./dac8532_test: command not found
when I type insudo ./dac8532_test
. – auden Jun 29 '18 at 18:41chmod
gives me no errors. Tryingsudo sh
again gives me command not found. – auden Jun 29 '18 at 18:45dac8532_test
is built for ARM CPU, so it will not launch on default x86_64 Ubuntu desktop. Where do you running it - on board or on desktop? – N0rbert Jun 29 '18 at 18:45