Skip to content

Configure a robot from scratch

Corrie Van Sice edited this page Feb 13, 2023 · 34 revisions

Install Ubuntu

You will need:

  • a usb drive
  • to be located on the UT network

Initial Install from USB

Install Ubuntu according to the official instructions.

Use Ubuntu 18.04 LTS release and don't connect to WiFi for the initial installation.

Create the username bwilab with the correct password, and fill in the appropriate host name. If you need to make up a new one, pick an unused Futurama character.

Do not create user bwi, that is defined via LDAP.

After initial installation completes, remove USB key and reboot.

Upgrade and Install Packages

After reboot, log in as bwilab, update the apt repository and upgrade packages with

sudo apt update && apt upgrade -y

You may need to restart your system to use all the device drivers properly.

Install NVIDIA Drivers

The easiest method for installing the NVIDIA graphics card divers is to use the Ubuntu Software & Updates application. Choose this application from the applications list, and select the "Additional Drivers" tab.

Choose "NVIDIA driver metapackage from nvidia-driver-*(proprietary, tested)".

Then select the "Apply Changes" button to install and apply the selected drivers. The NVIDIA drivers require restart and may also require accepting the MOK on secure boot.

Add Some Useful Ubuntu Packages

Add the Google Chrome and ROS repositores:

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - 
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >  /etc/apt/sources.list.d/google.list'

sudo apt-key adv --keyserver hkp://pool.sks-keyservers.net --recv-key 0xB01FA116
sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'

Install some more packages:

sudo apt-get update
sudo apt-get install emacs gnome-tweak-tool openssh-server terminator vim nano git mercurial sshfs subversion libtbb-dev build-essential

(add vs code to this list)

The latest supported version of ROS is Melodic which works best on Ubuntu 18.04. If using a newer version of Ubuntu OS, use the bwi-docker image. Otherwise, you can install Melodic locally according to the ROS install documentation.

Install CUDA Toolkit

Version: CUDA Toolkit 11.8

Visit https://developer.nvidia.com/cuda-downloads and enter the following configuration to get install instructions:

OS: Linux
Architecture: x86_64
Distribution: Ubuntu
Version: 18.04
Installer type: ded(local)

Configure the bwilab user account

For "bwilab" to be able to run the robot, it must belong to the "dialout" group:

sudo usermod -a -G dialout bwilab

For the robot to have authorized access to the lab server: build, install, and configure the "bwi_lab" repository. You must be logged in as "bwilab" for this step.

The instructions are here.

Configure smallDNS

Follow the client installation instructions to configure SmallDNS.

Manually Configure Network

Wireless

Robots connect to the utexas-iot wifi network. LARG lab uses a lab EID to manage devices and their passwords for this network. If you are setting up a computer that was previously connected, then it likely already has a password assigned, which can be found at network.utexas.edu and logging in with the LARG group EID.

To add a new device, locate the computer's wifi interface mac address in the details for device named wlp* in the list provided by the following command:

ip a

Add the device to the LARG group utexas-iot wireless devices. If you do not know the password for LARG utexas-iot devices, ask a Research Engineer or lab faculty to share the credentials over the UT Stache password manager. After adding the new device to the wireless devices list, use the generated password to login to the utexas-iot wi-fi.

Ethernet

Finally, we may need to manually configure some Ethernet ports, depending on the devices attached.

These are done using the graphical network manager, so it will be easy to switch back to wired Internet connection, if needed.

Segway RMP 110 Base

For the Ethernet-attached Segway bases:

In network manager, "Edit connections...", then select the correct "wired connection". Unfortunately, that may require some trial and error. Try connecting the Ethernet wire first, and see if one of the connections shows up highlighted.

Connection Name: Segway RMP 110
IPv4 Settings: Manual
address: 10.66.171.1
netmask: 255.255.255.0
gateway: <blank>

Select "require IPv4 addressing for this connection to complete".

Hokuyo Laser

For an Ethernet-attached Hokuyo laser:

In network manager, "Edit connections...", then select "wired connection 1".

Connection Name: 192.168.0.X
IPv4 Settings: Manual
address: 192.168.0.1
netmask: 255.255.255.0
gateway: <blank>

Select "require IPv4 addressing for this connection to complete".

For machines with a Velodyne LIDAR attached, configure it on a separate port, following these directions:

