如何在linux下安装网卡驱动?

如何在linux下安装网卡驱动?,第1张

一、查看网卡型号和机器位数

1、查看网卡型号

linux系统下通过以下命令,可以查看当前的网卡驱动信息;

[box color="white" icon="none"]

[root@localhost zhangy]# lspci |grep -i eth

03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 06)

[/box]

2、查看机器位数

驱动程序是要区分系统是32位系统还是64位系统的, 所以通过以下linux命令,就可以知道 *** 作系统的位数了;

[box color="white" icon="none"]

[root@localhost ~]# uname -a

Linux localhost.localdomain 2.6.18-308.13.1.el5PAE #1 SMP Tue Aug 21 17:50:26 EDT 2012 i686 i686 i386 GNU/Linux

[/box]

下载前先看一下你的网卡驱动,如果是最新的就不用在重新装了。

[box color="white" icon="none"]

[root@localhost zhangy]# ethtool -i eth0

driver: r8169

version: 2.3LK-1-NAPI

firmware-version:

bus-info: 0000:03:00.0

[/box]

RTL8111/8168B就是网卡的型号,这样你可以网卡的型号来找一下网卡驱动的官方网站,然后下载最新的网卡驱动,驱动分64位和32位的,i386,i686是32位的机器,x86_64表示是64位的机器,不要选错驱动了。

二、下载驱动,并安装

1、解压

[box color="white" icon="none"]

[root@localhost download]# tar jxvf r8168-8.032.00.tar.bz2

[/box]

2、安装

[box color="white" icon="none"]

[root@localhost r8168-8.032.00]# make &&make install

[/box]

如果报以下错误

make -C /lib/modules/2.6.18-308.8.2.el5PAE/build SUBDIRS=/home/zhangy/r8168-8.032.00/src INSTALL_MOD_DIR=kernel/drivers/net modules_install

make: *** /lib/modules/2.6.18-308.8.2.el5PAE/build: 没有那个文件或目录。 停止。

make: *** [install] 错误 2

说明你kernel源码没有安装。安装kernel源码

[box color="white" icon="none"]

[root@localhost r8168-8.032.00]# yum install kernel-xen kernel-xen-devel kernel \

>kernel-PAE kernel-PAE-devel kernel-devel kernel-headers

[/box]

安装完以后,一定要重启机器。不然下面 *** 作就过不去了,会报FATAL: Module r8168 not found.

[box color="white" icon="none"]

[root@localhost r8168-8.032.00]# depmod -a

[root@localhost r8168-8.032.00]# modprobe r8168

[/box]

编辑配置文件/etc/modprobe.cof,如果以前没有添加alias eth0 r8168,如果已经有了修改一下成alias eth0 r8168。

查一下驱动是不是加载了,如果有以下内容说明驱动安装成功了。

[box color="white" icon="none"]

[root@localhost r8168-8.032.00]# lsmod |grep r8168

r8168 231132 0

[/box]

必须重新启动一下机器,用ethtool查看驱动才会改变,不然还是老样子。下面是新的驱动。

[box color="white" icon="none"]

[root@localhost ~]# ethtool -i eth0

driver: r8168

version: 8.032.00-NAPI

firmware-version:

bus-info: 0000:02:00.0

[/box]

用 lshw 命令即可看到各种硬件参数。比如,我的电脑用这个命令返回的内容中包括:

*-pci:0

description: PCI bridge

product: Intel Corporation

vendor: Intel Corporation

physical id: 1c

bus info: pci@0000:00:1c.0

version: 35

width: 32 bits

clock: 33MHz

capabilities: pci pciexpress msi pm normal_decode bus_master cap_list

configuration: driver=pcieport

resources: irq:16 ioport:1000(size=4096) memory:91100000-911fffff

*-network DISABLED

description: Ethernet interface

product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller

vendor: Realtek Semiconductor Co., Ltd.

physical id: 0

bus info: pci@0000:01:00.0

logical name: enp1s0

version: 15

serial: 30:65:ec:a3:e2:f3

size: 10Mbit/s

capacity: 1Gbit/s

width: 64 bits

clock: 33MHz

capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation

configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half latency=0 link=no multicast=yes port=MII speed=10Mbit/s

resources: irq:308 ioport:1000(size=256) memory:91104000-91104fff memory:91100000-91103fff

*-pci:1

description: PCI bridge

product: Intel Corporation

vendor: Intel Corporation

physical id: 1c.1

bus info: pci@0000:00:1c.1

version: 35

width: 32 bits

clock: 33MHz

capabilities: pci pciexpress msi pm normal_decode bus_master cap_list

configuration: driver=pcieport

resources: irq:17 memory:91000000-910fffff

*-network

description: Wireless interface

product: QCA9565 / AR9565 Wireless Network Adapter

vendor: Qualcomm Atheros

physical id: 0

bus info: pci@0000:02:00.0

logical name: wlp2s0

version: 01

serial: c8:ff:28:48:04:ed

width: 64 bits

clock: 33MHz

capabilities: pm msi pciexpress bus_master cap_list rom ethernet physical wireless

configuration: broadcast=yes driver=ath9k driverversion=4.4.0-51-generic firmware=N/A ip=192.168.43.133 latency=0 link=yes multicast=yes wireless=IEEE 802.11bgn

resources: irq:17 memory:91000000-9107ffff memory:91080000-9108ffff

这个片段中我们可用看到我的电脑有两个PCI总线(PCI:0和PCI:1),其中“clock: 33MHz”表明总线频率位33兆。

可以按照如下方式进行 *** 作:

一、查看cpu总个数方法:

1、首先执行top命令,如下图中内容所表示。

2、在top命令的显示界面,按数字键1,即可查看到当前系统中的总cpu数,如下图中内容所表示。

二、查看总内存的方法:

1、free命令主要用于显示内存数量,如下图中内容所表示。

2、一般使用free命令的-h参数,更人性化的显示,如下图中内容所表示。

扩展资料

linux通用命令:

1、date :print or set the system date and time

2、stty -a: 可以查看或者打印控制字符(Ctrl-C, Ctrl-D, Ctrl-Z等)

3、passwd: print or set the system date and time (用passwd -h查看)

4、logout, login: 登录shell的登录和注销命令

5、pwd: print working directory

6、more, less, head tail: 显示或部分显示文件内容.

7、lp/lpstat/cancel, lpr/lpq/lprm: 打印文件.

8、更改文件权限: chmod u+x...

9、删除非空目录:rm -fr dir

10、拷贝目录: cp -R dir

参考资料:百度百科-linux


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/7491645.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-06
下一篇 2023-04-06

发表评论

登录后才能评论

评论列表(0条)

保存