So I can connect to my Macbook's share via afp://ip/share, but that's about as far as I can get when it comes to accessing that directory. In order for me to pass this shared folder over to my VMs, I'd like to be able to mount this to a folder, and pass that folder over through to the VMs.
However, I can't seem to figure out how to get to this step. I can't connect to the share over SMB because of issues related to SMB signing, etc. that I spent a few hours on without success.
I tried using afpfs-ng but I can't even get it compiled and working correctly. I tried the following:
git clone https://github.com/simonvetter/afpfs-ng
cd afpfs-ng
./configure
make
sudo make install
and then tried to run it, but got an error:
$ mount_afp afp://192.168.1.13/Documents docs/
mount_afp: error while loading shared libraries: libafpclient.so.0: cannot open shared object file: No such file or directory
Any advice would be greatly appreciated.