Download VMware
To download VMware Workstation, you need to create an Broadcom account and then have fun hunting down the download file. Broadcom makes it so difficult to download. I don't think they want you to use VMware software.
- Step-by-step instructions: https://knowledge.broadcom.com/external/article/397417/
- Direct link: https://support.broadcom.com/group/ecx/productdownloads?subfamily=VMware%20Workstation%20Pro&freeDownloads=true
- Forum: https://community.broadcom.com/vmware-cloud-foundation/discussion/downloading-vmware-pro
Copy and paste text
To enable copy and paste text between host and guest OS in VMware Workstation, you need to install VMware Tools in the guest OS.
- Reference: https://kb.vmware.com/s/article/1014294
Here is how to install VMware Tools in Debian Linux guest OS.
- Power on the Debian VM.
- In the Debian guest OS:
- Ensure that VMware Tools are installed:
apt-get -y install open-vm-tools open-vm-tools-desktop
. - Reboot the VM:
reboot
- Start the VMware user process:
/usr/bin/vmware-user
- You should now be able to copy and paste text between the host and guest OS.
- Ensure that VMware Tools are installed:
Shared folder
How to setup shared folder in VMware Workstation between MS Windows host and Debian Linux guest OS.
-
On the MS Windows host OS, create a folder to be shared, e.g.,
C:\shared
. -
In VMware Workstation, with the Debian VM powered off, go to
VM
>Settings
>Options
tab >Shared Folders
. -
Select
Always enabled
and clickAdd...
to add the folder you created on the host. -
Follow the wizard to specify the folder path and name (e.g.,
shared
). -
Power on the Debian VM.
-
In the Debian guest OS:
- Install VMware Tools if not already installed:
apt-get install open-vm-tools
. - Mount the shared folder using the command:
mkdir -p /media/shared vmhgfs-fuse .host:/shared /media/shared
- Install VMware Tools if not already installed:
- Reference: https://gcore.com/learning/what-is-shared-folder-vmware-linux