-
Notifications
You must be signed in to change notification settings - Fork 5
Updating Turtlebot to Ubuntu 16.04
Harley White edited this page Aug 22, 2018
·
11 revisions
Warning: Be sure to back up any work on the computer before you update it, as it will erase the disk.
If you already have a boot drive, skip this part.
Download this Ubuntu .iso file and put it onto the drive.
- Insert the boot drive into a USB port on the laptop you are updating.
- Start up the laptop and hold F12.
- When the menu comes up, select the USB option.
- After it boots up, run the "Install Ubuntu" program on the desktop.
- Select a language, connect to a wi-fi network (this can be done later as well, if you need a username and password it must be done elsewhere), choose to install updates and third party software.
- Choose to erase the disk. (This is the recommended option), then choose "Install now" and "Continue".
- Set up the settings on the next pages however you want. (Tufts Turtlebots use the username "turtlebot" and the standard passward. I've been naming the computers "turtlebot-[number]-[name]", as in "turtlebot-1-leonardo", but that isn't official yet.)
- When installation is finished, click "Restart now".
- Connect to wi-fi again.
- Run setup.sh from here to install a lot of important packages. (You can just make a new file and paste it in yourself, then do ./setup.sh in the command line.)
- Open ~/.bashrc with the command line and add this to the end: 'source /opt/ros/kinetic/setup.bash
- Close and re-open the terminal.
- Run the following commands to set up the catkin workspace.
mkdir -p ~/catkin_ws/src cd ~/catkin_ws/ catkin_make
[WIP]