WSL2
在换工作期间,学习了PegasusWang 玩转vim。喜欢上了vim插件和快捷键。这里记录我在Windows+wsl2(windows subsystem for linux)开发环境的搭建过程,方便我重新构建环境。(主要是我怕忘)
Windows10
安装wsl2
官方文档
以下是摘录出来的内容,在Windows终端上以管理员执行即可。
1 2 3 4 5 6 7 8 9 10 11
| wsl --install
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi
wsl --set-default-version 2
wsl -l -v
|
可以通过Micorsoft store 搜索下载Ubuntu20.04
常用软件
Ditto
ditto 是window剪贴板的拓展工具。你可以将一些内容复制到剪贴板中,方便日后查看。
Wox
快速搜索工具,应用于windows平台,alfred替代品。
Everything
wsltty
目前我认为最好用的终端。启动快,中文输入不卡顿。
7zip
解压和压缩工具
Notion
Postman
Ubuntu 20.04
打开wsltty 安装以下软件
- tmux
- neovim
- zsh
- commitizen
- mycli
- tldr
- unzip
- mlocate
- ctags
- python3-pip
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| sudo apt install -y tmux ctags neovim python3-neovim python3-pip unzip mlocate zsh
curl -sL install-node.vercel.app/lts | sudo bash
pip install commitizen mycli tldr
MesloLGS NF Regular.ttf MesloLGS NF Bold.ttf MesloLGS NF Italic.ttf MesloLGS NF Bold Italic.ttf
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
$ curl -sL --proto-redir -all,https https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
curl -sLo/tmp/win32yank.zip https://github.com/equalsraf/win32yank/releases/download/v0.0.4/win32yank-x64.zip unzip -p /tmp/win32yank.zip win32yank.exe > /tmp/win32yank.exe chmod +x /tmp/win32yank.exe sudo mv /tmp/win32yank.exe /usr/local/bin/
|
安装snap
Using snapd in WSL2
Install shfmt on Ubuntu using the Snap Store | Snapcraft
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| sudo apt update sudo apt install snapd sudo apt-get update && sudo apt-get install -yqq daemonize dbus-user-session fontconfig
sudo daemonize /usr/bin/unshare --fork --pid --mount-proc /lib/systemd/systemd --system-unit=basic.target exec sudo nsenter -t $(pidof systemd) -a su - $LOGNAME
$ snap version snap 2.51.3 snapd 2.51.3 series 16 ubuntu 20.04 kernel 5.10.16.3-microsoft-standard-WSL2
sudo snap install shfmt
|
FAQ
clipboard: error invoking win32yank.exe
Windows缺少运行库导致的(网上有很多)
chrome 解锁10080端口
右键——属性——目标
“C:\Program Files (x86)\Google\Chrome\Application\chrome.exe” –explicitly-allowed-ports=10080
wsl占用内存
原文出自: https://zhuanlan.zhihu.com/p/345645621
新建文件.wslconfig C:\Users\xxx\.wslconfig
1 2 3 4 5
| [wsl2] processors=8 memory=8GB swap=8GB localhostForwarding=true
|