wsl安装ziran2019

首先从windows商店搜索ubuntu18
(亲测Ubuntu20不行)
然后第一次打开会自动安装。

(我是用的wsl一代,二代没测试过)

新安装的系统首先要更新apt

sudo apt update

然后设置git

git config --global https.proxy http://127.0.0.1:7890
git config --global https.proxy https://127.0.0.1:7890
git config --global user.name "John Doe" 
git config --global user.email [email protected].

前两行不是必须。是为了的话走代理。否则github clone的很慢。(如果你不挂梯子不要加这两行。并且7890端口是我的梯子用的端口,不一定和你的一致)

然后照着README安装即可。

注:WSL可以访问windows上的硬盘
例如C盘就是

cd /mnt/c

但是在Windows的硬盘创建文件的时候会出现权限问题,参考这个帖子
https://askubuntu.com/questions/1115564/wsl-ubuntu-distro-how-to-solve-operation-not-permitted-on-cloning-repository

增加 /etc/wsl.conf (create it if it doesn’t exist). Add the following:

[automount]
options = "metadata"

然后重启WSL或重启windows即可

你可能感兴趣的:(ubuntu)