ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Jaime's profile - activity

2014-02-27 14:27:43 -0500 received badge  Famous Question (source)
2013-08-12 05:27:33 -0500 received badge  Notable Question (source)
2013-07-02 20:06:48 -0500 received badge  Popular Question (source)
2013-06-22 12:41:49 -0500 commented answer rosseria_arduino ros_lib permission denied

This actually solve the problem! I just insert a command to give me the permissions to write, read and execute the ~/sketchbook/libraries folder, it went like this: sudo chmod 777 ~/sketchbook/libraries. Thanks!

2013-06-22 12:41:23 -0500 received badge  Scholar (source)
2013-06-22 10:26:05 -0500 asked a question rosseria_arduino ros_lib permission denied

Hello, I'm new in ROS and I'm trying to setup rosserial arduino following the steps of the tutorial:

    cd <ws>/src
    git clone https://github[dot]com/ros-drivers/rosserial.git
   `cd <ws>`
  catkin_make
  catkin_make install
  source <ws>/install/setup.bash

    cd <sketchbook>/libraries
  rm -rf ros_lib
  rosrun rosserial_arduino make_libraries.py .

but when I enter the last command I get this error message:

OSError: [Errno 13] Permission denied: '/home/jaime/sketchbook/libraries/ros_lib'

I need to know what to do in this case. Thank you very much!

Apparently is about a permission to make a folder into the ~/sketchbook/libraries folderbecause I can run the same last code outside that folder and it works.

Thanks