Vmware: Difference between revisions
Jump to navigation
Jump to search
Enable 3D acceleration (
(→Tips) |
|||
Line 31: | Line 31: | ||
=== Compile modules vmmon / vmnet on recent kernels === |
=== Compile modules vmmon / vmnet on recent kernels === |
||
See https://github.com/mkubecek/vmware-host-modules.git. |
See https://github.com/mkubecek/vmware-host-modules.git. |
||
=== Enable 3D acceleration (<code>No 3D support is available from the host</code>)=== |
|||
Add to {{file|~/.vmware/preferences}} [https://askubuntu.com/questions/537787/enable-3d-hw-acceleration-on-vmware-workstation-10-on-ubuntu-14-04]: |
|||
mks.gl.allowBlacklistedDrivers = "TRUE" |
|||
== Hide Menu Bar in Guest == |
== Hide Menu Bar in Guest == |
Revision as of 06:32, 6 March 2020
Tips
- First, install VM tools, or on Linux guest, install package open-vm-tools.
sudo apt install open-vm-tools
- Then create a shared folder in the VM settings.
To mount the shared folders in the guest [1]:
sudo vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other -o uid=0
For mount this at started, add to /etc/fstab:
# Use shared folders between VMWare guest and host
.host:/ /mnt/hgfs/ fuse.vmhgfs-fuse defaults,allow_other,uid=0 0 0
Some say the share has an impact on the VM performance. In that case, use option noauto
:
# Use shared folders between VMWare guest and host
.host:/ /mnt/hgfs/ fuse.vmhgfs-fuse defaults,allow_other,uid=0,noauto 0 0
Then mount the share manually with sudo mount /mnt/hgfs
.
- Notes
- VMWare mounts the share automatically when it is created and the VM is running. If the VM was off, first power on the VM, then disable and enable back the shared folders. However this has to be done everytime the VM is rebooted.
Compile modules vmmon / vmnet on recent kernels
See https://github.com/mkubecek/vmware-host-modules.git.
Enable 3D acceleration (No 3D support is available from the host
)
Add to ~/.vmware/preferences [2]:
mks.gl.allowBlacklistedDrivers = "TRUE"
Hide Menu Bar in Guest
Edit .vmware/preferences [3]:
pref.vmplayer.fullscreen.nobar = "TRUE"