阅读:4085回复:2
ubuntu网卡问题
ubuntu6.06系统
华硕 A8N-E 主板带网卡Marvell千兆以太网络 & AI NET2 路由上网 每次开机都要重新激活网卡才可上网 求解决办法 系统启动时,已显示网卡激活,但还要重新激活一次 |
|
1楼#
发布于:2006-12-03 21:07
试试,谢
![]() |
|
2楼#
发布于:2006-12-03 21:07
/etc/network/interfaces
# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # This is a list of hotpluggable network interfaces. # They will be activated automatically by the hotplug subsystem. mapping hotplug script grep map eth0 # The primary network interface iface eth0 inet static address 192.168.0.55 netmask 255.255.255.0 gateway 192.168.0.1 auto eth0 /etc/resolv.conf ; generated by NetworkManager, do not edit! ; Use a local caching nameserver controlled by NetworkManager nameserver 192.168.0.1 nameserver 127.0.0.1 重启试试 |
|