解決Linux操作系統(tǒng)默認(rèn)找不到網(wǎng)卡驅(qū)動(dòng)

1. 安裝網(wǎng)卡
機(jī)器太新,以至于現(xiàn)有的Linux版本無(wú)法認(rèn)出,比如機(jī)器找不到網(wǎng)卡,這時(shí)候怎么辦呢?
別急,首先你需要知道網(wǎng)卡是什么型號(hào)的,以本實(shí)驗(yàn)室新購(gòu)入的電腦為例,它的網(wǎng)卡是集成的,型號(hào)是Realtek RTL8168/8111 PCI-E Gigabit Ethernet NIC。然后我們到Realtek的官方網(wǎng)站去下載相應(yīng)的Linux驅(qū)動(dòng)程序r8168-8.005.00.tar.bz2,按照說(shuō)明安裝。
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(看看有沒(méi)有加載網(wǎng)卡驅(qū)動(dòng))
# /sbin/ifconfig –a(看看有沒(méi)有相關(guān)網(wǎng)卡被啟動(dòng)的信息)
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,...
這里也可以通過(guò)系統(tǒng)→管理→網(wǎng)絡(luò)來(lái)設(shè)置IP地址等,最后激活。
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(根據(jù)機(jī)器本身情況設(shè)置)
修改:vi /etc/hosts.equiv,增加一行:(如果沒(méi)有該文本,可建立一個(gè))
node3
3. 啟動(dòng)ssh服務(wù)
大部分的Linux版本應(yīng)該都會(huì)自帶該程序
#ssh-keygen
#cd .ssh
#cp id_rsa.pub authorized_keys
#ssh node3(如果成功,會(huì)顯示上次登陸的時(shí)間, node3是主機(jī)名)
附加信息:
ifup eth0看看能否啟動(dòng)eth0
lsmod看看有沒(méi)有加載網(wǎng)卡驅(qū)動(dòng)
dmesg看看有沒(méi)有網(wǎng)卡啟動(dòng)時(shí)的錯(cuò)誤信息
相關(guān)文章
- 在linux系統(tǒng)中,可以使用mount命令掛載光盤(pán)鏡像文件、移動(dòng)硬盤(pán)、U盤(pán)以及Windows網(wǎng)絡(luò)共享和UNIX NFS網(wǎng)絡(luò)共享等2014-06-02
- 如果要查看磁盤(pán)還剩多少空間,當(dāng)然是用df的命令了,這里腳本之家小編簡(jiǎn)單為大家介紹下2014-06-02
CentOS如何將DVD設(shè)置為默認(rèn)yum源以便DVD中軟件的下載安裝
yum是CentOS系統(tǒng)中的軟件包管理器,用于軟件的下載與安裝,那么如何將DVD作為默認(rèn)yum源,以便DVD中軟件的下載安裝,下面有個(gè)不錯(cuò)的方法,大家可以嘗試下2015-01-16CentOS中將DVD作為默認(rèn)yum源的設(shè)置方法
默認(rèn)的yum是以網(wǎng)絡(luò)來(lái)安裝的,在沒(méi)有網(wǎng)絡(luò)或者網(wǎng)速不佳的情況下,通過(guò)yum來(lái)安裝軟件是意見(jiàn)非常痛苦的事情2012-04-18Linux系統(tǒng)下生成引導(dǎo)盤(pán)與驅(qū)動(dòng)程序盤(pán)的方法
RedHat Linux提供了四個(gè)使用程序,可以幫你生成引導(dǎo)盤(pán)和驅(qū)動(dòng)程序盤(pán),其中兩個(gè)(dd和cat)適用于Linux,兩個(gè)(RAWRITE.EXE和RAWWRITEWIN.EXE)適用于Microsoft windows。Linux實(shí)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包時(shí)遇到Header V3 DSA signature: NOKEY時(shí)解決辦法
linux/centos Header V3 DSA signature: NOKEY, key ID 錯(cuò)誤解決方法,需要的朋友可以參考下。2010-10-17- phpMyAdmin是一種MySQL的管理工具,它直接從web上去管理MySQL。 假設(shè)你的web(網(wǎng)頁(yè)存放)根目錄是 /var/www/ 假設(shè)你的主機(jī)web訪(fǎng)問(wèn)是這樣的 http://192.168.1.11/ &n2008-09-08
- 作為一個(gè)CentOS的新手,學(xué)習(xí)好如何在在Ubuntu 中修改默認(rèn)程序時(shí)非常重要的,本文將為大家詳細(xì)的講解一下關(guān)于怎樣在Ubuntu 中修改默認(rèn)程序2016-11-23