Intro to Virtualization - raisercostin/software-wiki GitHub Wiki
Kubernetes
- kubernetes on Windows10 - https://gist.github.com/AdamLJohnson/16b55b66c84ce53868b3923f3b7ae706
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
- vagrant folder (the one where you cloned) is automatically shared with the windows at
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
- Virtual machines (https://en.wikipedia.org/wiki/Comparison_of_platform_virtualization_software)
- VirtualBox
- Vagrant
- HyperV (Windows)
- VMware (Windows, Mac)
- Parallels (Mac)
Existing Images
- Where to find images:
- windows: https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/ "Test Microsoft Edge and versions of IE8 through IE11 using free virtual machines you download and manage locally." The password to your VM is "Passw0rd!"
Create Own Images
You can create your own images. VirtualBox can create them with the free version.
Windows on Vagrant
Windows
Some tutorials here:
- https://www.extremetech.com/computing/198427-how-to-install-windows-10-in-a-virtual-machine
- https://superuser.com/questions/961322/find-a-windows-10-iso-to-install-it-in-a-virtual-machine