Closed mika018 closed 2 years ago
What is the target vagrant box operating system? I'm guessing the version of sshfs you have doesn't support the -o slave
option. Maybe check the man page to see.
For a summary of what is going on read this section from the README
Closing this pending more information.
I am trying to mount the vm folder to a host directory using:
vm1a.vm.synced_folder "/path/on/my/machine", "/path/on/vm", type: "sshfs"
But I got an error saying that I have to usenonempty
flag which I added and now my Vagrantfile looks like this:vm1a.vm.synced_folder "/path/on/my/machine", "/path/on/vm", sshfs_opts_append: "-o nonempty", type: "sshfs"
When trying to get the sshfs running usingvagrant sshfs --mount
and after printingChecking Mount...
for like 7 times this error is printed:I couldn't find any issue reporting this nor useful resources online. Any ideas?