|
楼主 |
发表于 2007-4-27 15:27:10
|
显示全部楼层
Post by hzg
1. 查清楚你的网卡驱动模块是否被加载:
- cat /proc/net/dev | grep eth
复制代码 或
如果没有任何输出,则说明你的网卡没有被识别,那么你需要根据你的网卡型号调整内核配置。
在我的机器上这两条命令的输出是这样的:
- hzg@CP_B:~$ cat /proc/net/dev | grep eth
- eth0:1117653140 6900144 0 0 0 0 0 0 72741350 6636299 0 0 0 0 0 0
- hzg@CP_B:~$
复制代码- hzg@CP_B:~$ dmesg | grep eth0
- eth0: RTL8169sc/8110sc at 0xf8834c00, 00:16:17:d8:4e:2e, IRQ 20
- r8169: eth0: link up
- device eth0 entered promiscuous mode
- br0: port 1(eth0) entering learning state
- br0: port 1(eth0) entering forwarding state
- eth0: no IPv6 routers present
- r8169: eth0: link down
- br0: port 1(eth0) entering disabled state
- r8169: eth0: link up
- br0: port 1(eth0) entering learning state
- br0: port 1(eth0) entering forwarding state
- hzg@CP_B:~$
复制代码
2. 你可以使用 netconfig 来配置你的网络.
先谢了 我回去试试看 |
|