I have folder on host machine which have symlinks to another device. Like this
$ ls -all ~/folder_to_share
...
file1
file2
linked_dir -> /mnt/bdrive/real_dir/
...
I setup QEMU virtual machine via libvirt and vagrant-libvirt. And also setup sharing folder which is mapped to host dir ~/folder_to_share using VirtFS (9p protocol).
I want my virtual machine to walk inside shared dir and follow symlinks as it is real directory. Is it possible or I should switch to another protocol?
P.S. Part of vagrant-libvirt config:
config.vm.synced_folder "~/folder_to_share/", "/home/vagrant/shared_folder", type: '9p', owner: 1000