vote up 0 vote down star

Not exactly programming related...

I've built the program, some basic opengl, then run it and sh: /blabla permission denied. How can I make that dissaper?

the program just makes a rotating square and I have ubuntu 9.4

just found out that even int main(){} doesn't work

flag
What are the permissions on the program's file? – Milen A. Radev Jun 17 at 11:08
Try chmod 777 :P – WebDevHobo Jun 17 at 11:17
What exactly is the command you are entering? – Svante Jun 17 at 12:06
run button in codeblocks, ./test after I do cd ... and double click. None of them work – csiz Jun 17 at 12:31

6 Answers

vote up 1 vote down

How are you compiling it? Can you post the makefile? If you run

chmod +x myPorgram
./myProgram

something changes?

link|flag
I'm compiling with codeblocks. And I tried that nothing, tried with sudo and still nothing. – csiz Jun 17 at 11:22
vote up 0 vote down

G'day,

Couple of questions:

  1. Are the permissions set correctly on the file?
  2. Is the path to any interpreter set correctly?
link|flag
I don't know about those things... it only happens on the new computer I had same compilaer same ubuntu and there it just runs – csiz Jun 17 at 11:12
vote up 0 vote down

Apart from the above mentioned chmod +x file, another problem might be a missing library. To check the required libraries, use ldd:

$ ldd /bin/sh
    linux-vdso.so.1 =>  (0x00007fffb43fe000)
    libc.so.6 => /lib/libc.so.6 (0x00007fc4abe11000)
    /lib64/ld-linux-x86-64.so.2 (0x00007fc4ac183000)

If one of these lines shows a missing library, you'll know what needs to be installed before you can run your program.

Another possibility is if your program is a script (shell, perl, python or other text-based program). The first line looks like:

#!/usr/bin/perl

If that file cannot be found, you'll get a permission denied error.

link|flag
not a dynamic executable hmmm but in the permission page the executable option is marked and also i did the chmod +x on it... Though I doubt there are extra libraries needed for int main(){} – csiz Jun 17 at 11:33
"Not a dynamic executable" ? Can you show us how you are compiling your program ? Please also do a "file yourexefile", this should say something like $ file /bin/bash /bin/bash: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, stripped Regarding the extra libraries, having just main(){} doesn't mean anything, if it was compiled with the opengl libs, they'll be required to run the program. – Eric Darchis Jun 17 at 11:52
I'm hitting the build button in codeblocks... that worked on the other computer untill now, I also compiled without any libraries linked and it didn't run. The file test : test: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, not stripped – csiz Jun 17 at 12:25
vote up 0 vote down

Try executing the command with strace to trace the successful system calls it makes and where it stops.

This is how you might launch it,

strace ./blabla

Do you get a "permission denied" error or something like "exec format error"? With chmod +rx on the file you should not hit "permission denied".

link|flag
vote up 0 vote down

You should also make sure that your username is in the video group. Check the /etc/group and make sure that your username appears on the "video" line.

link|flag
vote up 0 vote down

Check the mountpoint to see if it's mounted as noexec by running "mount"

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.