Skip to content

Instantly share code, notes, and snippets.

@cactaceae21
Last active April 19, 2020 15:34
Show Gist options
  • Save cactaceae21/150582af311b5a429fa1ed638c19f21c to your computer and use it in GitHub Desktop.
Save cactaceae21/150582af311b5a429fa1ed638c19f21c to your computer and use it in GitHub Desktop.
VMware Workstation #vmware #virtual #virtualisation
  • VMWare documentation
  • Mounting shared folders in Linux
    • Mounts all shares to /home/user1/shares
      mount -t vmhgfs .host:/ /home/user1/shares
    • Mounts the share named foo to /tmp/foo
      mount -t vmhgfs .host:/foo /tmp/foo
    • Mounts the subdirectory bar within the share foo to /var/lib/bar
      mount -t vmhgfs .host:/foo/bar /var/lib/bar
  • Useful additions to .vmx file
    • VMX file parameters
    • To enable a nic to enter promiscuous mode
      ethernet%d.noPromisc = "FALSE"
    • To stop vm guest from sleeping (Windows desktop / Linux desktop etc)
      suspend.disabled = "TRUE"
    • Enable EFI firmware compatibility
      `firmware = "efi"
    • Force BIOS setup
      `bios.forceSetupOnce = "TRUE"
    • Delay bootup
      bios.bootDelay = "xxxx" where xxxx is in millisecs (10E-03 secs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment