I'm attempting to package an existing VirtualBox VM for our dev team to easily distribute and use. Given the box is already set up, I installed the VirtualBox Guest Additions.
The problem is that after I package the box and add
it to Vagrant, I run vagrant up
and everything seems to work fine, until it gets to:
==> default: Mounting shared folders...
default: /vagrant => /Users/alex/vagrant/centos7
At this point, it just hangs. No issue. It didn't give any errors when checking for guest additions in VM
either.
Also, if I add any network config to my Vagrantfile (config.vm.network "public_network"
) it will hang at this point instead (==> default: Configuring and enabling network interfaces...
)
Really no idea where to go from here. Thanks in advance for any help.