wsl --list --verbose --all
Here I'm gathering awesome things to do with Steam Deck.
Resource:
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
# Windows now supports a simple WSL installation using the command: | |
wsl --install | |
$ErrorActionPreference = 'Continue' | |
$ProgressPreference = 'SilentlyContinue' | |
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux | |
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-Hypervisor | |
Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform | |
Enable-WindowsOptionalFeature -Online -FeatureName HypervisorPlatform |
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
### Keybase proof | |
I hereby claim: | |
* I am sanyer on github. | |
* I am romazhuzha (https://keybase.io/romazhuzha) on keybase. | |
* I have a public key ASCBKyjA8pjHTv60Q_69Wm0s7sI1n_S0scYC-HrJrkE-Sgo | |
To claim this, I am signing this object: |
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
#!/bin/sh | |
# basic-system-languages.sh: ruby & python | |
brew install pyenv rbenv | |
cat <<EOF >>~/.zshrc | |
eval "$(pyenv init -)" | |
eval "$(rbenv init -)" | |
EOF | |
pyenv init - && pyenv install 3.10:latest && pyenv rehash | |
rbenv init - && rbenv install $(rbenv install -L | grep -v - | tail -1) && rbenv rehash |