Just installed Ubuntu 10.10. Previously I had Ubuntu 10.04. I have a shared partition between Ubuntu and Windows which is NTFS. I store my development files (Eclipse C++ project files) in that partition.
So here is the problem: with 10.04 everything was ok, but now I can't run any of my programs which reside in the NTFS partition. Eclipse says:
Error starting process.
Exec_tty error:Cannot run program "/media/../Eclipse/Hello/Debug/Hello": Unknown reason
When I try to execute it in a terminal it says:
bash: ./Hello: Permission denied
I understand that it is the permissions issue because NTFS filesystem do not support Unix permissions, but how it can be that on 10.04 was everything ok. Does this release add any restrictions for the NTFS filesystem?
Has anyone faced a similar problem and know how to fix this?
Thank you.
main.o
is an object file, not an executable, so you shouldn't be trying to execute it. What happens when you run the actual executable? – Kannry