Windows10上安装使用Linux子系统(WSL)
Linux的Windows子系统让开发人员可以直接在Windows上运行Linux环境(包括大多数命令行工具,实用程序和应用程序),而无需建立在虚拟机的开销之上,整个系统共200多M,但包含了你能用到的所有功能,并且和windows完美互操作(省去Linux挂载本地windows分区或目录的操作),目前Linux的windows子系统已经相当完善,可当作完整linux系统使用.
您可以:
从Windows应用商店中选择您最喜爱的Linux发行版。
运行常用的命令行实用程序,如grep,sed,awk等。
运行Bash shell脚本和Linux命令行应用程序,包括:
工具:vim,emacs,tmux
语言:Javascript / node.js,Ruby,Python,C / C ++,C#和F#,Rust,Go等
服务:sshd,MySQL,Apache,lighttpd
使用发行版的内置包管理器(apt-get)安装其他Linux工具。
从Linux控制台调用Windows应用程序。
在Windows上调用Linux应用程序。
Windows文件和Linux文件的位置
要是想在Ubuntu里查看windows分区里面的文件 可以在/mnt里面查看 要是想在windows里面查看Ubuntu里面的文件,在我电脑上位置是:
C:\Users\你的用户名\AppData\Local\Packages\CanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgsc\LocalState\rootfs
错误代码是0x8007007e的小伙伴看这里
1、打开 [控制面板]
2、找到 [程序与功能] 处的 [启用或关闭windows功能]
3、在 [适用于linux的windows子系统] 一栏处打上勾
4、点击确定并重启电脑
注:以上步骤在win10专业版上测试,win10家庭版可能不支持
安装Linux的Windows子系统
使用快捷键: 微软光标键+S 搜索 "功能"
进入功能
勾选适用于Linux的Windows子系统
或者直接PowerShell中运行以下命令
Enable-WindowsOptionalFeature-Online-FeatureNameMicrosoft-Windows-Subsystem-Linux
然后出现提示重新启动计算机
安装Linux
在应用商店搜索“Linux”,选择您喜欢的Linux版本,推荐安装Ubuntu
注意:应用商店的程序使用默认路径,不要更换到其他盘符
安装完毕后开始菜单出现Ubuntu图标
现在可以在里面进行任何和linux相关的命令
或者在Windows商店里直接启动
进入Ubuntu系统会自动初始化并安装,稍等几分钟即可
Installing, this may take a few minutes...
Please create a default UNIX user account. The username does not need to match your Windows username.
For more information visit: https://aka.ms/wslusers
Enter new UNIX username: # 输入你的Ubuntu系统用户名
Enter new UNIX password: # 输入你的密码
Retype new UNIX password: # 再次输入你的密码
passwd: password updated successfully # 提示密码更新成功
Installation successful! # 系统安装成功
To run a command as administrator (user"root"), use"sudo <command>". # 切换到root用户
See"man sudo_root"fordetails. # sudo命令帮助
输入Linux命令测试
alan@Alan:~$ sudo su - root
[sudo] passwordforalan:
root@Alan:~# whoami
root
root@Alan:~# pwd
/root
root@Alan:~# ll
total4
drwx------1root root512May2122:42 ./
drwxr-xr-x1root root512Jun2919:46 ../
-rw-r--r--1root root3106Apr92018.bashrc
-rw-r--r--1root root148Aug172015.profile
root@Alan:~# ping www.baidu.com
PING www.a.shifen.com (61.135.169.125)56(84) bytes of data.
64bytes from61.135.169.125 (61.135.169.125):icmp_seq=1ttl=63time=5.79 ms
64bytes from61.135.169.125 (61.135.169.125):icmp_seq=2ttl=63time=5.27 ms
64bytes from61.135.169.125 (61.135.169.125):icmp_seq=3ttl=63time=5.28 ms
64bytes from61.135.169.125 (61.135.169.125):icmp_seq=4ttl=63time=5.54 ms
64bytes from61.135.169.125 (61.135.169.125):icmp_seq=5ttl=63time=7.16 ms
64bytes from61.135.169.125 (61.135.169.125):icmp_seq=6ttl=63time=5.10 ms
^C
---www.a.shifen.compingstatistics---
6packets transmitted,6received,0% packet loss, time 5015ms
rtt min/avg/max/mdev=5.107/5.694/7.161/0.695 ms
Enjoy !
切记:小心执行 mkdir -rf mnt