Revision 1 as of 2011-01-14 02:29:51

Clear message

Ubuntu install of C turtle PR2 Desktop

Important: these instructions describe installing PR2-specific software on your desktop or laptop. It does not cover installing ROS on a PR2. For PR2-related service information and tutorials, please see the PR2 Support Site.

Installation

Configure your Ubuntu repositories

Configure your Ubuntu repositories to allow "restricted," "universe," and "multiverse." You can follow the Ubuntu guide for instructions on doing this.

Setup your sources.list

Setup your sources.list file to accept Debian packages from the ROS server.

Configure your Ubuntu repositories

Configure your Ubuntu repositories to allow "restricted," "universe," and "multiverse." You can follow the Ubuntu guide for instructions on doing this.

Setup your sources.list

Setup your computer to accept software from ROS.org.

  • Ubuntu 10.04 (Lucid)

    • sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu lucid main" > /etc/apt/sources.list.d/ros-latest.list'

    Ubuntu 10.10 (Maverick)

    • sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu maverick main" > /etc/apt/sources.list.d/ros-latest.list'

    Ubuntu 11.04 (Natty)

    • sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu natty main" > /etc/apt/sources.list.d/ros-latest.list'

Set up your keys

  • wget http://packages.ros.org/ros.key -O - | sudo apt-key add -

Mirrors

Set up your keys

  • wget http://code.ros.org/packages/ros.key -O - | sudo apt-key add -

Installation

Make sure you have re-indexed the ROS.org server:

  • sudo apt-get update

Choose your preferred install:

  • PR2: ROS plus PR2-specific stacks, including PR2 simulator.

    • sudo apt-get install ros-diamondback-pr2

      or click here

    • Note: You will get a prompt about hddtemp: you can safely answer no to the prompt if you are not installing on an actual PR2. To avoid getting the prompt, you can set the debconf selection ahead of time:

      • echo "hddtemp hddtemp/daemon boolean false" | sudo debconf-set-selections

    PR2 All: ROS plus PR2 and bleeding edge research/experimental stacks.

    • sudo apt-get install ros-diamondback-pr2all

      or click here

    • Note: You will get a prompt about hddtemp: you can safely answer no to the prompt if you are not installing on an actual PR2. To avoid getting the prompt, you can set the debconf selection ahead of time:

      • echo "hddtemp hddtemp/daemon boolean false" | sudo debconf-set-selections

Environment setup

It's convenient if the ROS environment variables are automatically added to your bash session every time a new shell is launched:

echo "source /opt/ros/diamondback/setup.bash" >> ~/.bashrc
. ~/.bashrc

If you have more than one ROS distribution installed, ~/.bashrc must only source the setup.bash for the version you are currently using.

If you just want to change the environment of your current shell, you can type:

source /opt/ros/diamondback/setup.bash