Skip to content

Performing a Robot Installation

Why

A fresh robot-level install should only be done under the guidance of Hello Robot Support. This guide will lead you through a robot-level install, which can be used to:

  • Erase the previous OS and set up Stretch with an entirely fresh software stack
  • Erase a corrupted OS and set up Stretch with an entirely fresh software stack
  • Upgrade Stretch by installing the 20.04 software stack alongside the previous OS

Each OS installs on a separate partition on the hard drive. You can create as many robot-level installs (i.e. new partitions) as will fit in your robot's 500GB hard drive.

Currently, there are two available versions of the software stack, one with Ubuntu 18.04 LTS and another with Ubuntu 20.04 LTS. Ubuntu 18.04 LTS shipped on robots until summer 2022, and included software for ROS Melodic and Python2. Ubuntu 20.04 LTS, the newest software stack, comes with ROS Noetic, Python3, and experimental ROS2 Galactic software. You can look at your robot's About page in system settings to identify which OS it is running.

How

There are a few steps to performing a new robot install:

  1. Backup robot configuration data
  2. Setup the BIOS (only necessary for NUCs not previously configured by Hello Robot)
  3. Install Ubuntu 18.04 or 20.04
  4. Run the new robot installation script

It typically takes ~2 hours to go through these steps and complete a new robot install.

Back up robot configuration data

It is a good idea to backup all valuable data beforehand. If your new robot install will replace a previous one, data from the previous robot install will be deleted. Even if your new robot install will live alongside the previous one(s), data from the previous robot install(s) can be lost.

In particular, your new robot install will require the old install's robot calibration data. The steps to copy this material from an existing install is:

  1. Boot into the robot's original Ubuntu partition and plug in a USB key.
  2. The robot calibration data lives inside of a directory called stretch-re<y>-<xxxx>, where <y> is your robot model number (1 or 2), and <xxxx> is your robot's serial number. There's a few versions of this directory and you will need to decide which version to backup. Each Ubuntu user has a version of this directory located at /home/$USER/stretch_user/stretch-re<y>-<xxxx>. These user versions are updated when the user runs a URDF calibration, swaps out an end effector, updates Stretch parameters, and more. There's also a system version located at /etc/hello-robot/stretch-re<y>-<xxxx>, which is likely the oldest version since it was created at Hello Robot HQ. If you're not sure which version to backup, use the version at /etc/hello-robot/stretch-re<y>-<xxxx> for the next step.
  3. Copy the stretch-re<y>-<xxxx> directory, where <xxxx> is your robot's serial number, to a USB key.
    • For example, if you're copying the system version, you can run a command similar to cp -r /etc/hello-robot/stretch-re<y>-<xxxx> /media/$USER/<USBKEY> from the command line, where <USBKEY> and <xxxx> is replaced with the mounted USB key's name and the robot's serial number, respectively.
    • Or, you can open the file explorer to copy the directory.

If your previous partition is corrupted or inaccessible, contact Hello Robot support and they will be able to supply an older version of the stretch-re<y>-<xxxx> directory.

Setup the BIOS

This step can be skipped if your robot had an existing software install on it. Otherwise, follow the guide to set up the BIOS.

Install Ubuntu

Choose between the following guides based on whether you're installing Ubuntu 18.04 or Ubuntu 20.04 (see above for info on what software ships with each OS). Within these guides, you'll have the choice of whether to replace the previous OS partition or to install alongside it. If you choose to install alongside it, you'll also be able to choose the size of each partition on the hard drive.

After the Ubuntu install, the default hello-robot user account will be set up.

Run the new robot installation script

Login to the hello-robot user account on your new Ubuntu partition, open a terminal, and run:

sudo apt update
sudo apt install git zip

Note: The system may not be able to run 'apt' immediately after a reboot as the OS may be running automatic updates in the background. Typically, waiting 10-20 minutes will allow you to use 'apt' again.

