보드에 코드 입히고 ROS 실행시키는 법
·
카테고리 없음
자주 사용하는 명령어를 단축 명령어로 만드는 과정 $ gedit ~/.bashrc bash 함수 열고 # Set ROS Kinetic(or Melodic) source /opt/ros/kinetic/setup.bash source ~/catkin_ws/devel/setup.bash # Set ROS Network export ROS_HOSTNAME=xxx.xxx.xxx.xxx export ROS_MASTER_URI=http://xxx.xxx.xxx.xxx:11311 (roscore를 실행할 pc의 ip주소) # Set ROS alias command alias cw='cd ~/catkin_ws' alias cs='cd ~/catkin_ws/src' alias cm='cd ~/catkin_ws && cat..