skywalkerch

skywalkerch

一个喜欢马里欧的极客(不shi)
tg_channel
github
follow

Mounting VMware Shared Folder in Linux Virtual Machine

  • First, the Linux client needs to install open-vm-tools
  • Then use the whereis vmhgfs-fuse command to check the vmhgfs-fuse program
  • Use the id command to view the current user's uid and gid
  • Use the umask command to view the current user's umask
  • Temporary mount command
/usr/bin/vmhgfs-fuse .host:/ /home/username/yourfolder -o allow_other -o uid=xxx -o gid=xxx -o umask=xxx 
  • Permanent mount
    Add the following line at the bottom of the /etc/fstab table
.host:/  /home/username/yourfolder fuse.vmhgfs-fuse allow_other,uid=xxx,gid=xxx,umask=xxx 0 0
Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.