Next, place the robot's calibration data in the home folder using the following steps:

  1. Plug in the USB key that contains the backed up calibration data.
  2. Copy the stretch-re<y>-<xxxx> directory, where <xxxx> is your robot's serial number, from the USB key into the home folder (i.e. /home/$USER/).
    • For example, you can run a command similar to cp -r /media/$USER/<USBKEY>/stretch-re<y>-<xxxx> /home/$USER/ from the command line, where <USBKEY> and <xxxx> are replaced with your USB key's name and your robot's serial number, respectively.
    • Or, you can open the file explorer to copy the directory.

Next, pull down the Stretch Install repository and being the installation process:

cd ~/
git clone https://github.com/hello-robot/stretch_install
cd stretch_install
git pull
./stretch_new_robot_install.sh

Once the script has started, it will ask you for your robot's serial number, Y/N confirmation, and the password. Then, the script will typically take 20-30 minutes to complete on a wired connection. Once it finishes, it should print out something similar to:

#############################################
DONE! COMPLETE THESE POST INSTALL STEPS:
 1. Perform a FULL reboot by power cycling the robot
[...]
#############################################

If it has not printed out 'DONE', then the robot install did not complete successfully. Take a look at the troubleshooting section below for solutions to common issues, or contact Hello Robot support via email or the forum.

Post install steps

Next, we'll complete the post install steps. First, in order for the many changes to take effect, the robot will need a full reboot. The steps are:

  1. Ensure there's a clamp under the lift
  2. Shutdown the Ubuntu OS through the GUI or use sudo shutdown -h now in the terminal
  3. Turn the power switch in the robot's trunk to the off position (orange power LED becomes unlit)
  4. Ensure a keyboard/monitor is plugged into the robot. When the robot powers up, you can use the keyboard to decide which OS to boot into.
  5. Turn the power switch in the robot's trunk to the on position (orange power LED becomes lit)
  6. Boot into the new Ubuntu partition and log in if necessary

