就debian10为例,
1.桌面环境下网络设置有线网络进行四项配置
桌面可以选择GNOM经典模式
debian10 手动有线网络配置IP192.168.8.xxx;子网掩码255.255.255.0;网关192.168.8.1;DNS114.114.114.114
win7虚拟机网络配置对IPV4属性进行IP四项配置192.168.8.xxx
2.有无桌面环境都可用vi系统文件进行配置
配置静态ip:
1.编辑网络配置文件
vi /etc/network/interfaces
添加:
auto eth0
iface eth0 inet static
address 192.168.8.xxx
netmask 255.255.255.0
gateway 192.168.8.1
2.设置DNS
vi /etc/resolv.conf
添加:
nameserver 114.114.114.114
3.重启网卡
ifdown eth0
ifup eth0
或ifconfig eth0 down
ifconfig eth0 up
4.重启网络
/etc/init.d/networking restart
service networking restart