安裝VMware tool
sudo apt-get install open-vm-tools
檢視掛載情況
vmware-hgfsclient
如果有共享資料夾的名字,說明共享成功,,下一步就是掛載到目錄下就可以了
建立要掛載的資料夾
sudo make dir /mnt/hgfs
設定掛載(手動掛載)
sudo vmhgfs-fuse .host:/ /mnt/hgfs/ -o allow_other -o uid=1000
此時的共享目錄已經掛載在資料夾下的 /mnt/hgfs/
設定自動掛載
以上設定在虛擬機器重啟後會失效,因此要設定每次開機自動掛載
需要編輯/etc/fstab檔案,用文字編輯器開啟它,我更喜歡用gedit,也可以用vim或者其他喜歡的編輯器。這裡如果打不開的話在gedit前面加sudo,
gedit /etc/fstab
在檔案尾部追加一行:
.host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other,defaults 0 0