til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

Mount a shared folder

You can mount folders from your host operation system (OSX). This is useful if Fusion is used in your development proces.

sudo apt-get install open-vm-tools
sudo mkdir /mnt/hgfs
sudo mount -t vmhgfs .host:/ /mnt/hgfs

Requires VMware Tools, see also my til on installation.

References