内射老阿姨1区2区3区4区_久久精品人人做人人爽电影蜜月_久久国产精品亚洲77777_99精品又大又爽又粗少妇毛片

Linux操作系統(tǒng)找不到網(wǎng)卡驅(qū)動(dòng)怎么辦

本篇內(nèi)容主要講解“Linux操作系統(tǒng)找不到網(wǎng)卡驅(qū)動(dòng)怎么辦”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Linux操作系統(tǒng)找不到網(wǎng)卡驅(qū)動(dòng)怎么辦”吧!

本篇內(nèi)容主要講解“Linux操作系統(tǒng)找不到網(wǎng)卡驅(qū)動(dòng)怎么辦”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Linux操作系統(tǒng)找不到網(wǎng)卡驅(qū)動(dòng)怎么辦”吧!

10年的肇源網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。成都全網(wǎng)營(yíng)銷的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整肇源建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。創(chuàng)新互聯(lián)從事“肇源網(wǎng)站設(shè)計(jì)”,“肇源網(wǎng)站推廣”以來,每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。

1. 安裝網(wǎng)卡

機(jī)器太新,以至于現(xiàn)有的Linux版本無法認(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,按照說明安裝。

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(看看有沒有加載網(wǎng)卡驅(qū)動(dòng))

# /sbin/ifconfig –a(看看有沒有相關(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,...

這里也可以通過系統(tǒng)→管理→網(wǎng)絡(luò)來設(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 .

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,增加一行:(如果沒有該文本,可建立一個(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看看有沒有加載網(wǎng)卡驅(qū)動(dòng)

dmesg看看有沒有網(wǎng)卡啟動(dòng)時(shí)的錯(cuò)誤信息

新聞標(biāo)題:Linux操作系統(tǒng)找不到網(wǎng)卡驅(qū)動(dòng)怎么辦
分享路徑:http://www.rwnh.cn/article34/eecgse.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站維護(hù)網(wǎng)站制作、網(wǎng)頁設(shè)計(jì)公司、商城網(wǎng)站、品牌網(wǎng)站設(shè)計(jì)、品牌網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都app開發(fā)公司
桐梓县| 鹤岗市| 宣威市| 肃南| 长岛县| 凤凰县| 安平县| 南安市| 彰化市| 宁化县| 称多县| 汾阳市| 中阳县| 濮阳市| 建阳市| 内黄县| 青冈县| 博爱县| 郯城县| 太康县| 弥勒县| 天全县| 仁化县| 彩票| 张掖市| 南京市| 兴仁县| 西安市| 峨边| 布尔津县| 九台市| 广宁县| 咸丰县| 郎溪县| 万源市| 屯留县| 华坪县| 吉安市| 叶城县| 吴旗县| 德保县|