AI-generated summary
To set up VMware shared folders on a Linux client, first install `open-vm-tools`. Check for the `vmhgfs-fuse` program using the `whereis vmhgfs-fuse` command. Use the `id` command to find the current user's UID and GID, and the `umask` command to check the user's umask.
For a temporary mount, use:
```
/usr/bin/vmhgfs-fuse .host:/ /home/username/yourfolder -o allow_other -o uid=xxx -o gid=xxx -o umask=xxx
```
For a permanent mount, add the following line to the end of the `/etc/fstab` file:
```
.host:/ /home/username/yourfolder fuse.vmhgfs-fuse allow_other,uid=xxx,gid=xxx,umask=xxx 0 0
```