Per qualche ragione, gli strumenti VMWare installati automaticamente non hanno funzionato, ma Ubuntu ha uno strumento chiamato vmware-hgfsmounter, se lo installassi potrei farlo:
sudo apt-get install open-vm-tools
sudo mkdir /mnt/hgfs
sudo mount -t vmhgfs .host:/ /mnt/hgfs
Dopo aver eseguito questi comandi, /mnt/hgfs ora dovrebbe contenere le tue condivisioni.
Per Ubuntu 16.04 ho dovuto usare vmhgfs-fuse
, vedi https://github.com/vmware/open-vm-tools/issues/199#issuecomment-335525133:
Ciò influisce sul client Cartelle condivise poiché siamo passati da un componente in modalità kernel a un componente del file system FUSE per fornire il file system delle cartelle condivise.
Ciò si traduce in un nuovo comando mount da utilizzare per creare il file system condiviso. Per le versioni del kernel Linux utilizziamo il file system FUSE che ora significa che dovresti utilizzare il seguente comando:
sudo /usr/bin/vmhgfs-fuse .host:/ /mnt/hgfs -o subtype=vmhgfs-fuse,allow_other
sudo mkdir /mnt/hgfs
Usa prima il comando precedente, seguito dal seguente:
sudo /usr/bin/vmhgfs-fuse .host:/ /mnt/hgfs -o subtype=vmhgfs-fuse,allow_other
Utilizzo macOS e VMware Fusion con Ubuntu 18.x.