适用于Linux的Windows子系统(在VScode中开发Linux项目)

目录

前言

一、VScode扩展安装

二、挂载项目

1.连接

2.挂载(挂载之后项目终端就是Linux了)

3.愉快的搬砖开始了

4.前端如何通过内网 IP 本地访问到 Ubuntu 上?

总结


前言

系列分为三章(从安装到项目使用):

一、适用于Linux的Windows子系统(系统安装步骤)

二、适用于Linux的Windows子系统(PHP搭建lmap、redis、swoole环境)

三、适用于Linux的Windows子系统(在VScode中开发Linux项目)


一、VScode扩展安装

适用于Linux的Windows子系统(在VScode中开发Linux项目)_第1张图片

二、挂载项目

1.连接

适用于Linux的Windows子系统(在VScode中开发Linux项目)_第2张图片

适用于Linux的Windows子系统(在VScode中开发Linux项目)_第3张图片

2.挂载(挂载之后项目终端就是Linux了)

适用于Linux的Windows子系统(在VScode中开发Linux项目)_第4张图片

适用于Linux的Windows子系统(在VScode中开发Linux项目)_第5张图片

3.愉快的搬砖开始了

ctrl c + ctrl v

4.前端如何通过内网 IP 本地访问到 Ubuntu 上?

打开 cmd 将Ubuntu映射到windows并且关闭防火墙

我的项目是 swoole 所以映射的端口是21001 虚拟 IP 变动频繁通过 localhost 映射就可以

(前端访问后端电脑的windows系统的ip就可以了)

查看所有映射网址
netsh interface portproxy show all

# netsh interface portproxy add v4tov4 listenport=[win10端口] listenaddress=0.0.0.0 connectport=[虚拟机的端口] connectaddress=[虚拟机的ip]

添加映射
netsh interface portproxy add v4tov4 listenport=80 listenaddress=0.0.0.0 connectport=21001 connectaddress=localhost

删除映射
netsh interface portproxy delete v4tov4 listenport=80 listenaddress=0.0.0.0

适用于Linux的Windows子系统(在VScode中开发Linux项目)_第6张图片


总结

如果步骤中有差异欢迎留言或私信,如何安装和搭建系统可移步

适用于Linux的Windows子系统(系统安装步骤)

适用于Linux的Windows子系统(PHP搭建lmap、redis、swoole环境)

你可能感兴趣的:(linux,服务器,php,mysql,windows,vscode)