Run ansible on WSL

Run ansible on WSL what is Ansible? basic fact: open-source configuration management/deployment tool written by Michael DeHaan and acquired by Red Hat in 2015 run as python as agentless on all Unix-like via SSH not running on window but can manage window host via winrm ansible playbook in YAML why …

How to manually download vagrant box and install it

find download path here is download link format: https://atlas.hashicorp.com/$boxrelease/providers/virtualbox.box from vagrant site find the release info https://app.vagrantup.com/ubuntu/boxes/artful64/versions/20171220.0.0 so $boxrelease=ubuntu/boxes/artful64/versions/20171220.0.0 this is real download link, https://atlas.hashicorp.com/ubuntu/boxes/artful64/versions/20171220.0.0/providers/virtualbox.box copy and paste to browser, will download, or from cli, $ curl -Lo ubuntu-artful64-vagrant.box https://atlas.hashicorp.com/ubuntu/boxes/artful64/versions/20171220.0.0/providers/virtualbox.box % Total % Received % Xferd Average Speed Time Time …

portabledevops deploy script

This is new portabledevops deploy script, to faster the portabledevops setup. place all-in-one portable customization setting to msys2/cygwin /etc/profile.d install docker toolbox locally to msys2/cygwin setup.sh deploy script running log sample launch msys2/cygwin bash shell from cmder or console $ cd ~ ; wget -qO- ‘https://raw.githubusercontent.com/robertluwang/portabledevops/master/setup.sh’ | sh Cloning into …

vagrant to boot up ubuntu 16.10

find out vagrant box for latest release Ubuntu 16.10 (Yakkety Yak) search Yakkety Yak from https://atlas.hashicorp.com/ubuntu will find below box: https://atlas.hashicorp.com/ubuntu/boxes/yakkety64 will see command for virtualbox: vagrant init ubuntu/yakkety64; vagrant up –provider virtualbox vagrant up $ cd ~/vagrant $ vagrant init ubuntu/yakkety64; vagrant up –provider virtualbox A Vagrantfile has been …

Portable vagrant on msys/cygwin

Vagrant is must have devops tool to quick build up dev , ops, test env. Here is practice how to make it portable on windows. 1) download and install to C:\Vagrant https://www.vagrantup.com/downloads.html 2) assume you have portable msys2 and cygwin, if not you can refer portabledevops. L:\portabledevops\msys64 L:\portabledevops\cygwin64 3) move …

Portable cygwin64 setup

install portable cygwin64 download cygwin64 from https://www.cygwin.com/setup-x86_64.exe move setup-x86_64.exe to L:\portabledevops\cygdev64 folder click setup-x86_64.exe only install wget, choice install folder and package folder to L:\portabledevops\cygdev64 it will install cygwin 64 core package. click Cygwin.bat , it will init cygwin setup dev packages launch bash shell from Cmder task tab cygdev64: …