Launch ubuntu18 dev vm from dreamcloud-ubuntu18

I build dreamcloud/ubuntu18 vagrant box as practice, it is a dev ready vm: Guest Tool, shared folder gcc/git/python3/pip3 Here is demo how to launch ubuntu18 vm from this base, add 2nd host-only interface for private network. Vagrantfile vagrant up /mnt/c/vagrant/ubuntu18$ vagrant.exe up Bringing machine ‘ubuntu18’ up with ‘virtualbox’ provider… ==> …

create ubuntu k8s vagrant box from dreamcloud-ubuntu17.10

launch ubuntu dev vm it is based on my dev ready vagrant box dreamcloud/ubuntu17.10. create project folder $ mdkir ~/vagrant/ub17k8sbox $ cd ~/vagrant/ub17k8sbox prepare the Vagrantfile, then boot up the vm, $ vagrant up $ vagrant ssh reset ssh keypair The reason I re-init ssh keypair for new vm ub17k8s …

launch ubuntu dev vm from dreamcloud-ubuntu17.10

launch ubuntu dev vm from dreamcloud-ubuntu17.10 I build [dreamcloud/ubuntu17.10]() vagrant box as practise, it is a dev ready vm: Guest Tool, shared folder ifupdown which removed from ubuntu 17.10 standard release gcc/git/python/pip Here is demo how to launch ubuntu vm from this base, add 2nd host-only interface for private network. …

create ubuntu 17.10 vagrant box from scratch

install ubuntu server 17.10 download iso from link create new vm memory 1024MB disk 50GB dynamic Audio, USB disable first NIC is NAT, 10.0.2.0/24 for Internet access, add port forward in virtualbox setting: 127.0.0.1:2220 to guest 22 user vagrant/vagrant NAT setup NAT NIC enp0s3 is up, 2: enp0s3: mtu 1500 …

docker hands-on guide: minikube with kvm on ubuntu 17.10 vm

kubectl installation oldhorse@ubdev:~$ curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 64.2M 100 64.2M 0 0 355k 0 0:03:05 0:03:05 –:–:– 83005 oldhorse@ubdev:~$ chmod +x ./kubectl oldhorse@ubdev:~$ sudo mv ./kubectl /usr/local/bin/kubectl verify by oldhorse@ubdev:~$ …

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 …

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 …

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 …