Let's go step by step: Install VMWare Configure VMWare Install Devstack 1. Installing VMware-Player-6.0.2-1744117.i386.bundle on Ubuntu 14.04 Get the Bundle from here: https://softwareupdate.vmware.com/cds/vmw-desktop/player/6.0.2/1744117/linux/core/ Download VMware Player in your home folder. You'll have to register before downloading (or search for some alternate download link). Note: if you're using Google Chrome, the downloaded file will have ".txt" extension - rename the extension to ".bundle". Now let's install the required dependencies and run the downloaded VMware .bundle file: Terminal:~$ sudo apt-get install build-essential linux-headers-`uname -r` 32 Bit: chmod +x VMware-Player-6.0.2-1744117.i386.bundle sudo ./VMware-Player-6.0.2-1744117.i386.bundle 64 Bit: chmod +x VMware-Player-6.0.2-1744117.x86_64.bundle sudo ./VMware-Player-6.0.2-1744117.x86_64.bundle The filename in the commands above may be different, d...