FastRobots-2023

ECE4160/5160-MAE 4190/5190: Fast Robots course, offered at Cornell University in Spring 2023

This project is maintained by CEI-lab

Virtual Machine Setup

Background

A virtual machine (VM) is an emulation of a computer system. It is a virtual environment that functions as a virtual computer system with its own CPU, memory, network interface, and storage, created on a physical hardware system.

For this course, you can use VirtualBox, a virtualization software for running the virtual machine. It is a general-purpose full virtualizer and allows to run a virtual machine.

Terminologies

Install VirtualBox

  1. Download and install VirtualBox. (~ 150 MB)

    For MacOS users: If your installation fails, your OS might have blocked it. Check out this guide for a fix.

Install the OS

  1. Download the preconfigured Ubuntu VM from here.

    The preconfigured Ubuntu 20.04 VM contains the necessary python packages installed. Since you are going to type all your code in an IDE or Jupyter lab, it doesn’t really matter if you are unfamiliar with Linux. md5sum: e2d488f1356492bf90bf555be2b60fa2

  2. Click on “File->Import Appliance” in Virtual Box and select the downloaded .ova file.
  3. In the next screen, select “Generate new MAC address for all network adapters” as the MAC Address Policy.
  4. Adjust the CPU and RAM allocations. Change CPU to the maximum number of CPUs in your machine and RAM to something above 8192MB (8GB).

    If you are unsure of your system specs, set CPU=2 and RAM=4096 MB. You can change this easily in a more informative GUI later on (Refer Tune your VirtualMachine).

  5. Click on Import.

To install Ubuntu 20.04 from scratch, download the ISO from here. You don’t need a license for FOSS! :D

You can install a Windows 10 VM, but you would have to setup everything from scratch. Obtain an educational license from Cornell OnThHub, download the installation media (.iso file), and install the OS in a virtual disk. Here is a guide that you can refer to setup a Windows 10 VM (some steps may vary).

Start your Virtual Machine

Click on the virtual machine you just created in the left pane in VirtualBox and then click on “Start” in the right pane.

Here is a visual walkthrough of Ubuntu 20.04.

Troubleshooting

VirtualBox Guest Additions

This step installs device drivers and system applications that optimize the guest operating system for better performance and usability. It is highly recommended that you finish this step successfully.

  1. Once the VM is running, from the VirtualBox menu bar select “Devices -> Insert Guest Additions CD Image”.

    NOTE: If you don’t see the menu bar, press “Right Control/Command + Home” on your keyboard. Check out this post for reference.

  2. Click on “Run” in the dialog box in the VM.
  3. The guest additions install process is completed when the window displays “Guest Additions: “Press return to close the window…”. Now, press the Return key.
  4. Restart your VM. You can do this by clicking on the power button on the top right corner in the VM.

Change VirtualBox display settings

  1. Once rebooted, you may change the resolution of the virtual machine to match your computer screen accordingly.
  2. You can also switch to full-screen mode by clicking on “View-> Full-screen mode” from the VirtualBox menu bar. You can experiment with the other two modes available in the View menu and figure out a workflow that works best for you.

NOTE: If you don’t see the menu bar, press the Right Control/Command + Home button together on your keyboard. Check out this post for reference.

Setup a shared folder between the Guest OS and Host OS

You can set up a shared folder to share files/folders within it between your Host OS and VM.

  1. From the menubar, click on “Machine -> Settings”.
  2. Select “Shared Folders” in the dialog box.
  3. Select a “Folder path” in the host OS that you want to share with your VM.
  4. Select “Auto Mount” and “Permanent” and click on “Ok”.

You should now see a folder appear on the desktop. If you don’t see this, open the file explorer and it should be listed on the left pane.

Tune your VirtualMachine

The VM is allotted a portion of your system resources (CPU, RAM, GPU, etc). You can tune these parameters to improve the VM performance. The VM is already configured with the minimum recommended settings. This step is to ONLY increase the system resource allocations if needed.

  1. Make sure your VM is shutdown.
  2. In VirtualBox, right click on your VM and click on Settings.
  3. Click on “System” in the left pane.
  4. In the “Motherboard” pane, increase the “Base Memory” slider to increase the allocated RAM.
  5. In the “Processor” pane, increase the number of allocated processors and the CPU execution cap. You cannot allocate more processors than what your system has.
  6. Select the “Display” option in the left pane.
  7. In the “Screen” pane, increase the “Video Memory” and select “Enable 3D Acceleration”.
  8. Make sure to press “OK” after making your changes.

Saving the Machine State

Instead of shutting down your VM, you can “Save the Machine State”. The next time you start your VM, it should resume from the previous state.

Working on Labs

NOTE: The relevant python packages for BLE have been installed at the system level in the VM. You do not need to use virtual environments.

Jupyter Lab

  1. Open a terminal (4th icon from the top in the Ubuntu dock).
  2. Navigate to the project directory (or the shared folder) containing the python project files.

    You can open the shared directory, right-click in an empty area and select “Open in Terminal” to open a terminal in the current directory. This way you can run Jupyter Lab from this directory to access the shared files from your Host OS.

  3. Run the following command in a terminal
       jupyter-lab
    

BLE Setup

  1. Plug in the external BLE USB adapter.
  2. After starting the VM, click on “Devices->USB” from the VirtualBox menu bar.
  3. Select the BLE USB adapter from the menu. Your BLE USB adapter should not be accessible in your VM.

    It should have the word “Broadcom” in it. If you notice errors in this step, unplug and replug the BLE USB adapter, and try again.

  4. Make sure Bluetooth is switched on in your Ubuntu VM. Open the Settings app (5th icon from the top in the Ubuntu dock), select “Bluetooth” from the right pane and switch it on.
  5. You will need to repeat these steps every time you start the VM.

Workflow

Choose a workflow that works best for you.

Workflow A

Copy your base code files from your Host OS into your shared folder. This way, you can edit the python (.py) files in an IDE/code editor on the host OS and edit the jupyter notebooks (.ipynb) in the Guest OS using Jupyter Lab. The Host OS also has access to the screenshots, screen recordings and logs saved by the python notebook (in the Guest OS) in the shared folder.

Workflow B

You can use the Guest OS like any other complete OS. Login to the appropriate websites to read documentation, download codebases and upload your work. This workflow is best suited for systems where the VM runs smoothly.

References:

  1. More VM Info
  2. Enable Viirtualization in your PC Bios
  3. Guest Additions
  4. Shared folders
  5. What is Ubuntu?
  6. More Virtualization Terms