In this tutorial, you will deploy Lucida on your Mac. Once it is deployed, follow tutorial.pdf for demo. The entire process may take several hours.
As bonus, you will learn:
How to set up a Ubuntu virtual machine
How to execute some basic Linux commands
How to use Docker and Kubernetes
Download the Ubuntu 14.04 64-bit iso image from http://releases.ubuntu.com/14.04/. Docker does not work on a 32-bit OS, so please choose a 64-bit version. Simply download to your file system without extracting/unzipping. It may take a while
Install Parallel Desktop 11 for Mac from http://www.parallels.com/products/desktop/download/ and open it
It's done. Lucida is runnin in your virtual machine. Follow tutorial.pdf for demo.
If you want to remove Lucida along with Ubuntu, simply go back to the control panel of Parallel Desktop, right click the virtual machine, and select "Remove"
If you want to remove Lucida but keep using Ubuntu, run the following commands twice to stop and remove all the Docker containers currently running in the virtual machine:
dockerlist=$(docker ps -a -q)
if [ "${dockerlist}" != "" ]; then
for d in ${dockerlist}; do
echo "***** ${d}"
docker stop ${d} 2>&1 > /dev/null
docker rm ${d} 2>&1 > /dev/null
done
fi