VMware Workstation Player
VMware Workstation Player Documentation
VMware Workstation 16 Pro
Buy Online the License for VMware Workstation Pro –> Today Online bought! (199+13.93 = $212.93)
VMware Workstation (Compare Product)
Django Packaged By Bitnami For VMware Marketplace
How to share folders between Windows and Ubuntu using VMware Player
Manually Install VMware Tools on Linux
How to Install VMware Tools
✔Mounting VMware Shares from the Command Line on Linux VM
✔How to Install VMware Tools on Ubuntu/Debian VMware Virtual Machine
✔How to mount Windows shares in Mint Linux 18.3
Mounting Shared Folders in a Linux Guest
Mount VMware Shares on Linux VM:
bitnami@debian:~$ cd /opt/bitnami 
bitnami@debian:/opt/bitnami$ sudo mkdir PROJECTS 
bitnami@debian:/opt/bitnami$ sudo chmod 777 PROJECTS 
bitnami@debian:/opt/bitnami$ cd 
bitnami@debian:~$ sudo mount -t fuse.vmhgfs-fuse -o allow_other .host:/VM_DJPROJECTS /opt/bitnami/PROJECTS
If error happen, using this command,
bitnami@debian:~$ sudo vmhgfs-fuse -o nonempty -o allow_other .host:/VM_DJPROJECTS /opt/bitnami/PROJECTS
*VM_DJPROJECTS is the shared folder name in Host computer (Windows).
PROJECTS is the shared folder in Guest computer (Linux Debian).
Automatically Mount VMware Shares:
If you want the VMware Linux VM to automatically mount the VMware share on boot,
you have to add a new line to the /etc/fstab file.
bitnami@debian:~$ cd /etc 
bitnami@debian:/etc$ sudo chmod 777 fstab 
bitnami@debian:/etc$ emacs fstab 

Using chmod command to change file permission back to original.
bitnami@debian:/etc$ sudo chmod 644 fstab

Then, reboot.
bitnami@debian:/etc$ sudo reboot