- Install VirtualBox on your machine
- Disable login credential: $ VBoxManage setproperty websrvauthlibrary null
- Download and uncompress the following image https://s3.amazonaws.com/vmfest-images/ubuntu-10-10-64bit-server.vdi.gz
- Clone the image to the directory where you want it to be permanently stored:
$ VBoxManage clonehd /path/to/downloaded/ubuntu-10-10-64bit-server.vdi /path/to/permanent/location/ubuntu...-server.vdi
- This should produce a uuid for your new image. Keep it around
- Start VirtualBox (the GUI) and:
- Create an new image Linux - Ubuntu (64bit)
- Select "Use existing hard disk" and if your newly cloned image doesn't appear in the drop-down list, click on the folder icon and find the image in your hard disk (the one you just cloned)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; clojurescript-mode.el --- Minor mode for clojurescript code | |
;; Copyright (C) 2011 Hugo Duncan | |
;; | |
;; Authors: Hugo Duncan | |
;; Version: 0.1.0 | |
;; Keywords: languages, lisp, javascript | |
;; To run the compiler every time a cljs file is saved: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# register-vm.sh <path-to-vm> [<dest-dir>] (default dest-dir is ~/vmfest) | |
models_dir={$2-~/vmfest}/models | |
nodes_dir={$2-~/vmfest}/nodes | |
mkdir -p $models_dir | |
mkdir -p $nodes_dir | |
echo "Registering image $1" | |
source_path=$1 | |
file_name=$(basename $source_path) | |
dest_path=$models_dir/$file_name |