To run Linux script in FAT

How to run Linux script e.g configure etc, in FAT (or a raw alike) filesystem ?
eg. in /usr/src dir.
1
2
3
4
$ cd /usr/src
$ sudo chmod -R 777 .
$ ./configure
bash: ./configure: Permission denied

How to solve ?
Last edited on
You might try
sh configure

but honestly, trying to do anything with FAT with it's awful filename restrictions and zero concept of permissions, that might be the least of your worries. You're just going to get the same when the next thing comes along.

FAT - tying large blocks of concrete to your legs, then throwing yourself overboard.

Correct!
Thanks for excellence.
Topic archived. No new replies allowed.