jacky.lee 发表于 2008-04-05 17:18

安装Solaris X86不能识别网卡怎么办?

安装Solaris X86不能识别网卡怎么办?

1.确认你的网卡型号,从而得到网卡的vendor id:
    主板/硬件手册或者windows设备管理器都能得到设备的厂商名称,然后到
PCI
设备的数据库去搜索相应的vendor id。
    推荐站点:
http://pci-ids.ucw.cz

    2.通过vendorid确认网卡的devide id:
    # prtconf -vp | grep
    得到可能的devideid后到PCI设备的数据库得到准确的设备型号。
    推荐站点:
http://pci-ids.ucw.cz/

    3.确认vendorid和deviceid后,尝试Solaris系统自带的
驱动

    寻找和系统内和自己device id近似的驱动名:
    # grep vendorid /etc/driver_aliases
    需要确认设备的厂商和型号是否与找到的驱动相近,可以再次利用PCI设备的数据库。
    如果可以确认,可以尝试加载该驱动:
    # devfsadm
    # add_drv -i '"vendorid,deviceid"'
    4.寻找其它网卡驱动
    1) 第三方网卡驱动列表:
http://homepage2.nifty.com/mrym3/taiyodo/eng/

    2) 另一个第三方网卡驱动列表:
http://sol-enet.sourceforge.net/

    3)HCL的network列表:
http://www.sun.com/bigadmin/hcl/data/sol/

    4) 网卡厂家的网站。例如,Broadcom的网站就有其Solaris平台的驱动下载
    5) Solaris x86驱动的资源:
http://solaris-x86.org/software/drivers/

    6)
Sun
DryDog参考:
http://www.sun.drydog.com/faq/6.html#6.7

    7) Google
    8) 发邮件到OpenSolaris社区求助,最好提供prtconf -vp的输出和具体网卡型号


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/36549/showart_518029.html
页: [1]
查看完整版本: 安装Solaris X86不能识别网卡怎么办?