This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Obviously using these keys may be a grey area. I use them for my computer, but there are no guarentees VMware won't sue you if you use them in a commercial environment. | |
VMware Workstation 16 | |
YF390-0HF8P-M81RQ-2DXQE-M2UT6 | |
VMware Fusion Pro 12 | |
YF390-0HF8P-M81RQ-2DXQE-M2UT6 | |
As far as I know, this key works on both Fusion and Workstation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$remoteport = bash.exe -c "ifconfig eth0 | grep 'inet '" | |
$found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}'; | |
if( $found ){ | |
$remoteport = $matches[0]; | |
} else{ | |
echo "The Script Exited, the ip address of WSL 2 cannot be found"; | |
exit; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Taken from:https://github.com/dnschneid/crouton/wiki/Build-kernel-headers-and-install-Virtualbox-(x86) | |
https://github.com/dnschneid/crouton/wiki/Build-kernel-headers-and-install-Virtualbox-(x86) | |
only pasted here so I can be sure I will always have it. | |
NB: do this ALTERNATIVE INSTEAD(it solves multi reboots on vagrant up) | |
1. build kernel headers as per this diff method: https://github.com/divx118/crouton-packages/blob/master/README.md | |
ie: from a shell in ua chroot(ubuntu) | |
$ cd ~ | |
$ wget https://raw.githubusercontent.com/divx118/crouton-packages/master/setup-headers.sh |