我有东芝卫星笔记本电脑,英特尔(R) Core (商标) i5-4200m CPU,我已经将服务器5安装到Xen VM中。在我使用这些命令之后:
ifconfig eth0
/sbin/ifconfig我得到这些产出:
[root@localhost ~]# ifconfig eth0
eth0: error fetching interface information: Device not found
[root@localhost ~]# /sbin/ifconfig
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:8 errors:0 dropped:0 overruns:0 frame:0
TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:480 (480.0 b) TX bytes:480 (480.0 b)
virbr0 Link encap:Ethernet HWaddr 52:54:00:02:DA:F5
inet addr:192.168.122.1 Bcast:192.168.122.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)因此,RHEL-5不支持我的Atheros以太网驱动器.
我有第二个操作系统Ubuntu13.10版本,它支持我的Atheros以太网,在我使用以下命令:lspci_ grep -I net之后,我得到了这个输出:
02:00.0 Network controller: Atheros Communications Inc. AR9565 Wireless Network Adapter (rev 01)
03:00.0 Ethernet controller: Qualcomm Atheros QCA8172 Fast Ethernet (rev 10)那么,我可以在服务器5中手动安装高通公司的QCA8172快速以太网(rev 10)吗?如果可能的话,我该怎么做?以及如何下载红帽企业Linux服务器5的驱动程序?
发布于 2014-04-19 19:15:21
默认情况下,ifconfig只显示已打开的接口。要查看所有可用的接口,请尝试ifconfig -a、ip link show或ls /sys/class/net。
请注意,您的NIC不一定只因为它在其他发行版之下就被命名为eth0。从技术上讲,它可以被命名为任何东西--这是由系统配置决定的--尽管有不同的(nb:各种标准,就像多个这样的标准)。
如果您看到ifconfig -a列出的接口没有在ifconfig中列出,请将它们与ifconfig [whatever] up或ip link set [whatever] up放在一起,然后再次检查。您应该能够知道哪一个是以太网卡,特别是如果您已经知道MAC地址。您还可以通过遵循/sys/class/net中的符号链接来获得线索。
事实上,您有一个virbr0也意味着这是一个VM (而不是硬件安装),这可能很重要,您可能需要在您的问题中澄清这一点,如果这没有帮助的话。
https://unix.stackexchange.com/questions/125579
复制相似问题