小螞蟻  
          風雨過后才見彩虹
          公告

          • —————————————
            李麗君
            軟件測試工作者
            廣東籍貫的海南人
            北京生活12年
            目前在深圳

            郵箱:
            llj2003hbdd@163.com
            —————————————
            說明:本Blog中的內容均為本人原創或轉載,本人依法保留Blog內原創文章的所有權利,如需轉載,請注明作者及出處。未經許可,不得將本Blog內文章用于任何盈利性用途。
            —————————————
          日歷
          <2012年11月>
          28293031123
          45678910
          11121314151617
          18192021222324
          2526272829301
          2345678

          導航

          常用鏈接

          留言簿(174)

          隨筆分類(189)

          0--感興趣的網站

          1--國內測試網站

          2--測試同行的blog

          3--開發好友的blog

          最新評論

           

          參考資料:http://blog.chinaunix.net/uid-10697776-id-3080243.html
                        http://hi.baidu.com/widebright/item/2f28cd0da72b9210addc70a7


          問:dell的optiplex 360或者optiplex 380機器,broadcom網卡如何在redhat enterprise linux 5系統下識別和安裝驅動?

          答案如下:
          首先看網卡是否已經正確連接到計算機,使用的命令是lspci。redhat上使用lspci的輸出:
          [root@localhost ~]# lspci
          00:00.0 Host bridge: Intel Corporation Eaglelake DRAM Controller (rev 03)
          00:01.0 PCI bridge: Intel Corporation Eaglelake PCI Express Root Port (rev 03)
          00:02.0 VGA compatible controller: Intel Corporation Eaglelake Integrated Graphics Controller (rev 03)
          00:02.1 Display controller: Intel Corporation Eaglelake Integrated Graphics Controller (rev 03)
          00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01)
          00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 01)
          00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 01)
          00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 01)
          00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 01)
          00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 01)
          00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 01)
          00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
          00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01)
          00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01)
          00:1f.2 IDE interface: Intel Corporation 82801GB/GR/GH (ICH7 Family) SATA IDE Controller (rev 01)
          00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 01)

          會發現系統識別不到這個網卡的設備,需要更新網卡設備讀取文件,具體是:
          用update-pciids 命令先更新一下 系統的pci.ids文件,這個最新的應該有人維護的在http://pciids.sourceforge.net/ 可以找得到。
          或者像我這樣直接手工更新一下/usr/share/hwdata/pci.ids 文件的內容。
          把pci.ids文件放到tmp目錄
          Redhat上使用命令:cp /tmp/pci.ids /usr/share/hwdata/pci.ids;回車后回復yes
          再次執行lspci,結果如下,成功識別。
          [root@localhost ~]# cp /tmp/llj/pci.ids /usr/share/hwdata/pci.ids
          cp:是否覆蓋“/usr/share/hwdata/pci.ids”? yes
          [root@localhost ~]# lspci
          00:00.0 Host bridge: Intel Corporation 4 Series Chipset DRAM Controller (rev 03)
          00:01.0 PCI bridge: Intel Corporation 4 Series Chipset PCI Express Root Port (rev 03)
          00:02.0 VGA compatible controller: Intel Corporation 4 Series Chipset Integrated Graphics Controller (rev 03)
          00:02.1 Display controller: Intel Corporation 4 Series Chipset Integrated Graphics Controller (rev 03)
          00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition Audio Controller (rev 01)
          00:1c.0 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 1 (rev 01)
          00:1d.0 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #1 (rev 01)
          00:1d.1 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #2 (rev 01)
          00:1d.2 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #3 (rev 01)
          00:1d.3 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #4 (rev 01)
          00:1d.7 USB controller: Intel Corporation NM10/ICH7 Family USB2 EHCI Controller (rev 01)
          00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
          00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01)
          00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01)
          00:1f.2 IDE interface: Intel Corporation NM10/ICH7 Family SATA Controller [IDE mode] (rev 01)
          00:1f.3 SMBus: Intel Corporation NM10/ICH7 Family SMBus Controller (rev 01)
          02:00.0 Ethernet controller: Broadcom Corporation NetLink BCM57780 Gigabit Ethernet PCIe (rev 01)

          網卡成功識別后,使用ifconfig命令看網卡信息,發現沒有eth0,需要進行如下操作:
          下載網卡驅動安裝包:
          kernel-2.6.18-92.el5.i686.rpm
          kernel-devel-2.6.18-92.el5.i686.rpm
          kernel-xen-2.6.18-92.el5.i686.rpm
          kernel-xen-devel-2.6.18-92.el5.i686.rpm
          tg3-3.122n-1.src.rpm
          使用rpm –ivh 命令安裝上面的kernel包
          Tg3包安裝步驟如下:
          [root@localhost llj]# rpm -ivh tg3-3.122n-1.src.rpm
          1:tg3                    ########################################### [100%]
          [root@localhost llj]# cd /usr/src/redhat/
          [root@localhost redhat]# rpmbuild -bb SPECS/tg3.spec
          [root@localhost redhat]# rpm -ivh RPMS/i386/tg3-3.122n-1.i386.rpm
          Preparing...                ########################################### [100%]
          1:tg3                    ########################################### [100%]
          [root@localhost redhat]# modprobe tg3
          打開網絡設備:[root@linpcl root]#ifconfig eth0 up
          使用命令ifconfig查看可看見eth0

          到此Dell optiplex 380 broadcom網卡在redhat 5下網卡識別和安裝驅動完畢。^_^。

          posted on 2012-11-29 18:03 lijun 閱讀(1450) 評論(0)  編輯  收藏 所屬分類: 測試環境維護實踐
           
          Copyright © lijun Powered by: 博客園 模板提供:滬江博客
          主站蜘蛛池模板: 廉江市| 青海省| 宝山区| 西乡县| 龙川县| 濮阳县| 留坝县| 青神县| 竹溪县| 如皋市| 塘沽区| 天祝| 那坡县| 绥德县| 泾川县| 新宾| 黔西县| 涡阳县| 敦煌市| 长泰县| 古浪县| 岳阳县| 彩票| 南漳县| 府谷县| 同江市| 沅江市| 阜新市| 迭部县| 南乐县| 渝北区| 敦煌市| 沭阳县| 宜黄县| 宜都市| 谷城县| 宜章县| 武平县| 苍南县| 唐山市| 叶城县|