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: …

Portable msys64 setup

install msys64 download msys2-x86_64-xxx.exe from http://msys2.github.io/ install to default location C:\msys64 copy C:\msys64 to L:\portabledevops\msys64 uninstall msys64 from windows setup msys64 base launch msys2.exe from L:\portabledevops\msys64 folder, or launch bash shell from Cmder task tab msys2: cmd /c "%ConEmuDir%……\msys64\bin\bash –login -i" at bash shell, install necessary package for dev env …

Docker Toolbox for msys2

download docker toolbox for win https://www.docker.com/products/docker-toolbox install to default location copy docker.exe, docker-machine.exe, docker-compose.exe to your msys2 /usr/local/bin uninstall docker toolbox for win docker toolbox setting 1) make junction (directory hard link) for "Program Files", it will make easy to find VirtualBox tools from cmd.exe mklink /j C:\Program_Files “C:\Program Files” …

Docker Toolbox for cygwin

download docker toolbox for win https://www.docker.com/products/docker-toolbox install to default location copy docker.exe, docker-machine.exe, docker-compose.exe to your cygwin /usr/local/bin uninstall docker toolbox for win docker toolbox setting 1) make junction (directory hard link) for "Program Files", it will make easy to find VirtualBox tools mklink /j C:\Program_Files “C:\Program Files” Junction created …