Debian Stream 8配置网络连接通常有以下两种方法:
ip addr show或ifconfig -a查看网络接口名称。/etc/network/interfaces文件,添加或修改内容为auto <网卡名> iface <网卡名> inet static address <IP地址> netmask <子网掩码> gateway <网关> dns-nameservers <DNS服务器>。若用动态IP,将inet static改为inet dhcp即可。sudo systemctl restart networking使配置生效。