標(biāo)題 How can I create a CD iso HBA from a floppy HBA image? 如何把一個軟盤鏡像的HBA文件轉(zhuǎn)成光盤ISO格式的HBA文件
關(guān)鍵詞 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
系統(tǒng)版本 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? 我有一臺計算機(jī)沒有軟驅(qū),但是我需要加載HBA驅(qū)動,我只有HBA驅(qū)動的軟盤鏡像文件, 有辦法把這個鏡像文件刻錄到CD上馬?
解決: Solution You can convert a HBA floppy image to an iso image as follows: 你可以按以下步驟把HBA的軟盤鏡像文件轉(zhuǎn)換成光盤ISO鏡像文件: 1) Log into an existing OpenServer 6.0.0 or UnixWare 7.1.4 system as root. 1)以root用戶登錄已經(jīng)安裝的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命令創(chuàng)建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就可以在安裝操作系統(tǒng)的過程中使用了。 | | |