install linux in windows without VM
https://docs.microsoft.com/en-us/windows/wsl/install-on-server https://computingforgeeks.com/run-linux-on-windows-server/ The Windows Subsystem for Linux allows you to run GNU/Linux environment which includes most Linux command-line tools, utilities, and applications directly on your Windows system without any modification or overhead on the host system. One pre-requisite is already installed Windows Server 2019. Lucky enough, we have a guide on the installation of Windows Server 2019 . Step 1: Enable Windows Subsystem for Linux (WSL) feature on Windows Before you can install any Linux distribution for WSL, you must ensure that the “ Windows Subsystem for Linux” feature is enabled: Open PowerShell as Administrator and run the following command to enable Windows Subsystem for Linux (WSL) feature on Windows. Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux Agree to restart your computer when prompted. You can do the same fr...