一、Virtual Box配置
选择网卡,如下:
二、配置Ubuntu
1.查看网卡信息
root@wsl-VirtualBox:~# ifconfig
2.修改配置文件
根据主机ip修改interfaces文件
root@wsl-VirtualBox:~# vim /etc/network/interfaces
<font color=#999AAA >
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto enp0s3
iface enp0s3 inet static
address 192.168.31.110
netmask 255.255.255.0
gateway 192.168.31.1
iface wlan0 inet static
address 192.168.31.110
netmask 255.255.255.0
gateway 192.168.31.1
3.修改 nameserver
root@wsl-VirtualBox:~# vim /etc/resolv.conf
nameserver 8.8.8.8
4.重载配置和重启网络
分别一次执行以下命令:
root@wsl-VirtualBox:~# /etc/init.d/networking reload
root@wsl-VirtualBox:~# ifdown enp0s3
root@wsl-VirtualBox:~# ifup enp0s3
root@wsl-VirtualBox:~# /etc/init.d/networking restart
查看ip修改是否已生效:
ifconfig -a
测试网络:
root@wsl-VirtualBox:~# ping www.baidu.com