Questions tagged [vagrant-windows]

The windows version of the vagrant tool.

The windows version of the vagrant tool.

Tutorial.

258 questions
34
votes
4 answers

How to automatically select bridged network interfaces in Vagrant?

What should I add in Vagrant file to prevent asking (after vagrant up command) Which interface should the network bridge to? Available bridged network interfaces: 1) Intel(R) 82579LM Gigabit Network Connection 2) VMware Virtual Ethernet Adapter…
aldrien.h
  • 2,707
  • 2
  • 17
  • 40
33
votes
11 answers

Vagrant Error: Unable to Mount VirtualBox Shared Folders (Guest Additions, vboxsf)

The Issue I installed Vagrant on Windows 10 so I can create a personal local development environment in a virtual machine. Everything I've read about Vagrant said I can even spin up multiple systems and test communication between them with NAT port…
15
votes
3 answers

Installing Composer with Vagrant

I have successfully installed Vagrant along with some boxes on my Windows PC. I got to say it works awesome, creating and destroying VM's with different configurations on the fly. The only problem I'm facing now is that I want to install composer.…
JasonK
  • 4,654
  • 9
  • 29
  • 58
14
votes
1 answer

Rsync on windows - dup() in/out/err failed

I am using Vagrant to manage virtual machines for developing purpose. My OS is Windows 10 and I am using Vagrant 1.9.1. Since default driver for folder syncing is slow i wanted to implement Rsync. To to that I used Cygwin and installed Rsyn and…
user2496520
  • 831
  • 4
  • 13
  • 32
13
votes
1 answer

Vagrant: missing file id_rsa

I'm using windows with homestead and I'm trying to enter vagrant up on the command line but I'm getting this error: C:/www/Homestead/scripts/homestead.rb:106:in read': No such file or directory @ rb_sysopen - C:/Users/Niall/.ssh/id_rsa…
Niall
  • 744
  • 9
  • 25
12
votes
4 answers

Vagrant Warning: Connection refused. Retrying

Testing default example $ vagrant init hashicorp/precise32 $ vagrant up My box: Windows 8.1 VirtualBox 5.0.2 Vagrant 1.7.4 Intel i7-4700MQ CPU witch seems to have Intel® Virtualization Technology (VT-x) …
Ben
  • 165
  • 1
  • 2
  • 12
11
votes
3 answers

vagrant won't start virtual machine - (Errno::EADDRNOTAVAIL)

I really hit a wall with this problem. I am on windows machine (with admin privileges) and I want to start setup my working environment with vagrant. Problem is that I am getting error (down bellow) and I can't find any solution... I am using latest…
jureispro
  • 1,152
  • 5
  • 19
  • 39
11
votes
2 answers

Vagrant error "The box 'hashicorp/precise32' could not be found..." windows 10 downloader exit status 3221225781

I'm getting this error on Windows 10: The box 'hashicorp/precise32' could not be found or could not be accessed in the remote catalog. If this is a private box on HashiCorp's Atlas, please verify you're logged in via `vagrant login`. Also, please…
benrifkah
  • 1,455
  • 16
  • 29
11
votes
4 answers

Vagrant up gives 'cygpath' Vagrant was not found in path

I've installed Vagrant, Vagrant init worked fine. When I now run Vagrant up I get this error: The executable 'cygpath' Vagrant is trying to run was not found in the %PATH% variable. This is an error. Please verify this software is installed and on…
user2354898
  • 233
  • 2
  • 14
10
votes
3 answers

vagrant up - Errno::EADDRNOTAVAIL with vagrant version 1.9.3

I have been trying to install Laravel Homestead and I have been following different tutorials but always when I reach the point where I have to execute vagrant up I recive this error: $ vagrant up Bringing machine 'homestead-7' up with 'virtualbox'…
thingNumber2
  • 123
  • 1
  • 7
9
votes
2 answers

How to set a remote connection to a Vagrant container using "Visual Studio Code Remote - SSH"?

I'm exploring the new set extensions called VSCode Remote Pack and I want to connect to a Vagrant container using the Remote Container extension. Using a Windows 10 OS, how could I do that? I tried the extension but it requests me to have Docker…
9
votes
2 answers

How to improve slow shared folders in vagrant

On my windows 7 I use: VirtualBox 5.0.20 Vagrant 1.9.1 vagrant-share (1.1.6, system) vagrant-winnfsd (1.3.1) I have an ubuntu vagrant box with some PHP software (piwik) which on a specific CLI command does some processing which involves files.…
cherouvim
  • 30,497
  • 14
  • 99
  • 144
9
votes
2 answers

In Vagrant, can I set a provisioner to only ever run manually?

In my Vagrantfile, I have a provisioner like so: config.vm.provision "reset", type: "shell", run: "always" do |s| s.privileged = false s.inline = "bash /path/to/my/reset/script.sh" end And when normally provisioning vagrant, it runs fine.…
skift
  • 979
  • 2
  • 12
  • 25
8
votes
2 answers

Vagrant Command Stopped Working: Command not Found on WIndows

I've been trying to fire up vagrant from the Homestead folder on Windows but keeps showing bash: vagrant: command not found I suppose it is an issue with configuration of commands on Windows Please, what can be done about this? Thanks in advance!
Samuel Cesc
  • 219
  • 1
  • 2
  • 12
8
votes
1 answer

vagrant - Vagrantfile: sync multiple folders

I have tried the following to sync multiple folders from host to guest machine. But only one folder is getting synced, the later one. config.vm.synced_folder "host/site1", "/var/www/site1" config.vm.synced_folder "host/site2", "/var/www/site2"
1
2 3
17 18