Setup LDAP Client for User Authentication

LDAP stands for Lightweight Directory Access Protocol. We use it to share user and group identifiers within the lab.

Install Packages

sudo apt-get install libnss-ldapd libpam-ldap nscd

You will be asked some configuration questions. Answer them carefully.

For LDAP: Set the server URI to:

ldap://nixons-head.csres.utexas.edu/bwildapadmin

Make sure it's not “ldapi:”.

Set the server LDAP search base to:

dc=nixons-head,dc=csres,dc=utexas,dc=edu

For libnss-ldapd configuration, select: “group”, “passwd”, and “shadow”.

Set the LDAP version to 3.

Again, set the server URI to:

ldap://nixons-head.csres.utexas.edu/bwildapadmin

And again, set the distinguished name of the search base:

dc=nixons-head,dc=csres,dc=utexas,dc=edu

Make local root Database admin: Yes

Does the LDAP database require login? No

LDAP account for root:

cn=admin,dc=nixons-head,dc=csres,dc=utexas,dc=edu

Set the LDAP root account password to the appropriate value.

If you make a mistake and need to change a value, go through the menu again by issuing this command:

sudo dpkg-reconfigure ldap-auth-config

Configure LDAP

Edit the /etc/ldap.conf file:

sudo vim /etc/ldap.conf

# Make sure local logins still work, even when networking
# is disabled for some reason (e.g. while booting).
timelimit 120
bind_timelimit 120
idle_timelimit 3600
# This leads to a delay of 124 seconds (4+8+16+32+64=124)
# per lookup if the server is not available.
nss_reconnect_tries 5         # no. of times to double the sleep time
nss_reconnect_sleeptime 4     # initial sleep value
nss_reconnect_maxsleeptime 64 # max sleep value to cap at
nss_reconnect_maxconntries 2  # how many tries before sleeping

Make sure there is a final newline at the end.

Edit the /etc/pam.d/common-session file:

sudo vim /etc/pam.d/common-session

Before the "session optional pam_ldap.so" line, add this:

session required    pam_mkhomedir.so skel=/etc/skel umask=0022

This will create a home directory on the client machine when an LDAP user logs in who does not have a home directory.

Restart the service for these changes to be implemented:

sudo /etc/init.d/nscd restart

Test LDAP

Login using your own LDAP user account:

ssh joq@localhost

Give the correct password. Verify the home directory, and group memberships:

$ id
uid=10047(joq) gid=10000(bwi) groups=10000(bwi),20(dialout),27(sudo),10002(fri)

$ pwd

   /home/users/joq

$ ls -l

   -rw-r--r-- 1 joq bwi 8980 Jul 15 18:05 examples.desktop

Or, something similar.

Logout using ^D or exit.

Set up SendMail SMTP Client

This step sets up a diagnostic emailer that allows the robot to state its current status. It is preferable that this is setup and working.

Setup Workspace and CodeBase

This is briefly described in Test Robot Installation section and won't be repeated here.

Run the Configuration Script

Inside your workspace, navigate to the segbot_sensors package. Within the root of this directory will be the script file 'sendmail_configure.sh'.

Execute this in a terminal with:

roscd segbot_sensors
sudo sh sendmail_configure.sh

It will query you for an email and password. This step is required for secure storage of the BWI email credentials -

email: utexas.bwi@gmail.com password: Ask around for this password

Note: ONLY the 'official' BWI gmail account should be entered here, NOT your own personal email.

Test the Sendmail Client

The script will run, possibly taking several minutes. Once completed, you can test the sendmail client to ensure that it has been setup correctly with the following command:

echo "Just testing my sendmail gmail relay" | mail -s "Sendmail Client Test" your.personal.email@company.com

If successful, you should receive an email from the official BWI Gmail account at the email address you replaced with 'your.personal.email@company.com'.

If unsuccessful, please open a github issue.

Test Robot Installation

Create a workspace, then install and build our core software as described here:

https://github.com/utexas-bwi/bwi/blob/master/README.md

Source the workspace, and install our custom UDEV rules:

source ~/catkin_ws/devel/setup.bash
rosrun segbot_bringup udev_install

Then reboot.

After that, login again and run the basic tests, as described here: Segbot Regression Testing

Clone this wiki locally