Debian 6 互联网问题:ifconfig 不显示 eth0

Debian 6 互联网问题:ifconfig 不显示 eth0

我刚刚在我的 ASUS K53S 机器上安装了 64 位 Debian 6.06,但互联网无法正常工作...无线工作正常。

NetworkManager 不显示任何有线连接,并且终端中的 ifconfig 不显示任何 eth0 接口 我的/etc/network/interfaces文件包含以下几行

auto lo
iface lo inet loopback

谷歌搜索它没有帮助。有帮助吗?

答案1

我刚刚在华硕笔记本电脑上安装了 Linux,以太网卡是 Atheros 以太网+蓝牙组合,其驱动程序尚未集成到普通内核中。

检查以太网卡 ( lspci -nn) 的硬件 ID,看看是否适用于您。

答案2

把这个添加到怎么样/etc/network/interfaces

对于 DHCP:

auto eth0
iface eth0 inet dhcp

或静态:

auto eth0
iface eth0 inet static
        address 192.168.1.1
        netmask 255.255.255.0
gateway 192.168.1.254

我想您的网卡正在工作并且驱动程序已正确加载,请使用lspci或仅使用进行检查grep eth0 /proc/net/dev

相关内容