Alguém conseguiu ver / vagrant dir em uma caixa vagabunda do FreeBSD? Eu não posso, para a vida de mim conseguir trabalhar.
Testado no Windows 10, imagino que esses problemas sejam de plataforma cruzada. Testado com a última versão do vagrant & Virtualbox a partir de novembro de 2017:
vagrant init freebsd/FreeBSD-11.1-STABLE
vagrant up
Eu recebo o seguinte erro:
No base MAC address was specified. This is required for the NAT networking
to work properly (and hence port forwarding, SSH, etc.). Specifying this
MAC address is typically up to the box and box maintainer. Please contact
the relevant person to solve this issue.
Então, quando eu adiciono um endereço MAC:
freebsd.vm.base_mac = "E82AEA3A79B0" #You can change this to your local mac address
freebsd: Warning: Remote connection disconnect. Retrying...
freebsd: Warning: Connection aborted. Retrying...
freebsd: Warning: Remote connection disconnect. Retrying...
freebsd: Warning: Connection aborted. Retrying...
freebsd: Warning: Remote connection disconnect. Retrying...
Então, nós vamos mais longe, mas quando eu entro em vagrant ssh
, eu entro, mas ls /vagrant
não existe.
Então eu tento:
config.vm.synced_folder ".", "/vagrant", type: "nfs"
Mas isso não parece ajudar
Além disso, recebo o seguinte erro:
The configured shell (config.ssh.shell) is invalid and unable
to properly execute commands. The most common cause for this is
using a shell that is unavailable on the system. Please verify
you're using the full path to the shell and that the shell is
executable by the SSH user.
Com:
config.vm.provision "run",
type: "shell",
privileged: true,
run: "always",
inline: <<-SHELL
cd /vagrant/tools
ls
SHELL