Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

./sysroot.sh: Operation not permitted

im trying to install the cydia source code.

$ git clone git://git.saurik.com/cydia.git
$ cd cydia

but when i typing "./sysroot.sh" i got this error:

-bash: ./sysroot.sh: /usr/bin/env: bad interpreter: Operation not permitted

what the problem?

like image 834
theShay Avatar asked Dec 17 '22 03:12

theShay


1 Answers

My guess would be that the filesystem you are trying to run the script from is mounted using the "noexec" option. The interpreter inside of a shebang does not need to be in your $PATH, since an absolute path is specified. Try running your script by calling the interpreter, rather than the script:

bash sysroot.sh
like image 148
jordanm Avatar answered Dec 29 '22 11:12

jordanm