• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

(转帖)神州数码DCN-530TX快速以太网卡在Solaris 2/7/8下的安装

发布: 2007-6-08 22:43 | 作者: seanhe | 来源: | 查看: 125次 | 进入软件测试论坛讨论

领测软件测试网
下面是530TX驱动盘上的文件:
  
神州数码DCN-530TX快速以太网卡在Solaris 2/7/8下的安装

  该文档描述了神州数码DCN-530TX快速以太网卡在Solaris 2/7/8(x86版本)下安装步骤。

  内容:
  ---------
  (A)在Solaris 7/8下安装/卸载驱动
  (B)在Solaris 2下安装/卸载驱动
  (C)改变媒体联接类型

  (A)在Solaris 7/8下安装/卸载驱动
  ===============================

  (A.1) 安装驱动

  1.如果系统已经启动,输入su并回车。系统将提示输入root口令。否则,打开电源,启动系统,输入root口令。

  2.插入驱动程序磁盘。推荐使用下列命令激活磁盘驱动器:
    # volcheck

  3.用下列命令添加驱动程序打包文件:
    # cd /floppy/floppy0/solaris/x86
    # ./installer
    然后根据下面指令完成安装。

  4.制作hostname.afe0,使得Solaris系统在启动过程中加载网卡驱动。
    # uname -n > /etc/hostname.afe0
    现在hostname.afe0包含Solaris系统的主机名。

  5.通过配置Hosts文件来配置网卡的IP地址。具体细节请参考Solaris文档。

  (A.2) 卸载驱动

  为了卸载驱动,只需要简单地在GEDafed包上运行“pkgrm”命令。如果不是root身份,系统会请求输入系统的root口令。
  # pkgrm GEDafed

  (B)在Solaris 2下安装/卸载驱动
  =============================

  (B.1) 安装驱动

  1.如果系统已经启动,输入su并回车。系统将提示输入root口令。否则,打开电源,启动系统,输入root口令。

  2.插入驱动程序磁盘。推荐使用下列命令激活磁盘驱动器:
    # mount -F pcfs /dev/fd0 /mnt
  3.使用下列命令复制驱动程序文件到系统
    # cd /mnt/SOLARIS/X86/Packages/I386/GEDafed/RELOC/KERNEL
    # cd DRV
    # cp AFE /kernel/drv/afe
  4.更改驱动程序文件的访问权限
    # cd /kernel/drv
    # chmod 755 afe
  5.使用下列命令加载驱动
    # add_drv -m "* 0666 root root" -i '"pci1113,1216"' afe
  6.复制配置文件到系统
        # cd /mnt/SOLARIS/X86
        # cp AFE.CONF /kernel/drv/afe.conf
  7.制作hostname.afe0,使得Solaris系统在启动过程中加载网卡驱动。
    # uname -n > /etc/hostname.afe0
    现在hostname.afe0包含Solaris系统的主机名。

  8.通过配置Hosts文件来配置网卡的IP地址。具体细节请参考Solaris文档。

  (B.2) 卸载驱动

  1. 卸载驱动
   # cd /kernel/drv
   # rem_drv afe
  2. 删除hostname.afe0
   # rm /etc/hostname.afe0

  (C)改变媒体联接类型
  ========================
  安装完成后,可以在afe.conf文件(位于/kernel/drv/)中设置媒体类型,所有支持的媒体类型在文件中列出。

  缺省:缺省媒体类型为“AutoSense”。

  下面是在afe.conf文件中的缺省设定:

  AutoSense;                        ###  AutoSense
  #speed=10 full-duplex=0;          ###  10BaseT
  #speed=10 full-duplex=1;          ###  10BaseT Full-Duplex
  #speed=100 full-duplex=0;         ###  100BaseTx
  #speed=100 full-duplex=1;         ###  100BaseTx Full-Duplex

  例如,如果你想将媒体类型改为100BaseTx,请按照下列例子改动afe.conf文件:

  #AutoSense;                       ###  AutoSense
  #speed=10 full-duplex=0;          ###  10BaseT
  #speed=10 full-duplex=1;          ###  10BaseT Full-Duplex
  speed=100 full-duplex=0;          ###  100BaseTx
  #speed=100 full-duplex=1;         ###  100BaseTx Full-Duplex



English:

          DigitalChina DCN-530TX Fast Ethernet Adapter
               Solaris 2/7/8 Driver Installation

