diff --git a/README.md b/README.md index 9206085..6a2c616 100644 --- a/README.md +++ b/README.md @@ -1 +1,30 @@ -# Computer Grafik 1 \ No newline at end of file +# Dependencies Installieren + +```bash +sudo apt-get update +sudo apt-get install libglfw3 libglfw3-dev +sudo apt-get install libglew-dev +``` + +# WSL + +## WSL Updaten + +``` +# aktuelle Version anzeigen +wsl -l -v + +# Version ändern +wsl --set-version 2 + +# Updaten +wsl --update +``` + +## Virtualisierung Aktivieren + +``` +dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart +dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart +``` +