这是我的英语怎么读:如何把一个软盘镜像HBA文件转光盘ISO格式HBA文件 - Unix爱好者家园

来源:百度文库 编辑:九乡新闻网 时间:2024/04/28 14:12:00
如何把一个软盘镜像HBA文件转光盘ISO格式HBA文件   作者:sdccf  出处:unix-cd.com  更新时间: 2008年07月17日 
标题
How can I create a CD iso HBA from a floppy HBA image?  
如何把一个软盘镜像的HBA文件转成光盘ISO格式的HBA文件

关键词 
unixware 7.1.4 openserver 6.0.0 714 600 hba host bus adapter floppy image iso boot time loadable isl CD CD-ROM UW7 UW714 OSR6 diskette install installation driver drivers


系统版本
Release 
          SCO OpenServer Release 6.0.0 
          UnixWare 7.1.4 

 
 
问题
Problem 
          I have a system that does not have a floppy drive and I 
          need to load a Host Bus Adapter (HBA) driver that I only 
          have as a floppy image. Is there a way that I can copy the 
          image to CD?
          我有一台计算机没有软驱,但是我需要加载HBA驱动,我只有HBA驱动的软盘镜像文件,
          有办法把这个镜像文件刻录到CD上马?


 
解决: 
Solution 
          You can convert a HBA floppy image to an iso image as follows:
          你可以按以下步骤把HBA的软盘镜像文件转换成光盘ISO镜像文件:
          1) Log into an existing OpenServer 6.0.0 or UnixWare 7.1.4 system
          as root.
          
          1)以root用户登录已经安装的OpenServer 6.0或UnixWare 7.1.4 。
          
          2) Download/copy the floppy image into a temporary directory, e.g.

          # cd /tmp/floppy.image

          2)下载/拷贝软盘镜像文件到一个临时目录,例如:
          # cd /tmp/floppy.image           

          3) Mount the floppy image using:

          # mount `marry -a /tmp/floppy.image` /mnt

          3)用以下命令行挂接软盘镜像文件:
          # mount `marry -a /tmp/floppy.image` /mnt

          4) Use mkisofs(8) to create an iso image of the HBA as 
          follows:

          # mkisofs -o hba.iso  -r  /mnt 

          4)用mkisofs命令创建HBA的ISO镜像文件,如下:
          # mkisofs -o hba.iso  -r  /mnt 

                         
          5) Use cdrecord(1) to burn the iso image to CDROM. e.g.

          # cdrecord -v -dev=c,b,t -dao -driveropts=burnfree -speed=99 hba.iso

          where c,b,t is taken from the output of the command:

          # cdrecord --scanbus

          The CD can then be used during the ISL of the Operating System.

          5)用cdrecord命令把ISO镜像文件刻录到光盘,例如: 
          # cdrecord -v -dev=c,b,t -dao -driveropts=burnfree -speed=99 hba.iso
          这里c,b,t可以通过如下命令的输出得到:
          # cdrecord --scanbus
   这样刻录的CD就可以在安装操作系统的过程中使用了。