在Windows10上安装Linux子系统
第一步
启动功能
使用管理员打开 powershell(那个蓝色界面,不是黑色的cmd)
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
之后按回车即可,会提示重启,重启
第二步,下载镜像
地址
https://docs.microsoft.com/en-us/windows/wsl/install-manual
需要ubuntu下载这个镜像
https://wsldownload.azureedge.net/CanonicalGroupLimited.Ubuntu18.04onWindows_1804.2018.817.0_x64__79rhkp1fndgsc.Appx
需要debain 下载这个
https://wsldownload.azureedge.net/DebianGNULinux_1-1-3-0_x64__76v4gfsz19hv4.Appx
可以使用百度网盘离线下载
第三步
下载完成之后 直接在powershell进行安装即可(Add-AppxPackage+文件路径)
Add-AppxPackage Ubuntu18.04onWindows_1804.2018.817.0_x64__79rhkp1fndgsc
.Appx
安装完成之后,在开始菜单就可以找到ubuntu,打开即可设置账户密码等
安装完成,初始化系统
通过开始菜单或者双击ubuntu.exe 启动程序,启动程序之后切换输入法为ENG,然后输入一个回车(win10中文输入在cmd菜单有bug),等待初始化完成
分别输入username, 输入password
另:username不能大写开头,否则出现:
adduser: Please enter a username matching the regular expression configured
via the NAME_REGEX[_SYSTEM] configuration variable. Use the `--force-badname'
option to relax this check or reconfigure NAME_REGEX.
而后查看命令使用:man sudo_root或者访问:https://wiki.ubuntu.com.com/RootSudo
中文乱码
解决方案:
sudo vim /etc/default/locale 修改内置Ubuntu子系统的LANG
之前的LANG为:
LANG=C.UTF-8
改为:
LANG=zh_CN.UTF-8
然后安装语言包
sudo apt-get install language-pack-zh-hans
然后退出再重新登录