Last active
April 19, 2020 15:34
-
-
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
- Mounts all shares to /home/user1/shares
- 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