If you have a server then you want to virtualize your GPU card, lets follow this workaround.
- Windows Server 2022
- RHEL
- Ubuntu
- Make sure you have installed driver on your VMHost, you can download on
nvid.nvidia.com
PowerCLI for VMware
## Install Online (Run Powershell as Administrator)
Install-Module VMware.PowerCLI -Scope CurrentUser
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine
Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Confirm:$false
## Find Available Target Editions | |
DISM.exe /Online /Get-TargetEditions | |
## Convert Server Standard 2019 Evaluation to Server Standard 2019 | |
DISM /online /Set-Edition:ServerStandard /ProductKey:N69G4-B89J2-4G8F4-WWYCC-J464C /AcceptEula | |
## How To Activate | |
slmgr /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX | |
slmgr /skms [server]:[port] | |
slmgr /ato |
If you have an Tunnel SOCKSv5 Proxy on Port 500, then you want to use that proxy on Postman with port 600
hpts -s 127.0.0.1:500 -p 600
#!/bin/bash | |
# List of gateways with corresponding interfaces | |
gateways=("192.168.100.1" "192.168.70.1" "192.168.80.1") | |
interfaces=("eth0" "eth1" "eth2") | |
# Function to check internet connectivity using a specific interface and gateway | |
check_gateway_connectivity() { | |
interface=$1 | |
gateway=$2 |
Microsoft partnered with Canonical to create Bash on Ubuntu on Windows, running through a technology called the Windows Subsystem for Linux. Below are instructions on how to set up the ssh server to run automatically at boot.
/etc/ssh/sshd_config
file by running the command sudo vi /etc/ssh/sshd_config
and do the following
Port
to 2222 (or any other port above 1000)PasswordAuthentication
to yes. This can be changed back to no if ssh keys are setup.sudo service ssh --full-restart