ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I assume that both machines have the same instruction set architecture and run the same OS. Otherwise, it probably won't work.
Most likely, you do need the same ROS distro installed on both machines, A and B.
The simplest approach is using CMake to install your packages in a location that can be the same on each machine.
/opt/your_ros_install
.sudo make install
to allow installing there.scp
or tar
or some other technique.To run your installed ROS packages on either machine: source /opt/your_ros_install/setup.bash
.