Skip to main content

VirtualBox VM setup

If you have not used a VM before, the idea is that you will be running an entire operating system inside a program (VirtualBox) that looks to the virtual guest operating system like real hardware. We provide a downloadable image of the guest OS with everything installed, so that you only need to do minimal setup to get started.

Note that since a VM contains a whole second operating system, the system requirements are high. The VM will take a bit over 512MB of ram (so you will probably want to have 2GB of total ram to keep Windows or Mac OS X running smoothly), plus a bit over 2GB of hard disk space.

Getting VirtualBox

Getting our VM image

  • Download our linux virtual machine image here. Note that this download is approximately 750MB.
  • Unzip the file into a convenient directory. The unzipped files are about 2GB, so make sure you have enough disk space available. If you are a Windows XP user and have trouble opening the zip file, try WinZip (shareware) or 7-Zip (free, open source) instead of the built-in zip support in Windows.
  • Once you have unzipped the VM, double-click on the file "Compilers.vbox". This should open the VM in VirtualBox.

Using the VM

  • The provided account is "compilers" and the password is "cool".
  • To start the VM, click the green "Start" button. This should make the VM boot.
  • To shut down the VM, click on the round "Bodhi" button at the bottom left and click System. Then choose Power Off.
  • We have installed what you need to do the assignments, plus a few other programs, such as vim and emacs. If you want to install other packages, you can use the Aptitude graphical package manager (under the Bodhi menu->Applications->Preferences) or the apt-get command line tool. If you are not familiar with these, there are many tutorials online that you can find through a quick Google search.
  • To get a terminal, click on the terminal icon at the bottom of the screen. This should get you to the point where you can start the assignments.

This VM is based on Bodhi Linux, which is itself based on the popular linux distribution Ubuntu. We used Bodhi Linux in order to keep the download size more manageable, since a full Ubuntu install is quite large. However, since it is based on Ubuntu, most Ubuntu software packages can be installed on Bodhi Linux as well.

If you have a problem that you cannot solve, please post in the course's Discussion forums.  This course is unmoderated, so your best resource in this course will be the documentation, the video lectures, and fellow participants in the Discussion forums. 

Downloading Grading Scripts and Making a Shared Folder

In order to complete the assignments for this course, you need to download the grading scripts for each assignment. Since this version of Bodhi doesn't support TLS, you need to set up a shared folder between your host operating system and the virtual machine. That way you can download the scripts to your host system and access them on your VM.

  • Go the VirtualBox home screen and click on the settings icon

an image of the VirtualBox homepage with the settings button circled in red

  • Go to the shared folders menu and click the "add" button

an image of the VirtualBox settings pane with the "Shared folders" tab and the "add new folder" butter circled in red

  • Select a path where you want your shared folder to be on the host system
  • Tick auto-mount

An image of the dialogue box for adding a new shared folder

  • Click Ok

An image of the VirtualBox settings menu with the "Ok" button circled in red

Using the Shared Folder

For this section, we're going to refer the name of your shared folder as <FolderName>. For instance, in the example above, <FolderName> refers to tmp.

  • Auto-mounted folders are in /media/sf_<FolderName>
  • If you didn’t tick auto-mount, you can mount a shared folder with the following:

$ sudo mkdir -p /media/sf_<FolderName>
$ sudo mount -t vboxsf -o rw,gid=vboxsf <FolderName> /media/sf_<FolderName>

  • To make the shared folder editable, you will need to run the following command and reboot the virtual machine.
$ sudo usermod -a -G vboxsf compilers
  • Now any files written to your shared folder will appear in both your virtual machine and your host machine. For ease of access, you can create a symbolic link from your shared folder into ~/cool with the following:

$ ln -s /media/sf_<FolderName> /home/compilers/cool/<Foldername>

  • To use the grading scripts, download the script for to your host machine's shared folder and run the following command, where <num> is the number of the programming assignment you want to download.
$ mv /media/sf_<FolderName>/pa<num>-grading.pl /home/compilers/cool/assignment/PA<num>
  • Now you can run the script by running the following in the assignment directory.
$ perl pa<num>-grading.pl