You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I could not Vagrant Up with the latest Vagrantfile. It failed while provisioning Chef with the following message:
==> default: Thank you for installing Chef!
==> default: Running provisioner: shell...
default: Running: inline script
==> default: stdin: is not a tty
==> default: Running provisioner: shell...
default: Running: inline script
==> default: stdin: is not a tty
==> default: /sbin/mount.vboxsf: mounting failed with the error
==> default: : Protocol error
The SSH command responded with a non-zero exit status. Vagrant
assumes that this means the command failed. The output for this command
should be in the log above. Please read the output to determine what
went wrong.
The text was updated successfully, but these errors were encountered:
Enable NFS (Network File System) as an Alternative
Vagrant.configure("2") do |config|
config.vm.synced_folder ".", "/vagrant", type: "nfs"
# Add other configuration settings...
end
Make sure NFS is installed on your host machine. On Ubuntu, If not installed then run
sudo apt-get install nfs-kernel-server
Now Check VirtualBox Guest Additions Version
modinfo vboxguest | grep version
I could not Vagrant Up with the latest Vagrantfile. It failed while provisioning Chef with the following message:
==> default: Thank you for installing Chef!
==> default: Running provisioner: shell...
default: Running: inline script
==> default: stdin: is not a tty
==> default: Running provisioner: shell...
default: Running: inline script
==> default: stdin: is not a tty
==> default: /sbin/mount.vboxsf: mounting failed with the error
==> default: : Protocol error
The SSH command responded with a non-zero exit status. Vagrant
assumes that this means the command failed. The output for this command
should be in the log above. Please read the output to determine what
went wrong.
The text was updated successfully, but these errors were encountered: