Hacker News new | ask | show | jobs
by danmg 1943 days ago
Very interesting, but every one of these executives I try on my fairly stock Ubuntu system returns 'run-detectors: unable to find an interpreter'.

I'm invoking them with 'bash -c'.

2 comments

Author here. That error means you're using binfmt_misc. You can fix that by saying:

    sudo sh -c "echo ':APE:M::MZqFpD::/bin/sh:' >/proc/sys/fs/binfmt_misc/register"
Then you're good to go!
Thanks!