HP Proliant 380 G4 / SmartArray 6 / HP driver / No Floppy disk.

Hello!
And here I am with a "nice" problem:
I want to run Solaris on a HP Proliant 380 G4 series with SmartArray 6. HP kindly provide drivers for Solaris 10 on their homepage. Those drivers need to be extracted to a floppy disk. Now here is where the trouble starts: I do not have a floppy disk drive for ther server nor is it easy to just plug one in. I've tried a USB floppy disk drive which at least got me as far as the first part of the installation. It then fails when it tries to actually install the driver onto the system as it does not know anything about USB drives.
I somehow need to inject the driver to the system without having a floppy drive. I'm not sure if you can do this on installation or by somehow copying the files onto the installation ISO or using jumpstart.
Any clues or hints how this might work would be very much appreciated. I'm sitting here with my head spinning.
Thank you very much,
Georg

<table border="0" align="center" width="90%" cellpadding="3" cellspacing="1"><tr><td class="SmallText"><b>rogerisland wrote on Fri, 03 June 2005 11:25</b></td></tr><tr><td class="quote">
>That is, you can boot Solaris from the install CD (or DVD) together >with
>HP's driver from the ITU floppy in the USB floppy drive, and copy >Solaris to
>the raid array. And after that, the Solaris installer tries to mount the >ITU floppy
>(to copy the raid array driver from the floppy to the raid array), but >fails
>because no PS/2 floppy device /dev/diskette is present?
Basically, yes (and I want to install Solaris 10 on x86)
</td></tr></table>
OK, Solaris 10 should have less issues with USB floppy support than
older Solaris 9 or Solaris 8 releases.
<table border="0" align="center" width="90%" cellpadding="3" cellspacing="1"><tr><td class="SmallText"><b>Quote:</b></td></tr><tr><td class="quote">
I have to use the console installation (without the GUI) because the interactive one hangs at the end of the disk.
</td></tr></table>
Yep, that's a known bug in the Solaris 10 x86 GUI installer. It didn't
exist in Solaris 9 x86 and older.
When the GUI installer is in use, the final step of installing the extra
driver from the ITU floppy prompts for something on /dev/console,
but with the S10 installer GUI running there's no way to type
/dev/console input.
<table border="0" align="center" width="90%" cellpadding="3" cellspacing="1"><tr><td class="SmallText"><b>Quote:</b></td></tr><tr><td class="quote">
Another problem is that the installer tries to copy the driver to the array before disc 1 is finished (after it installed all the files though) where no reboot is attempted.
I'd like to try your suggestion though.
Is it possible to fire up a shell if I use option 3 on the installer (console install in GUI) or interactive shell (option 1) (if it wouldnt hang..but maybe it hangs BECAUSE it tries to access the disk) ?
</td></tr></table>
If the GUI installer is running, right click on the desktop and open a
"Terminal" window, to get a shell.
If you run the "ptree" command when the installation has stopped after
copying the packages from CD1 to the HDD, you should notice the
following processes:
<div class="pre"><pre> 2678 /usr/sbin/install.d/pfinstall -f /swap2 -s /dev/dsk/n 9335 sh -c /sbin/sh /tmp/diskette_rc.d/icdinst9.sh 9336 /sbin/sh /tmp/diskette_rc.d/icdinst9.sh 9345 sh /tmp/diskette_rc.d/inst9.sh 9348 sh /tmp/diskette_rc.d/inst9.sh</pre></div>
The last one ("inst9.sh", PID 9348 in my case), is blocked in a read()
system call waiting for data from /dev/console (this can be verified with
"pstack $pid" and "pfiles $pid").
You can use "kill -9 $pid" to stop that inst9.sh process which hangs the
installer.
Before you kill inst9.sh, manually mount the ITU floppy from the USB
floppy drive and install the raid drivers manually.
Btw.: I'm not 100% sure, but the installation from CD1 is probably
complete anyway and the only thing missing is the raid array driver from
HP's ITU floppy. In this case it should be sufficient to boot into single user
mode from the S10 x86 installation CD/DVD (but don't forget to add HP's
raid array drivers from the USB floppy). At the "select type of installation"
prompt (options 1 .. 4) use "b -s" to boot into CD single user mode.
On the single user shell, mount both the the raid array and the UFS floppy
and use the "install.sh" script on the ITU floppy to install the missing
raid array driver to the raid array.

