1) run `stat test.txt` on the Linux guest when test.txt does not exist. It correctly tells me the file doesn't exist
2) Create test.txt on the host via the shared folder
3) Run ls -aoh on the guest. It now shows:
ls: cannot access test.txt: No such file or directory
As well as:
Code: Select all
-rw-rw-r-- 1 vagrant 7 Oct 23 12:24 test12.css
-????????? ? ? ? ? test.txt
If I create the file on the host prior to running stat on the guest it works perfectly. Both Linux and Windows hosts behave the same way.
Any ideas?