대부분의 다른 답변은 구식입니다. Ubuntu 18.04 (또는 최근 데비안 배포판)의 경우 다음을 시도하십시오.
sudo vmhgfs-fuse .host:/ /mnt/hgfs/ -o allow_other -o uid=1000
는 IF hgfs
디렉토리가 존재하지 않습니다 시도 :
sudo vmhgfs-fuse .host:/ /mnt/ -o allow_other -o uid=1000
대신 특정 폴더를 사용했을 수 있습니다 .host:/
. 이 경우와 공유의 이름을 찾을 수 있습니다 vmware-hgfsclient
. 예를 들면 다음과 같습니다.
$ vmware-hgfsclient
my-shared-folder
$ sudo vmhgfs-fuse .host:/my-shared-folder /mnt/hgfs/ -o allow_other -o uid=1000
시작시 마운트 /etc/fstab
하려면 다음을 사용하여 업데이트 하십시오.
# Use shared folders between VMWare guest and host
.host:/ /mnt/hgfs/ fuse.vmhgfs-fuse defaults,allow_other,uid=1000 0 0
공유가 VM 성능에 영향을 미치는 것을 알았 기 때문에 필요에 따라 마운트하고 옵션을 sudo mount -a
사용하여 무시 하도록 noauto
선택했습니다.
요구 사항
소프트웨어 요구 사항에 따라 다음 도구를 미리 설치해야 할 수 있습니다.
sudo apt-get install open-vm-tools open-vm-tools-desktop
다른 사람들은 다음이 필요하다고 주장했습니다.
sudo apt-get install build-essential module-assistant \
linux-headers-virtual linux-image-virtual && dpkg-reconfigure open-vm-tools
vmware-config-tools.pl
나를 위해 일했습니다.