I'm a total beginner.
I installed Ubuntu on Windows 10. I need to run a script but when I type the command to run it I get this error
/bin/bash: bin/yadna : Permission denied.I tried sudo but the same error appears.
2 Answers
chmod +x filename to add execution permission.
You can also type the following into a search engine ;)
How to execute a file in Linux
I'm not sure how to fix this issue, but you can try a temporary fix by running sudo -s to become a superuser, and running the script from there.