1、打开控制面板— 程序— 启用或关闭 Windows 功能:
2、勾选适用于 Linux 的 Windows 子系统并点击确定;
3、进入 Windows 10 设置— 更新与安全— 针对开发人员— 勾选开发人员模式并重启设备;
4、在Microsoft Store中搜索Ubuntu(我只测试Ubuntu,如果有人爱研究也可以尝试其他系统,如openSUSE,Debian,kali Ubuntu),在应用页安装好Ubuntu,过程很简单,就跟安装软件一样。(这里我已经安装了,按钮是启动,没有安装的朋友是获取安装按钮。)
5、在左下角的Cortana中搜索Ubuntu,点击进入,看到的界面就如同我们在Ubuntu下的终端界面。(恭喜你,安装成功,接下来就是图形化配置过程了)
6、在终端界面键入以下操作
初次使用需要修改源文件,先进行备份
cp /etc/apt/sources.list /etc/apt/sources.list.bak
使用vi编辑器,创建新的源文件
vi /etc/apt/sources.list
deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse
##测试版源
deb http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse
# 源码
deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse
##测试版源
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse
# Canonical 合作伙伴和附加
deb http://archive.canonical.com/ubuntu/ xenial partner
deb http://extras.ubuntu.com/ubuntu/ xenial main
最后更新源和软件:
sudo apt-get update
sudo apt-get upgrade
7、root用户下的用户管理
useradd username #创建用户username
passwd username #给已创建的用户username设置密码
usermod --help #修改用户这个命令的相关参数
userdel username #删除用户username
rm -rf username #删除用户username所在目录
8、用户切换
sudo -s #切换到root
su username #切换到用户username
exit #退出当前用户,返回root用户
9、用户组
groupadd usergroup #组的添加
groupdel usergroup #组的删除
10.ubuntu Linux子系统的目录是在这个目录下
C:\Users\Administrator\AppData\Local\Packages\CanonicalGroupLimited.Ubuntu20.04onWindows_79rhkp1fndgsc\LocalState\rootfs