Similar Messages

  • JMicron JMB361 IDE CD-ROM DOS Driver (for floppy disk) released!

    For all of you that need CD ROM support in DOS, MSI released DOS driver for Jmicron JMB361.  http://us2.msi.com.tw/support/dvr_exe/mbd_dvr/Jmicron_Xcdrom_MB.zip
    Cheers! 

    Anyone tried this yet?
    How well does this driver works?
    Need some feedbacks on it.

  • Error message when saving to a:\ drive when no disk present

    I am using a Jfilechooser andsaving images using ImageIO, but I want add in the code necessary to display an error message when the user tries to save to the a:\ drive but there is no disk present. How would I do this, this is the code so far:
    JFileChooser chooser = new JFileChooser();
    chooser.setApproveButtonMnemonic('a');
    chooser.setApproveButtonText("Save");
    // create a file chooser with save dialog
    int returnVal = chooser.showSaveDialog(c);
    // If the user selects ok
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    // Get the file the user selected
    File file = chooser.getSelectedFile();
    / Get the name of the selected file
    String name = file.getName();
         // Set the format name to null
    String formatName = null;
    // Get the index number of when the . occurs in the file name
    int dot = name.indexOf(".");
         try {
         if(dot == -1) {
         file = new File(file.getParentFile(),
    name + "." + defaultExtension);
         formatName = defaultExtension;
         else {
    // else get the format name using a substring.
         formatName = name.substring(dot+1);
         // If the image cannot be saved, display an error message.
         if(!ImageIO.write(bi, formatName, file)) {
         file.delete();
         JOptionPane.showMessageDialog(c,
         "The image could not be saved. Please ensure that the extension is .jpg or .png",
         "Image save failed",
         JOptionPane.ERROR_MESSAGE);
         else {          // The image can be saved, so display a confirmation message
         JOptionPane.showMessageDialog(c,
         "The image has been saved to:\n"+
         file.getPath(),
         "Image Saved",
         JOptionPane.INFORMATION_MESSAGE);
         catch(IOException e) {               // Display an error message if save fails.
         JOptionPane.showMessageDialog(c,
         "The image could not be saved, no space on disk!!\n" + e,
         "Image save failure",
         JOptionPane.ERROR_MESSAGE);

    Again I have tried this, but in my program if I try to save to the a drive when no disk is inserted, the JOptionPane i want to display is not coming up.
    the system prints out
    java.io.FileNotFoundException: A:\image.jpg <The device is not ready>
    If that makes any sense to you

  • "attempting to copy to [external drive] failed. the disk could not be read"

    this is a problem on my 2x3GHz quad-core intel xeon macPro running os 10.5.7, and itunes 8.2. i have a 1TB external hard drive (firewire 800) that holds all my music for itunes. i have never had any problem with this setup before, until recently.
    once, a while back i got an error on my itunes (that popped up without me doing anything.. seemingly random) saying something about not being able to save the itunes library. that went away after a restart, and hasn't returned.
    BUT a new problem now happens any time i try to add more music to my itunes library. i have always added music to itunes by setting up my preferences "add file to library" and have the itunes library pointing to my external hard drive. then by dragging the files on-top of a playlist, it sorts and adds the files to my external hard drive. i have been using this process for years without any glitches.
    now when i try to drag files into itunes, i get: "attempting to copy to [external drive] failed. the disk could not be read from or written to"
    i double checked the read/write privileges on my external drive and nothing has changed since i got it. (it's still read/write access for my user.. and i've even tried putting a "read/write" for "all" as well. no dice)

    thanks, that actually doesn't help the issue i'm having.
    but now the problem has expanded to finder and everything else. so i'm pretty sure the external hard drive is starting to go out. i'm currently attempting to back up all 700GB of info from the drive.

  • I have an old MACBook and want to use it as an external drive to load disks on to my new mac. How do I?

    I have an old MACBook and want to use it as an external drive to load disks on to my new mac. How do I?

    Apple makes a Thunderbolt to Firewire adaptor if your new computer does not have a Firewire port.

  • HT3275 I am using an external drive for backup. I am now getting a message that the drive needs a disk repair, but when I run disk repair it  just seems to freeze.

    I am using an external drive for back up. Yesterday the backup failed and I received a message that the external drive( a passport drive) needed a 'disk repair", when I ran disk repair nothing happened it seemed to freeze. Suggestions? should i simply erase the external drive and start over-my computer is fine.

    Get a different drive for backup.
    In the meantime, once you are backed up some drive safe, then you can attempt to repair the backup drive using the repair the directory link.

  • Accessing physical floppy disk drive from Windows 8.1 host machine to Windows XP SP3 hyper-v?

    Hi there!
    Could someone help up me? I just wanted to ask if it's possible for a hyper-v to access a physical "floppy diskette" drive?
    Here's my setup: I have a Windows 8.1 as my host and Windows XP SP3 as the virtual machine. I would need to access the contents of the physical floppy diskette drive from the Windows XP SP3 vm. This is needed, because, currently our customer is still using
    floppy disk drives, to most of their in-house applications. I tried to open Drive A: inside Windows XP SP3 VM while the physical diskette from the Windows 8.1 is inserted. But then again, it cannot directly access the contents. Also, I tried to use "virtual
    floppy drives" and copy the files from the diskette. But for some reason, their applications do not support it. I did check device manager in Windows XP SP3 vm, but i cannot see the "Universal Serial Bus Controllers" option inside the VM.  
    Please help!!! Thank you!
    All the best,
    MS CAMPer

    HI Carey, thanks for this, But this is under System Center Virtual Machine Manager. I already saw this a while ago.
    Anyway, is there a way for Windows XP VM to access a physical floppy diskette drives inserted to Windows 8.1 host machine? I dont intend to use Virtual floppy disks. Only Physical ones.
    Please please. Need your help guys! :( Thank you!

  • My MacBook pro won't recognize hard drive I put in it. It boots only to a white screen unless I boot to my recovery USB. If I do that then I can select my USB and my external time machine drive in the disk utility, so no problems there. But what do you

    My MacBook pro won't recognize hard drive I put in it. It boots only to a white screen unless I boot to my recovery USB. If I do that then I can select my USB and my external time machine drive in the disk utility, so no problems there. But what do you think it is? It won't recognize any hard drive I put in the machine, so might it be the sata cable?

    Boot the Recvoery USB, use Disk Utility to select the internal drive makers namea and size on the left.
    Now select erase and select the midde option and click erase, it will take a bit to complete but it's best for the drive.
    Now select Partiton tab, click the big box and Options: GUID and then Format: OS X Extended journaled and click apply.
    Quit and you should be able to install OS X now with your Apple ID and password.
    see
    http://osxdaily.com/2011/08/08/lion-recovery-disk-assistant-tool-makes-external- lion-boot-recovery-drives/

  • After installing brand new Macbook hard drive, boot to disk shows a flashing folder with a question mark

    I had to install a new hard drive for my macbook after my last one had obviously crashed and was making clicking noises. The problem is I can't install OSX on my new one and I'm getting extremely frustrated. What could be going wrong? I've reset PRAM and done everything I could find suggested online.

    Have you tried inserting the Snow Leopard Install disc and using Startup Manager to select the Snow Leopard disc as the startup disk? Once you get started up from the Snow Leopard Install disc, the rest of the instructions can be found in the manual for your MacBook Pro. Here are the ones for mine:
    Installing Mac OS X and Applications — New Hard Drive
    from http://manuals.info.apple.com/en_US/MacBook_13inch_HardDrive_DIY.pdf
    To install Mac OS X and the applications that came with your computer, follow these steps:
    1.          Start up from the Mac OS X Install Disc 1 that came with your computer, and choose your language.
    2.          From the menu bar, choose Utilities > Disk Utility.
    3.          Open Disk Utility and select the new drive in the list to the left. Note: If you are formatting the primary drive, use the Disk Utility program on the Install disc.
    4.          Click the Partition tab.
    5.          Click on Options, and verify GUID is selected if this is the startup drive.
    6.          Name the volume “Macintosh HD.”
    7.          Apply the change by clicking the Partition button.
    8.          At this point, either
    •          Quit the Disk Utility application, and proceed with the Mac OS X installation. Follow the
    onscreen instructions. After selecting the destination disk for installation, continue following the onscreen instructions. Your computer may restart and ask you to insert the next Mac OS X Install Disc 2.
    or
    •          Leave the Disk Utility application open, and restore the backed up files from the image
    you created before removing the hard drive.
    Installing Applications
    To install just the applications that came with your computer, follow the steps below. Your computer must have Mac OS X already installed.
    1.          Back up your essential files, if possible.
    2.          Insert the Mac OS X Install Disc 1 that came with your computer.
    3.          Double-click “Install Bundled Software Only.”
    4.          Follow the onscreen instructions.
    5.          After selecting the destination disk for installation, continue following the onscreen instructions. Your computer may restart and ask you to insert the next Mac OS X Install Disc 2
    6.          Restore the data by reinstalling the backed up files from your backup to the new drive.

  • Photoshop 7 will not recognize my fire wire drives as scratch disks

    Photoshop 7 will not recognize my fire wire drives as scratch disks.
    Using Photosop 7.0.1 & Mac OS X Tiger on G4 Tower with AGP Graphics.
    Any Ideas?
    Thanks in advance,
    Tom

    The drives need to be formatted as Macintosh HFS+ Extended (not Windows or FAT32, for instance), and you must have full read/write permissions to them.
    Otherwise, Photoshop will not let you select them as scratch disk drives.  Of course, formatting will completely erase the entire drive, so if you have anything on them you need to keep, you'll need to back it up first.
    If necessary, do a Get Info (Command I) on the icon of the drive in the Finder and check "Ignore Ownership on this drive"; but first the drive needs to be formatted as Macintosh Extended.

  • Where can I buy an external floppy disk drive for my Macbook?

    where can I buy an external floppy disk drive for my Macbook?

    You can find them on eBay http://www.ebay.com/sch/i.html?_odkw=usb+floppy+drive&_osacat=0&_from=R40&_trksi d=p2045573.m570.l1311.R1.TR2.TRC1.A0.Xusb+floppy+drive+for+mac&_nkw=usb+floppy+d rive+mac&_sacat=0

  • -1007f cannot get the Mac book air to reinstall, no drive. For disk and no connection

    -1007f cannot get the Mac book air to reinstall, no drive. For disk and no connection please help!!

    You can download the product from this link:
    <Download Photoshop Elements products | 13, 12, 11, 10>
    Your redemption code/Serial number will work with these downloaded products.
    Make sure you download the correct version for your operating system - Windows or Apple MAC
    Good luck.

  • External floppy disk drive

    I have an HP F1059C External Floppy Disk Drive by TEAC that came with a (really) old HP laptop. I have some old research saved to floppy disks I need to access.  Is there a cable that will convert my External drive to a USP port on my present  HP laptop with Windows 8?  Do  I need a new driver?
    Thanks 
    Oxford Designer

     Thank you Dean Huffy. Yes, I recall it was an omnibook.  I loved the compactness of the thing.  And it had enough heft one could throw it like a brick at someone's head if they made fun of it.   Your advice alone is worth the $30 and elegant in its simplicty. 
    If you have the patience, I would add another permutation to my situation.   After the Omnibook's monitor went dark the files were tranferred via it's floppy drive to its desktop successor, for which I ordered a redundant floppy drive for that purpose.  There it rested, with some updates, but unbidden for the past five years until the desktop crashed and I replaced it with the present laptop.  I took the two units to my local computer repair person who neatly transferred most if not all the contents of the former to the latter, EXCEPT THAT, when I try to open the one, much coveted file, I get a message "cannot convert password protected documents".  Okay, so had so much regard for the file I put a password on it, but I can't even get to a point where I can enter a password; and following the Windows advice to "Open and Repair" seems to have no impact.  
    The bottom line is, I am most grateful for your advice on how to recover the file as of 2001 from an old back-up floppy , but would be even more grateful if I can recover the file through its 2009 updates now on my harddrive (and perhaps a back-up CD.)
    Thank you, again.
    Hank

  • The Floppy Disk Drive

    I tried to insert my floppy disk into the super drive on the right hand side of my iMac G5 but it didden't mount?

    SuperDrive on a Mac G5 is for hard media such as CDs and DVD. Floppy discs denote an older style of recording media, which typicaly held no more than a megabyte of information, as opposed to a CD/700mb or a DVD/4.7gb. In any event, if you are having an issue with a CD or a DVD not showing up on the desktop when inserted, the first thing to do is to check (will be in your dock) System Preferences>CD/DVD. Use the menus there to select what applications media will open with. Also, go to Finder>File>Preferences (top of the screen menubar) and check the box which will allow media to appear on the desktop.

  • Floppy Disk Drive for Mavericks

    Hello
    Does anyone know of an FDD for a mavericks mac? I would like to create boot disks for an old mac. Is this a good method to consider? I am not sure how else to go about this. If there is an alternative, whatever it might be, please let me know.
    I apologise for posting here but this relates to older machines in a way.
    Thanks in advance.

    The original system for a PowerBook 2400c/180 was 7.6.1. Other supported systems (according to Apple's technical specifications) were 8, 8.1, 8.5, 8.6 and 9. You would need to purchase an appropriate Apple system CD. Ensure that it is a retail disc (for all models), not a disc for a certain (other) machine.
    You can use one of the Apple CD-ROM drives above, providing that you have the proper HDI-30 cable. See the manual for details about connecting SCSI devices and about booting from a CD.
    If necessary, and if the already installed operating system is working (and you can navigate the Japanese menus), you should at least be able to create a Disk Tools PPC floppy on the PowerBook. Use the Disk Copy 6.3.3 program (the Make a Floppy command under the Utilities menu) for this. I assume that you have the external floppy disk drive for the PowerBook.
    www.info.apple.com/support/oldersoftwarelist.html
    http://download.info.apple.com/Apple_Support_Area/Apple_Software_Updates/English -North_American/Macintosh/System/Mac_OS_8.1_Update/Disk_Tools_PPC.img.bin
    http://download.info.apple.com/Apple_Support_Area/Apple_Software_Updates/English -North_American/Macintosh/Utilities/Disk_Copy/Disk_Copy_6.3.3.smi.bin
    One may also want to try to modify a Disk Tools PPC to hold CD-ROM software, thus allowing a CD to be read when the computer is running from the floppy disk system.
    Additionally, since the computer in question has PC Card slots, an inexpensive PC Card adapter for CompactFlash and a CompactFlash memory card can be very useful for file transfers. In certain PowerBook models, such a CompactFlash card (reformatted to Mac) can even act as a startup disk (if it has an appropriate system folder).
    Jan

Maybe you are looking for

  • Ipad 2 and 4S no longer seen by itunes

    Recently my Ipad 2 and Iphone 4s have quit being recognized by Itunes 12.0.1.26 on 27" Imac i7 running 10.9.5. Had been working fine previously. Now everytime I connect Ipad it asks to "Trust" computer. Once trusted it shows up in Iphoto, but not in

  • Need clarify some fields in v$session

    On 11g2/Redhat 5, my query returnsselect v.inst_id,sid,serial#,wait_class,event,status,last_call_et --,cast(Q.SQL_FULLTEXT as varchar(4000)) cur_sql     from gv$session v join gv$sqlarea Q on v.SQL_ID = Q.SQL_ID and v.INST_ID=Q.INST_ID INST_ID  SID  

  • Performance problem when using CAPS LOCK piano input

    Dear reader, I'm very new to Logic and am running into a performance problem when using the CAPS LOCK-piano-keyboard for input of an instrument: when I'm not recording everything is fine and the program instantly responds on my keystrokes, but as soo

  • Lost Biography in Notes

    Lost  in Notes Biography1 , how can I find my notes?.g

  • Can't Delete Aliases/Can't Drag and Drop

    For the past few days I have been trying to delete aliases and .webarchive files and I can't drag and drop them into the recycling bin. What do I do?