Skip to content

startup-systems/vm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

Startup Systems Virtual Machine

A common virtual machine (VM) for the class.

Goals

  • We don't want to waste time troubleshooting differing configuration for students' machines.
  • We cannot assume everyone will run a UNIX box (Linux, OSX, etc.).
  • We should make work doable locally as much as we can, for convenience reasons.

The idea is to have students run a VM on whatever their environment is, i.e. Windows, OSX or Linux.

What's included

  • Node.js
  • Python 3 + pip
  • Automatic Python virtual environment switching
  • Some sane Git default configuration

Installation

You will want to have a good internet connection for these. This should only need to be done once.

  1. If you’re on Windows, try the following, in order (find the first one that works for you):

    1. cmder
    2. conemu
    3. cygwin
  2. Install VirtualBox (5.1.2 or later).

  3. Install Vagrant.

  4. Download (or git clone) this repository to your computer.

    • Put it wherever you keep your other projects—we recommend a startup-systems folder.
  5. Run the one-time setup from a terminal (if on Windows, make sure you use the terminal you installed above going forward, e.g. cmder):

    cd path/to/this/repository/
    vagrant up
  6. The VM should now be running. You can verify this with vagrant status.

  7. Set up your SSH key for Git; you will need it later.

Guest vs host

The "host machine" is the operating system that your computer is running directly (likely Windows or OSX), whereas the "virtual machine" is the one running through Vagrant+VirtualBox, which will be Ubuntu (Linux).

Usage

host> means you run the command on your host computer, guest> means it should be run within the VM. Within the VM, the terminal prompt will actually look something like vagrant@vagrant:~$.

host> cd path/to/this/repository/

# Start the VM (if it isn't already running).
host> vagrant up

# Connect to the VM.
host> vagrant ssh
# You are now inside the guest VM.
guest>

# When you're done, go back to your host.
guest> exit
# Stop the guest VM (to recover CPU and memory resources on your host).
host> vagrant suspend

Working with repositories

To work with a Git repository within the VM:

  1. Start and connect to the VM—see instructions above.

  2. From within the VM, run:

    cd /vagrant
    # clone via SSH
    git clone git@github.com:startup-systems/<repository>.git
    cd <repository name>
  3. Run any of the commands around the assignment (git, python3, etc.) from within there.

Using a graphical editor

Vagrant lets you share folder between guest and host via the /vagrant folder by default. From the guest VM, you can write to the host machine under /vagrant. In other words, you can open the directory for this repository (vm/) in your editor on your computer (Sublime Text, Atom, etc.), and any added/changed files will appear in the /vagrant directory within the virtual machine. From your host machine, the directory structure will look like this:

vm/
- assignment1/
- assignment2/

Updating

If (you think) there have been changes to this repository on GitHub that aren't reflected in your local copy, do the following:

# go into this repository directory (on your host machine)
cd path/to/vm/repository/
# get the latest configuration
git pull https://github.com/startup-systems/vm.git master
# update your VM
vagrant provision

Troubleshooting

If you’re on Windows and you get a BIOS error, you may need to change a setting on your machine (in VirtualBox, Control Panel, and/or the BIOS itself) to allow virtual machines to run. Google the error and the make and model of your computer (e.g. "VT-x is disabled in the BIOS for both all CPU modes" sony vaio) to find how to enable virtualization. The problem is often that Intel Virtualization Technology needs to be enabled in your BIOS settings.

About

A common virtual machine (VM) for the class

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages