WSL, Windows 中运行 linux 子系统

WSL, Windows Subsystem for Linux.

安装

网上很多教程. 见参考[1] .

  1. Microsoft Store | 搜索 linux | ubuntu
  2. 设置 | 安全 | 启用开发人员模式
  3. 运行 | optionalfeatures.exe | 启用或关闭windows功能 | 适用于linux的Windows 子系统 | 打勾
  4. 完成以上步骤, 重启. 设置用户名, 密码.

文件系统

cd /mnt/ 对应本地硬盘的文件系统.

gcc 工具

sudo apt-get install build-essential
build-essential包含gcc和gdb等工具,是C语言的开发包, 包含以下组件:

  binutils-doc cpp-doc gcc-7-locales debian-keyring g++-multilib g++-7-multilib gcc-7-doc libstdc++6-7-dbg
  gcc-multilib autoconf automake libtool flex bison gdb gcc-doc gcc-7-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg
  libatomic1-dbg libasan4-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg libmpx2-dbg libquadmath0-dbg
  glibc-doc bzr libstdc++-7-doc make-doc

参考

  1. How to: Enable the Windows Subsystem for Linux

你可能感兴趣的:(Windows,Linux)