Git Bash + SSH: In Windows, you will need to install Git Bash + SSH this will give you a *nix shell that you can run *nix commands on, make sure that during the install you setup a shortcut on your desktop in order to access it quickly. … [Read more...] about How to install Git Bash + SSH in Windows
How to mount a Samba Share using Ubuntu
Now your local machine needs to know about the shared directory. Linux: In Ubuntu you can mount a samba share by using the Files application and clicking on File menu Connect to Server an enter your credentials and the share will be mounted. Now that the … [Read more...] about How to mount a Samba Share using Ubuntu
How to mount a Samba Share using OS X El Capitan
Now your local machine needs to know about the shared directory. OSX: On a Mac, you can mount a samba share by using the finder and clicking on Go then Connect to Server then enter your credentials which will mount the share. Now that the virtual machine is … [Read more...] about How to mount a Samba Share using OS X El Capitan
How to mount a Samba Share in Windows
Now your local machine needs to know about the shared directory. Windows: In a Windows 7 you can mount a samba share by using the Start Menu and clicking on Map network drive... and entering the location of the virtual machine along with the credentials which will … [Read more...] about How to mount a Samba Share in Windows
How to configure Samba Shares with Ubuntu
sudo vim /etc/network/interfaces auto eth1 iface eth1 inet static address 192.168.56.101 netmask 255.255.255.0 sudo reboot At this point you should have access to the machine via the terminal. ssh [email protected] The next part is to configure … [Read more...] about How to configure Samba Shares with Ubuntu
How to install Ubuntu Server
Installing Ubuntu with VirtualBox Before getting started with VirtualBox, you are going to have to grab a fresh copy of Ubuntu from their main site. Get a version that has LTS(Long term support). After the download is complete, you should have a file named … [Read more...] about How to install Ubuntu Server
How to install VirtualBox in Ubuntu / Linux
Start by going over to the main site for VirtualBox Downloads and selecting the following option VirtualBox 5.0 for Linux hosts. This link will take you to a selection for what type of Linux version you are using. In my case, I'm using an Ubuntu-based system. This … [Read more...] about How to install VirtualBox in Ubuntu / Linux
How to install VirtualBox in OS X El Capitan
OSX Start by going over to the main site for VirtualBox Downloads and selecting the following option VirtualBox 5.0 for OS X hosts this starts a download with a file name VirtualBox-5.*.dmg double-click the file and follow the setup wizard. This will require your … [Read more...] about How to install VirtualBox in OS X El Capitan
How to install VirtualBox in Windows
Windows Start by going over to the main site for VirtualBox Downloads and selecting the following option VirtualBox 5.0 for Windows hosts. This starts a download with a file name VirtualBox-5.*.exe. Double-click the file and follow the setup wizard. This will … [Read more...] about How to install VirtualBox in Windows
Introduction to Virtual Environments
Virtual Environment The main benefits of having and virtual environment to develop your application outside of having it installed on your main machine are that it gives you the power to experiment and try different experiments without necessarily having an … [Read more...] about Introduction to Virtual Environments