Skip to content

Instantly share code, notes, and snippets.

@dimaskiddo
Created July 10, 2020 07:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dimaskiddo/54016413a758ffd71cc6b84a3bdffc86 to your computer and use it in GitHub Desktop.
Save dimaskiddo/54016413a758ffd71cc6b84a3bdffc86 to your computer and use it in GitHub Desktop.
WSL Genie Setup Script
#!/bin/bash
# Install .NET Core Runtime 3.0 Repository
wget -O packages-microsoft-prod.deb https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb
dpkg -i packages-microsoft-prod.deb
rm -f packages-microsoft-prod.deb
# Install Arkane Genie Repository
curl -s https://packagecloud.io/install/repositories/arkane-systems/wsl-translinux/script.deb.sh | bash
# Install Arkane Genie Packages
apt-get update && apt-get install -y systemd-genie
# Clean-up Packages
apt-get autoremove -y --purge
apt-get clean -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment