mintty for portabledevops

mintty highlights most lightweight terminal emulator for Cygwin, MSYS or Msys2 re-sizable xterm scrollback lines almost unlimited copy/paste how to launch mintty give Git for Windows as example. you can double click git-bash.exe it calls bash –login -i; also start it from bat file which has more control: start .\usr\bin\mintty …

Portable HTML to PDF Tool

1) install wkhtmltopdf on windows7 https://downloads.wkhtmltopdf.org/0.12/0.12.4/wkhtmltox-0.12.4_mingw-w64-cross-win64.exe 2) make wkhtmltopdf portable move to $PORTABLEPATH/wkhtmltopdf/ add lines to /etc/profile.d/portabledevops.sh 3) remedy for pre tag text wrap which apply for code, config, table etc add pre-wrap to html 4) command line to convert html to pdf option –disable-smart-shrinking to avoid the font shrinking, …

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

Explore Docker wordpress nginx on Docker Windows

The purpose here: quick install and run all in one docker with nginx+php+mysql+wordpress eugeneware explore docker inside portable docker for windows Check here if you want to know how to make portable docker toolbox for windows. $ dockerstart installation docker images $ docker pull eugeneware/docker-wordpress-nginx Using default tag: latest latest: …

Portable nginx+php+mysql stack on windows msys

download nginx+php+mysql zip package and unzip without installation nginx-1.11.5.zip beta version on windows php-7.0.12-nts-Win32-VC14-x64.zip with php-cgi tool mysql-5.7.16-winx64.zip community server config nginx nginx.conf change doc root from html to www, create www folder under nginx place all app site in conf/conf.d folder and include them nginx.conf sample app site sample …