Closed PaulKlumpp closed 9 years ago
Hmm interesting. If it is working anyways, it should not be a problem. I have tested NÖN with Travis CI (which is running on Ubuntu) and on my home PC with Windows 8 and I am not having any of issues you have. That is really weird.
Try to see if your /tmp is mounted with the "noexec" option.
paul@dabura $ mount
...lots of other mounts were here...
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,noexec,relatime,size=8388608k)
...lots of other mounts were here...
It's normal and okay to mount /tmp with "noexec". My /tmp is with "noexec", that's why this error appears. Yes, it still runs fine so far, but who knows what might happen sometime later?
I think, you may close this issue. My guess is: At some point in the future, this issue will be re-opened.
Okay then, if it will cause any serious problems, I will reopen it. Closing for now.
Hi, I don't know if it is a real issue. The following shows the output at my systems. NÖN still starts the splash screen and the project is running fine.
As far as I know, this comes from the standard noexec attribute of modern Linux systems. "noexec" on /tmp mount is normal for security reasons. You can't rely on tmp being "exec".
What java projects usually do to counter this problem is using the property "java.io.tmpdir":
Examples: Using shared memory device, if available for the user:
or, using the actual program location for a tmp sub-directory:
More informational resources: