I was trying to run a linux binary from this site:
http://www.robots.ox.ac.uk/~vgg/research/affine/descriptors.html#binaries
specifically, the "compute_descriptors.ln"
However, the terminal only responded with command not found
. The extension also looks very uncommon.
I am running Ubuntu 12.10.
I think you missed some steps (
chmod +x
maybe?). Works for me:You probably typed
but you need to do
(notice the leading
./
, that is also mentioned on the site you linked)The command isn't known "globally" (in your path) so you must specify that the command is in fact in this directory.
You could also need to do a
chmod +x
, but i'd just try the./
prepending first.