他のほとんどの答えは時代遅れです。Ubuntu 18.04(または最近のDebianディストリビューション)の場合:
sudo vmhgfs-fuse .host:/ /mnt/hgfs/ -o allow_other -o uid=1000
場合は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
て私のために働いた。