- create a directory junction
Code: Select all
mklink /J link target
Code: Select all
setx VAGRANT_HOME c:/users/link
I had to change slightly vagrant configuration file
- Adapt number of processors and memory allocated
- set variables name and email of my github repo (I overlooked these two at first place)
When everything was done I was able to compile and "vagrant ssh" to the VM.
However I struggled to get this done with ssh in windows shell. After installation of openssh, after long searches I was able to ssh
Code: Select all
ssh -i c:\HashiCorp\debian-domoticz/.vagrant/machines/vgdomoticz/virtualbox/private_key -p 2222 [email protected]
Code: Select all
ip addr show
Code: Select all
config.vm.network "public_network", ip: "192.168.21.105"
Code: Select all
ssh -i c:\HashiCorp\debian-domoticz/.vagrant/machines/vgdomoticz/virtualbox/private_key [email protected]
Code: Select all
config.vm.network "public_network", ip: "192.168.56.105"
Code: Select all
ssh -i c:\HashiCorp\debian-domoticz/.vagrant/machines/vgdomoticz/virtualbox/private_key -p 2222 [email protected]