Next, we'll ensure the robot's parameter YAML files are migrated to the new parameter management system (see https://forum.hello-robot.com/t/425/ for details).

RE1_migrate_params.py

Next, we'll ensure the robot's contact parameters are migrated to the new contact threshold system (see https://forum.hello-robot.com/t/476/ for details).

RE1_migrate_contacts.py

Next, we'll ensure the robot's firmware is upgraded to the latest available. Newer firmware unlocks new features (e.g. waypoint trajectory following, which is used in ROS2 to support MoveIt2) and fixes bugs. See the firmware releases for details.

REx_firmware_updater.py --install

Next, if your robot has the Stretch Dex Wrist, we'll configure the software to recognize it. Skip this step if you are not using the Dex Wrist.

cd ~/stretch_install
./stretch_new_dex_wrist_install.sh
REx_calibrate_guarded_contact.py --arm

Finally, execute the following to confirm the new robot install was set up successfully.

stretch_robot_system_check.py

Your robot is now configured with a new robot install! In order to set up new users on this robot install, see the Adding a New User guide.

Troubleshooting

This section provides suggestions for common errors that occur during installation. If you become stuck and don't find an answer here, please email us or contact us through the forum.

'Expecting var HELLO_FLEET_ID to be undefined' error

If you are seeing the following error:

[...]
Checking ~/.bashrc doesn't already define HELLO_FLEET_ID...
Expecting var HELLO_FLEET_ID to be undefined. Check end of ~/.bashrc file, delete all lines in 'STRETCH BASHRC SETUP' section, and open a new terminal. Exiting.

#############################################
FAILURE. INSTALLATION DID NOT COMPLETE.
[...]

You are performing a new robot install on a robot that has already gone through the robot install process. If this is intentional, you will need to manually delete lines that a previous robot install appended to the ~/.bashrc dotfile. Open the ~/.bashrc file in an editor and look near the end for a section that looks like:

######################
# STRETCH BASHRC SETUP
######################
export HELLO_FLEET_PATH=/home/ubuntu/stretch_user
export HELLO_FLEET_ID=stretch-re1-2000
export PATH=${PATH}:~/.local/bin
export LRS_LOG_LEVEL=None #Debug
source /opt/ros/noetic/setup.bash
#source /opt/ros/galactic/setup.bash
source /home/ubuntu/catkin_ws/devel/setup.bash
[...]

Delete this section from the ~/.bashrc. Note that it's common for other programs (e.g. Conda, Ruby) to append to your ~/.bashrc as well, and deleting those lines accidentally can impede their functionality. Take care to only delete lines related to 'STRETCH BASHRC SETUP' section. Next, open a new terminal. Every new bash shell (i.e. the terminal you open when searching for 'Terminal' in system applications) automatically runs the commands in the ~/.bashrc dotfile when opened, so the new terminal won't be set up with the lines that were just deleted. Now you can run a new robot install and this error should gone.

'Expecting stretch-re1-xxxx to be present in the home folder' error

If you are seeing the following error:

[...]
Checking robot calibration data in home folder...
Expecting backed up version of stretch-re1-xxxx to be present in the the home folder. Exiting.

#############################################
FAILURE. INSTALLATION DID NOT COMPLETE.
[...]

The install scripts exited before performing the robot install because it was unable to find the robot's calibration data folder, 'stretch-rey-xxxx'. Please ensure you have backed up your robot's calibration data to a USB key and copied the 'stretch-re1-xxxx' folder to the home folder of your new partition. See the Run the new robot installation script section for more details. Then, run the install scripts again and the error should be gone.

'Repo not up-to-date' error

If you are seeing the following error:

[...]
Checking install repo is up-to-date...
Repo not up-to-date. Please perform a 'git pull'. Exiting.

#############################################
FAILURE. INSTALLATION DID NOT COMPLETE.
[...]

The version of Stretch Install being used is out of date. In a terminal, go to the Stretch Install folder (should be in the home folder: cd ~/stretch_install), and perform a git pull to pull down the latest version. If the git pull fails, ensure Stretch Install has a clean working tree using git status. If you see any red files, save them if important, delete Stretch Install, and reclone it.

'Failed to fetch' error

If you are seeing the following error:

Install <some package>
E: Failed to fetch <url to some .deb file>  Connection failed [IP: <some IP address>]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

#############################################
FAILURE. INSTALLATION DID NOT COMPLETE.
[...]

Ubuntu's system package manager, Apt, has failed to contact the server that hosts some package that the install scripts need to download. Typically, these issues are transient and waiting some time before rerunning the install script will solve the issue.

'Firmware protocol mismatch' error

If you are seeing the following error:

----------------
Firmware protocol mismatch on hello-<X>.
Protocol on board is p<X>.
Valid protocol is: p<X>.
Disabling device.
Please upgrade the firmware and/or version of Stretch Body.
----------------

Your version of Stretch Body does not align with the firmware installed with your robot. It's recommended that Stretch Body is first upgraded to the latest version available (but if you're intentionally running an older version, you can skip this step and the firmware updater will downgrade your firmware appriopriately). To upgrade Stretch Body, follow the instructions here.

Next, run the firmware updater tool to automatically update the firmware to the required version for your software.

REx_firmware_updater.py --install

The firmware mismatch errors should now be gone.

Homing Error

If using stretch_robot_home.py does not result in the robot being homed, try running the command again. If this does not work, try shutting down the robot, turning off the robot with the power switch, waiting for a few seconds, and then powering it on again. Then, try stretch_robot_home.py again.

ROS Launch File Fails

ROS launch files have nondeterministic behavior. Sometimes they need to be run more than once for the nodes to start in a successful order that works. For example, a common symptom of a failed launch is the visualization of the robot's body appearing white and flat in RViz.