广告
返回顶部
首页 > 资讯 > 操作系统 >Linux操作系统找不到网卡驱动怎么办
  • 922
分享到

Linux操作系统找不到网卡驱动怎么办

2023-06-10 13:06:06 922人浏览 薄情痞子
摘要

本篇内容主要讲解“linux操作系统找不到网卡驱动怎么办”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Linux操作系统找不到网卡驱动怎么办”吧! 安装网卡机器太新,以至于现有的Linux版本无

本篇内容主要讲解“linux操作系统找不到网卡驱动怎么办”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Linux操作系统找不到网卡驱动怎么办”吧!

安装网卡

机器太新,以至于现有的Linux版本无法认出,比如机器找不到网卡,这时候怎么办呢?

别急,首先你需要知道网卡是什么型号的,以本实验室新购入的电脑为例,它的网卡是集成的,型号是Realtek RTL8168/8111 PCI-E Gigabit Ethernet NIC。然后我们到Realtek的官方网站去下载相应的Linux驱动程序r8168-8.005.00.tar.bz2,按照说明安装。

Unpack the tarball :

# tar vjxf r8168-8.aaa.bb.tar.bz2

Change to the directory:

# cd r8168-8.aaa.bb

If you are running the target kernel, then you should be able to do :

# make clean modules (as root or with sudo)

# make install

# /sbin/depmod -a

# /sbin/insmod ./src/r8168.ko (or r8168.o in linux kernel 2.4.x)

You can check whether the driver is loaded by using following commands.

# /sbin/lsmod | grep r8168(看看有没有加载网卡驱动)

# /sbin/ifconfig –a(看看有没有相关网卡被启动的信息)

If there is a device name, ethX, shown on the monitor, the linux

driver is loaded. Then, you can use the following command to activate

the ethX.

# ifconfig ethX up

,where X=0,1,2,...

这里也可以通过系统→管理→网络来设置IP地址等,最后激活。

Set manually

a. Set the IP address of your Machine.

# ifconfig ethX "the IP address of your machine"

b. Set the IP address of DNS.

Insert the following configuration in /etc/resolv.conf.

nameserver "the IP address of DNS"

c. Set the IP address of gateway.

# route add default gw "the IP address of gateway"

Set by doing configurations in /etc/sysconfig/network-scripts

/ifcfg-ethX for Redhat and Fedora, or /etc/sysconfig/network

/ifcfg-ethX for SuSE. There are two examples to set network

configurations.

a. Fix IP address:

DEVICE=eth0

BOOTPROTO=static

ONBOOT=yes

TYPE=ethernet

NETMASK=255.255.255.0

IPADDR=192.168.1.1

GATEWAY=192.168.1.254

BROADCAST=192.168.1.255

修改:#vi /etc/hosts,在该文本中,增加两行:

127.0.0.1 localhost.localdomain localhost

192.168.4.101 node3(根据机器本身情况设置)

修改:vi /etc/hosts.equiv,增加一行:(如果没有该文本,可建立一个)

node3

启动ssh服务

大部分的Linux版本应该都会自带该程序

#ssh-keygen

#cd .ssh

#cp id_rsa.pub authorized_keys

#ssh node3(如果成功,会显示上次登陆的时间, node3是主机名)

附加信息:

ifup eth0看看能否启动eth0

lsmod看看有没有加载网卡驱动

dmesg看看有没有网卡启动时的错误信息

到此,相信大家对“Linux操作系统找不到网卡驱动怎么办”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

--结束END--

本文标题: Linux操作系统找不到网卡驱动怎么办

本文链接: https://www.lsjlt.com/news/260731.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作