"vagrant box add laravel/homestead" results in multiple errors -
setup
- windows 8.1
- latest virtualbox
- latest vagrant
what i've tried:
- reinstallation of vagrant
- running repair on vagrant
- rebooting pc
- restarting cmd prompt
i've tried installation 4 times, it's painful takes 45 minutes per box download on adsl connection.
can please advise?
this question answered on reddit here i'll add here in case others stumble across question.
this set of errors experienced when run out of disk space on drive vagrant uses store it's boxes , temporary download files. location defaults under users home directory (c:\users\matt\.vagrant.d
in questions case)
vagrant lets specify number of environment variables including location of vagrant_home
directory.
you can change running following in command prompt:
reg add hkcu\environment /v vagrant_home /t reg_sz /d "e:\vagrant\vagrant.d"
where e:\vagrant\vagrant.d
desired location.
alternatively can add environment variable yourself:
- go control panel > system > advanced system settings > advanced > environment variables
- in user variables user section click new...
- set variable name vagrant_home
- set variable value e:\vagrant\vagrant.d
changes environment variables should take effect instantly may need restart cmd.exe instance using
Comments
Post a Comment