This document describes the steps necessary to install the
drivers for the DigitalChina DCN-530TX Fast Ethernet Adapter in
Solaris 2/7/8 on x86 systems. 

  Contents:
  ---------

  (A) Installing/Uninstalling the driver under Solaris 7/8
  (B) Installing/Uninstalling the driver under Solaris 2
  (C) Changing the Media Type in Solaris

(A) Installing/Uninstalling the driver under Solaris 7/8
================================================================

(A.1) Installing the driver

1. If the system is already on, enter su [ENTER]. You will be 
   prompted for the root password. Otherwise, power up the
   system, and enter the root password when prompted.
2. Insert the Driver Disk. We recommend that you use the command
   'volcheck' to mount the Floppy driver by following command:

# volcheck 

3. Add the driver packages by entering the following command:

# cd /floppy/floppy0/solaris/x86
# ./installer

   Then following the screen instructions to complete the
   installation.
   
4. Make hostname.afe0 to make Solaris system load the driver
   during system up.
   
    # uname -n > /etc/hostname.afe0
    
   Now the hostname.afe0 file contains the hostname of your
   Solaris system.
   
5. Configure the Hosts File to configure IP address of the
   adapter. Please Refer to Solaris Document for more detail.

(A.2) Uninstalling the driver
================================================================
To remove the software, simply running "pkgrm" command on the
GEDafed package. If you are not already root, it will prompt
you for the system's root password.

# pkgrm GEDafed


(B) Installing/Uninstalling the driver under Solaris 2
================================================================

(B.1) Installing the driver

1. If the system is already on, enter su [ENTER]. You will be 
   prompted for the root password. Otherwise, power up the
   system, and enter the root password when prompted.
2. Insert the Driver Disk. Mount the Floppy drive by following
   command:
# mount -F pcfs /dev/fd0 /mnt
3. Copy the driver from Floppy Disk to System
        # cd /mnt/SOLARIS/X86/Packages/I386/GEDafed/RELOC/KERNEL
        # cd DRV
        # cp AFE /kernel/drv/afe
4. Change access mode of the driver by following command:
        # cd /kernel/drv
        # chmod 755 afe
5. Add the driver by following command:
        # add_drv -m "* 0666 root root" -i '"pci1113,1216"' afe
6. Copy the configuration file to System.
        # cd /mnt/SOLARIS/X86
        # cp AFE.CONF /kernel/drv/afe.conf
7. Make hostname.afe0 to make Solaris system load the driver
   during system up.
   
    # uname -n > /etc/hostname.afe0
    
   Now the hostname.afe0 file contains the hostname of your
   Solaris system.
8. Configure the Hosts File to configure IP address of the
   adapter. Please Refer to Solaris Document for more detail.

(B.2) UnInstalling the driver

1. Remove Driver
   # cd /kernel/drv
   # rem_drv afe
2. Remove hostname.afe0
   # rm /etc/hostname.afe0


(C) Changing the Media Type in Solaris
================================================================
After installation, you can set Media Type in afe.conf file
under /kernel/drv/ directory. All the supported Media Types are
listed in the file.
 
Defaults:  The default Media Type will always be "AutoSense".

Following is the default setting in the afe.conf file:

AutoSense;                       ###  AutoSense
#speed=10 full-duplex=0;          ###  10BaseT
#speed=10 full-duplex=1;          ###  10BaseT Full-Duplex
#speed=100 full-duplex=0;         ###  100BaseTx
#speed=100 full-duplex=1;         ###  100BaseTx Full-Duplex

For example, if you want to set Media Type to 100BaseTx, modify
the afe.conf like following:

#AutoSense;                       ###  AutoSense
#speed=10 full-duplex=0;          ###  10BaseT
#speed=10 full-duplex=1;          ###  10BaseT Full-Duplex
speed=100 full-duplex=0;         ###  100BaseTx
#speed=100 full-duplex=1;         ###  100BaseTx Full-Duplex


www.mydrivers.com下有530tx  solaris下驱动.

 刘云 回复于:2003-10-08 00:21:01
可以告诉我以太网控制器的驱动哪边有的下载?
拜托了
我急用的
回信箱
lang309@sohu.com

 落伍者 回复于:2004-05-11 07:47:26
官方下载地址:http://www.dcnetworks.com.cn/service/download1.asp?act=all&pid=24
正在研究安装

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网