- Host: FreeBSD 14.3-RELEASE-p5
- Guest: Alpine Linux 3.22.2
Code:
disk3_type="virtio-9p"
disk3_dev="custom"
disk3_name="storage=/mnt"
On the guest, I use the following fstab entry:
Code:
storage /mnt 9p trans=virtio,version=9p2000.u 0 0
This mounts fine and appears to work, however I've quickly found that on the guest side, symlinks just don't work at all:
Code:
$ touch whatever
$ ln -s whatever link-to-whatever
$ ls -l link-to-whatever
lrwxr-xr-x 1 <snip> 8 Nov 27 00:33 link-to-whatever ->
$ readlink link-to-whatever
$
Existing symlinks created on the host side also behave the same way.
Is there anything I can do to make symlinks work for 9p shares or will I have to resort to NFS?