I have a vagrant box up and running (configured with a LAMP stack). I need to transfer it to another PC. How can I export it? I guess that I can get a file (or files) that can b
The easiest way would be to package the Vagrant box and then copy (e.g. scp or rsync) it over to the other PC, add it and vagrant up ;-)
scp
rsync
vagrant up
For detailed steps, check this out => Is there any way to clone a vagrant box that is already installed
=>