ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Did you copy your workspace to a usb-stick with NTFS file system or zip file and back? The executable file flags get lost during this....
To solve this the easiest would probably be to rebuild your entire workspace. But delete the build and devel folders before because otherwise, if you did not make changes to the src files the build files will not be recreated.
i. e.
rm -r devel
rm -r build
catkin_make
rosrun HelloWC HelloWC_node
and everthing should work again