Intro to Virtualization - raisercostin/software-wiki GitHub Wiki

Kubernetes

Start a image

Windows 10 on VirtualBox via Vagrant

  • download box from: https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/ . Select vagrant as the platform.
  • add box: vagrant box add win10 "c:\Downloads\MSEdge - Win10_preview.box"
  • list local installed vagrant boxes: vagrant box list
  • bring a vagrant file locally: git clone https://github.com/jnyryan/vagrant-windows10 windows
  • start a vagrant box: cd windows;vagrant up
  • notes:
    • vagrant folder (the one where you cloned) is automatically shared with the windows at \\VBOXSVR\vagrant\. That is the perfect place to put kits.
    • Go to: Oracle VM VirtualBox>Devices>Install Guest Additions - and install the cd (to have better integration with guest system).
    • You might want to change the password from Passw0rd! to other one.
    • Install chocolatey: win>cmd>right click on Command Prompt>Run as Administrator then execute @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" (see https://chocolatey.org/install#install-with-cmdexe)
    • install via chocolatey in Administrator cmd: choco install /Y cmder irfanview keepass.install launchy MobaXTerm notepadplusplus.install teamviewer TotalCommander 7zip.install
In the end you should have:
Installed:
 - irfanview v4.44
 - totalcommander v9.0.1.20170417
 - mobaxterm v10.4
 - 7zip.portable v16.04
 - chocolatey-core.extension v1.3.1
 - cmder v1.3.2
 - teamviewer v12.0.83369
 - keepass.install v2.36
 - launchy v2.5.0.20140301
 - 7zip.install v16.4.0.20170506
 - vcredist2010 v10.0.40219.2
 - autohotkey.portable v1.1.26.01
 - chocolatey-uninstall.extension v1.2.0
 - notepadplusplus.install v7.5.1

Options

Existing Images

Create Own Images

You can create your own images. VirtualBox can create them with the free version.

Windows on Vagrant

Windows

Some tutorials here:

Resources