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 …

Post setup for ubuntu desktop 17.04 vmware vm

vmware config 1 CPU 4G memory 100GB harddisk network: NAT test NAT Internet access oldhorse@ubdev:~$ cat /etc/resolv.conf # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND — YOUR CHANGES WILL BE OVERWRITTEN # 127.0.0.53 is the systemd-resolved stub resolver. # run …

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 …

New cygwin x86 2.881 setup not working

setup error when run setup-x86_64.exe 2.881, got this error no matter install from Internet or download then install from local, Unable to extract /etc/ — corrupt package? Unable to extract /etc/postinsall — corrupt package? setup.log 2017/09/11 07:56:22 Starting cygwin install, version 2.881 2017/09/11 07:56:22 User has backup/restore rights 2017/09/11 07:56:22 …

Post setup for ubuntu 17.04 vmware vm

download iso Ubuntu Server 17.04 is latest version of Ubuntu Server. https://www.ubuntu.com/download vmware config 1 CPU 4G memory 100GB harddisk network: NAT verify NAT internet access make sure can access to Internet root@ubuntu:~# cat /etc/resolv.conf nameserver 192.168.100.2 nameserver 127.0.0.53 search localdomain root@ubuntu:~# ping google.ca PING google.ca (172.217.9.3) 56(84) bytes of …

Post setup for Redhat/CentOS 7 vmware vm

download iso Red Hat Enterprise Linux 7.3 is free download for developers, you can get from here. You need to register for download, this account also needed for subscription after installation later on. https://developers.redhat.com/downloads/ CentOS 7 is community-driven free, kind of community version of RedHat. http://isoredirect.centos.org/centos/7/isos/x86_64/CentOS-7-x86_64-DVD-1611.iso vmware config 1 CPU …

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