Difference between revisions of "Ruben-RV-ROS01"
From robotica.unileon.es
Line 22: | Line 22: | ||
==ROS Fuerte Installation on Ubuntu 12.04== | ==ROS Fuerte Installation on Ubuntu 12.04== | ||
===Sources.list Configuration=== | ===Sources.list Configuration=== | ||
− | + | ||
+ | First we need to add the repository | ||
<syntaxhighlight lang=Bash>sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu precise main" > /etc/apt/sources.list.d/ros-latest.list'</syntaxhighlight> | <syntaxhighlight lang=Bash>sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu precise main" > /etc/apt/sources.list.d/ros-latest.list'</syntaxhighlight> | ||
− | + | and setup the keys | |
<syntaxhighlight lang=Bash>wget http://packages.ros.org/ros.key -O - | sudo apt-key add -</syntaxhighlight> | <syntaxhighlight lang=Bash>wget http://packages.ros.org/ros.key -O - | sudo apt-key add -</syntaxhighlight> | ||
===Installation=== | ===Installation=== | ||
− | We | + | We need to refresh the cache of your package manager |
<syntaxhighlight lang=Bash>sudo apt-get update</syntaxhighlight> | <syntaxhighlight lang=Bash>sudo apt-get update</syntaxhighlight> | ||
− | + | In our case, we decide to install ros-fuerte-desktop-full that is recommended in the ROS web, but you can also install other as explained on the [http://wiki.ros.org/fuerte/Installation/Ubuntu web] | |
+ | |||
<syntaxhighlight lang=Bash>sudo apt-get install ros-fuerte-desktop-full</syntaxhighlight> | <syntaxhighlight lang=Bash>sudo apt-get install ros-fuerte-desktop-full</syntaxhighlight> | ||
− | |||
===Enviroment Configuration=== | ===Enviroment Configuration=== | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | Now we need to configure the enviroment variables | |
− | + | <syntaxhighlight lang=Bash>echo "source /opt/ros/fuerte/setup.bash" >> ~/.bashrc </syntaxhighlight> | |
− | + | For refresh the enviroment variables of your terminal you can reset it or type | |
− | + | <syntaxhighlight lang=Bash> . ~/.bashrc </syntaxhighlight> | |
− | + | ==Dynamic window algorithm== |
Revision as of 17:44, 11 September 2013
- Project name: Turtlebot robot indoor navigation
- Dates: July 2013 -
- Degree: Summer Research Residence
- Authors: Ruben
- Contact: runix404@gmail.com
- SVN Repositories:
- Tags: ROS, navigation, turtlebot
- Technologies: kinect, pcl, openni, c++, cmake, ROS
- State: Ongoing
Contents
ROS Fuerte Installation on Ubuntu 12.04
Sources.list Configuration
First we need to add the repository
sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu precise main" > /etc/apt/sources.list.d/ros-latest.list'
and setup the keys
wget http://packages.ros.org/ros.key -O - | sudo apt-key add -
Installation
We need to refresh the cache of your package manager
sudo apt-get update
In our case, we decide to install ros-fuerte-desktop-full that is recommended in the ROS web, but you can also install other as explained on the web
sudo apt-get install ros-fuerte-desktop-full
Enviroment Configuration
Now we need to configure the enviroment variables
echo "source /opt/ros/fuerte/setup.bash" >> ~/.bashrc
For refresh the enviroment variables of your terminal you can reset it or type
. ~/.bashrc