解决Linux操作系统默认找不到网卡驱动
1. 安装网卡
机器太新,以至于现有的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,...
1. 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"
2. 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
2. 修改:#vi /etc/hosts,在该文本中,增加两行:
127.0.0.1 localhost.localdomain localhost
192.168.4.101 node3(根据机器本身情况设置)
修改:vi /etc/hosts.equiv,增加一行:(如果没有该文本,可建立一个)
node3
3. 启动ssh服务
大部分的Linux版本应该都会自带该程序
#ssh-keygen
#cd .ssh
#cp id_rsa.pub authorized_keys
#ssh node3(如果成功,会显示上次登陆的时间, node3是主机名)
附加信息:
ifup eth0看看能否启动eth0
lsmod看看有没有加载网卡驱动
dmesg看看有没有网卡启动时的错误信息
相关文章
- 在linux系统中,可以使用mount命令挂载光盘镜像文件、移动硬盘、U盘以及Windows网络共享和UNIX NFS网络共享等2014-06-02
- 如果要查看磁盘还剩多少空间,当然是用df的命令了,这里脚本之家小编简单为大家介绍下2014-06-02
CentOS如何将DVD设置为默认yum源以便DVD中软件的下载安装
yum是CentOS系统中的软件包管理器,用于软件的下载与安装,那么如何将DVD作为默认yum源,以便DVD中软件的下载安装,下面有个不错的方法,大家可以尝试下2015-01-16- 默认的yum是以网络来安装的,在没有网络或者网速不佳的情况下,通过yum来安装软件是意见非常痛苦的事情2012-04-18
- RedHat Linux提供了四个使用程序,可以帮你生成引导盘和驱动程序盘,其中两个(dd和cat)适用于Linux,两个(RAWRITE.EXE和RAWWRITEWIN.EXE)适用于Microsoft windows。Linux实2008-09-08
- 1、源代码包的安装 gzip -d apache_1.3.20.tar.gz (解压) tar xvf apache_1.3.20.tar (解包) cd apache_1.3.20 ./configure (配置) ----./configure --2008-09-08
CentOS安装rpm包时遇到Header V3 DSA signature: NOKEY时解决办法
linux/centos Header V3 DSA signature: NOKEY, key ID 错误解决方法,需要的朋友可以参考下。2010-10-17- phpMyAdmin是一种MySQL的管理工具,它直接从web上去管理MySQL。 假设你的web(网页存放)根目录是 /var/www/ 假设你的主机web访问是这样的 http://192.168.1.11/ &n2008-09-08
- 作为一个CentOS的新手,学习好如何在在Ubuntu 中修改默认程序时非常重要的,本文将为大家详细的讲解一下关于怎样在Ubuntu 中修改默认程序2016-11-23
最新评论