﻿id,summary,reporter,owner,description,type,status,component,version,resolution,keywords,cc,guest,host
12588,"VirtualBox crashes when running ""npm install"" -> duplicate of #11649",machete143,,"I use vagrant provisioning for VirtualBox but there seems to be an issue with ""npm"" (nodejs). This problem exists only on my Windows 7 host, on Mac OS X this works fine!

I've disabled vagrant provisioning and just used vagrant for setup with:

{{{ vagrant up --no-provisioning }}}

After that, I conntected to the vm using

{{{ vagrant ssh }}}

After this, i ran

{{{ npm -g install bower }}}

This crashed the VM. But it is not important which package I install.

{{{ npm install }}}

crashes regardless of the package I'm trying to install.

So, here are some logfiles!

VBox.log: https://gist.github.com/arekkas/8319356

npm-debug.log: https://gist.github.com/arekkas/8319277

vagrant.log: https://gist.github.com/arekkas/8318589

The host is Windows 7 64 Bit, the Guest is Ubuntu precise 32Bit.

My gist config is:

{{{
# -*- mode: ruby -*-
# vi: set ft=ruby :

# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = ""2""

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|  
  config.vm.box = ""http://files.vagrantup.com/precise32.box""
  config.vm.box = ""precise32""
  config.vm.provision :shell, :path => ""bootstrap.sh""
  config.vm.network :forwarded_port, host: 4567, guest: 80
  config.vm.network :forwarded_port, host: 3456, guest: 3306
  config.vm.synced_folder ""../"", ""/var/www"", :owner => ""www-data"", :group => ""www-data"", type: ""nfs""
end
}}}

I'd be happy to help with this issue as best as I can, because we really need the setup for our develop environment.",defect,closed,other,VirtualBox 4.3.6,duplicate,,,Linux,Windows
