Sun Blade 150

Hi,
I'm having a Sun Blade 150 Workstation (quite old one). I'm having IDE CDROM & one USB CDROM. I'm having Solaris 5.8 installed on it. Now I want to upgrade it to Solaris 5.9 9/05.
First I tried to install it from the IDE CDROM by giving the command "boot cdrom" from OK prompt. It gave me error Can't find boot device.
Then I tried to boot from my USB CDROM again I get the same error.
I also tried combinations such as boot cdrom1/2 etc.
My USB CDROM works perfectly in Solaris 8, when I insert the cd it mounts properly.
What could be the problem while booting from USB CDROM?
I do not have any SCSI card/port to install a SCSI CDROM.
Any help would be great for me.
Thanks,
Pranay C. Tembhekar

Hello,
<i>However I wonder that USB CDROM support is not there.</i>
To use a device without a loaded operating system, the OBP (aka "BIOS", firmware) of your system <u>must</u> know how to handle this device. Either the device is directly supported by the OBP (OBP includes the firmware) or the firmware is integrated on the add-in board (e.g. Sun framebuffers, SCSI hba) in a ROM.
Attaching a USB keyboard/mouse to a non-USB system (with Mini-DIN connector) to an add-in USB adapter is possible, while the USB keyboard isn't functional at the OBP level, it works after loading the USB driver at the operating system level.
According to the Release Notes Solaris 10 1/06 supports multiple keyboards/mice.
Michael

Similar Messages

  • Connecting HDTV to SUN BLADE 150

    I have a SUN Blade 150 workstation with the onboard video (PGX64)....can I connect this to my HDTV. Both have a standard VGA connector....but not sure about the resolution. According to SUN's documentation 1920X1080 is supported, but is says the standard is SUN....does this make a difference. So will and HDTV work with the SUN Blade 150?

    I would expect the PGX64 to work with this display. To see the resolutions that the card and monitor it is connected to are capable of, run the following commands:
    /usr/sbin/fbconfig -prconf
    /usr/sbin/fbconfig -res \?

  • Sun Blade 150 Hard Drive Support

    Hello,
    We are upgrading our Sun Blade 150 server. I was keen on knowing if it would support two separate 80 Gb hard-drives which effectively increase its capacity to 160.
    Thanks,
    Vijay

    Absolutely.
    Your ATA controller just does not happen to be 48-bit capable.
    Thus you're going to be limited to a nominal 137GB maximum usable space on any one IDE disk.

  • Problem with a DDI Device driver for Solaris 8 and 9 on a Sun-Blade-1500

    The problem has to do with dma allocated memory and the little-endian format.
    When I copy blocks bigger than 256 bytes to the dma memory, using a uiomove() or bcopy(), the data after the first 32 bytes is swapped around over 8 bytes.
    The bcopy from a driver (stack) buffer into the dma virtual memory has the same affect.
    So it has to do with the kernel dma allocated memory and the endianess.
    When I set the byte order to big-endian inside the ddi_device_acc_attr the data seems to be alright, also with bigger transfer sizes.
    My device however needs the little-endian format.
    I have the same the same device driver running without any errors on a Sun Blade-150 Solaris 8 for a long time now.
    Can somebody please advise me?
    Data example,
    test data: 0x00,0x01,0x02,?.
    64, 128 or 256 bytes blocks:
    000: 07 06 05 04 03 02 01 00 0F 0E 0D 0C 0B 0A 09 08
    016: 17 16 15 14 13 12 11 10 1F 1E 1D 1C 1B 1A 19 18
    032: 27 26 25 24 23 22 21 20 2F 2E 2D 2C 2B 2A 29 28
    048: 37 36 35 34 33 32 31 30 3F 3E 3D 3C 3B 3A 39 38
    064: 47 46 45 44 43 42 41 40 4F 4E 4D 4C 4B 4A 49 48
    080: 57 56 55 54 53 52 51 50 5F 5E 5D 5C 5B 5A 59 58
    096: 67 66 65 64 63 62 61 60 6F 6E 6D 6C 6B 6A 69 68
    112: 77 76 75 74 73 72 71 70 7F 7E 7D 7C 7B 7A 79 78
    512 or 1024 bytes blocks:
    000: 07 06 05 04 03 02 01 00 0F 0E 0D 0C 0B 0A 09 08
    016: 17 16 15 14 13 12 11 10 1F 1E 1D 1C 1B 1A 19 18
    032: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F <----- ?
    048: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F <----- ?
    064: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F <----- ?
    080: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F <----- ?
    096: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F <----- ?
    112: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F <----- ?
    Code example, how I allocate the DMA (kernel) memory:
    DDI_STRUCTURE_LE_ACC = Little Endian format
    DDI_STRUCTURE_BE_ACC = Big Endian format
    static struct ddi_device_acc_attr sse_dma_attr =
    DDI_DEVICE_ATTR_V0, /* The version number of this structure */
    DDI_STRUCTURE_LE_ACC, /* see above */
    DDI_STRICTORDER_ACC, /* How CPU will reference data, default */
    The dma definitions for allocating the DMA memory
    static ddi_dma_attr_t dmaattr= {
    DMA_ATTR_V0, /* version */
    0, /* starting address for DVMA */
    0xffffffff, /* end address for DVMA */
    0xffffffff, /* max transfer count in one cookie */
    0x1, /* address restrictive alignment, 1 = byte alignment */
    0x7, /* burst sizes */
    1, /* min number of byes */
    0x00ffffff, /* max number of bytes device can transmit/receive */
    0xffffffff, /* upper bound of the DMA engine's address */
    1,
    512,
    0, /* DDI_DMA_FORCE_PHYSICAL doesn't work */
    ddi_dma_alloc_handle()
    if((ret=ddi_dma_alloc_handle(xsp->dip,
    &dmaattr,
    DDI_DMA_SLEEP,
    NULL,
    dmahandle_out)) != DDI_SUCCESS)
    cmn_err(CE_CONT, "ucr_dma_alloc_memory, "
    "ERROR ddi_dma_alloc_handle status = %d\n",
    ret);
    return(ret);
    if((ret=ddi_dma_mem_alloc(*dmahandle_out,
    (uint_t) size,
    dma_acc_attr,
    DDI_DMA_CONSISTENT,
    DDI_DMA_SLEEP,
    NULL,
    (caddr_t *)&raw_kern_addr,
    &real_len,
    dma_acc_handle_out)) != DDI_SUCCESS)
    cmn_err(CE_CONT, "ucr_ucr_dma_alloc_memory, "
    "ERROR ddi_dma_mem_alloc status = %d\n",
    ret);
    ddi_dma_free_handle(dmahandle_out);
    return(ret);
    This will also init the PCI - IOMMU for
    address translation.
    if((ret=ddi_dma_addr_bind_handle(*dmahandle_out,
    NULL,
    (caddr_t)raw_kern_addr,
    real_len,
    DDI_DMA_RDWR | DDI_DMA_CONSISTENT,
    DDI_DMA_SLEEP,
    NULL,
    &dma_cookie,
    &count)) != DDI_SUCCESS)
    cmn_err(CE_CONT, "ucr_ucr_dma_alloc_memory, "
    "ERROR ddi_dma_addr_bind_handle status = %d\n",
    ret);
    ddi_dma_mem_free(dma_acc_handle_out);
    ddi_dma_free_handle(dmahandle_out);
    return(ret);
    if((ret=ddi_dma_sync(*dmahandle_out,
    0,
    real_len,
    DDI_DMA_SYNC_FORDEV)) != DDI_SUCCESS)
    cmn_err(CE_CONT, "ucr_ucr_dma_alloc_memory, "
    "ERROR ddi_dma_sync status = %d\n", ret);
    ddi_dma_unbind_handle(*dmahandle_out);
    ddi_dma_mem_free(dma_acc_handle_out);
    ddi_dma_free_handle(dmahandle_out);
    return(ret);

    I am having the similar problem identified in this thread.
    OS: Sun Solaris 10 01/06
    Hardware: Sun Blade 2500
    PCI Memory card.
    Problem: When driver moves more then 40 bytes via PIO from a PCI device memory card, the long words are swapped starting at 40 byte transfer size and greater.
    device memory description:
    static ddi_device_acc_attr_t sdram_access_attr =
    DDI_DEVICE_ATTR_V0, /* Boilerplate value */
    DDI_STRUCTURE_LE_ACC,
    DDI_STRICTORDER_ACC /* Don't reorder accesses */
    The user application does a read call, which goes to xxread. xxread calls physio( xxstrategy, bp, dev, B_READ, xxminphys, uio );
    In xxstrategy the transfer is done using
    ddi_mem_rep_get8(ucb->ucb_sdram_accHndl,
    (uint8_t*) kaddr,
    (uint8_t*) raddr,
    (size_t) bp->b_resid),
    (uint_t) DDI_DEV_AUTOINCR );
    PCI Device memory is loaded with incrementing address (8bit), 0,1,2... This is confirmed using a PCI Bus Analyzer.
    A read of 36 bytes or less returns:
    03 02 01 00 07 06 05 04 ...
    A read of 40 bytes returns:
    07 06 05 04 03 02 01 00 ...
    If I peek 1 byte at a time using ddi_get8(ucb->ucb_sdram_accHndl, ...) I get
    00 01 02 03 04 05 06 07
    Why are the long words swapped starting at 40 byte transfer size and greater?

  • Unable to halt blade 150 to install via CDROM

    Hello,
    I am hopeful that I have posted this in the correct forum. I just purchased 3 Sun Blade 150 workstations. I am trying to install Solaris 8, 9, and 10. My problem is that I need to interrupt the boot sequence. Normally (on a SUN keyboard) I would do a STOP-A and be done. I don't have a sun keyboard, instead I am using a Logitech Keyboard and mouse. Does anyone know what key sequence I can use to interrupt the boot?
    Thank you in advance,
    Gerry

    Hello Mark,
    this is a link to the archived posting by J. Keil.
    http://unix.derkeiler.com/Newsgroups/comp.unix.solaris/2003-08/0158.html
    Just in case the link ceases to work this is the text of the posting
    Re: german keyboard
    From: Juergen Keil ( ... )
    Date: 08/01/03
    "Langelage, Frank" < ...> writes:
    On my blade 150 I attached a german ps/2 keyboard through an ps/2 to
    USB adapter.
    The machine recognizes this keyboard, but it with english / american layout.
    How to say solaris that it is a german keyboard ? Apparently this works automatically with Sun's USB keyboards, because
    they indentify with an USB country code of "DE", or something like that.
    PC USB keyboards (and this probably includes your PS/2 -> USB device)
    don't define an USB country code so the system uses the default of "us
    english" layout.
    On Solaris x86, the same problem exists and is solved by running
    /etc/init.d/keymap (linked to /etc/rcS.d/S33keymap.sh) early at system
    startup, and this script run /usr/lib/set_keyboard_layout.
    The set_keyboard_layout script is not included with Solaris SPARC, but
    is exactly what you need to tell the USB keyboard driver to use
    a keyboard layout != english.
    To set the USB keyboard to a "German" keyboard layout,
    set_keyboard_layout runs the command loadkeys with the undocumented
    "-s" option:
    /usr/bin/loadkeys -s 9
    The loadkeys command should work with USB keyboards on Solaris SPARC.
    Valid layout codes for the "loadkeys -s" option can be found in
    /usr/share/lib/keytables/type_6/layout_* Michael

  • [Sol 10 11/06 SPARC on Sun Blade 2500] Could not determine boot disk?

    dear all,
    I have a problem during installation of Solaris 10 11/06 Sparc on Sun Blade 2500. After I choosing "Initial Install" at "Select Upgrade or Initial Install" stage, appears the following error message :
    "Note : Default install is not possible. Default boot disk could not be determined"
    I have already concerned that the installation DVD is well burned, and the DVD-ROM is worked, but I'm not sure that the HD itself is well or defect. Could anyone tell me or figure out how would I do?

    Most likely you have a disk problem. I think it may not have found a disk. If the install process left you in a shell, I would suggest using format, to see what it thinks. My guess it does not see any disks.
    Another option from the ok prompt (also called OBP), is run probe-scsi or whatever the device type it. Check the options available at the ok prompt.

  • SUN Blade 2000 giving FATAL SCSI Error while booting from CDROM

    Hi,
    SUN Blade 2000 system giving "FATAL SCSI Error at Script address 110 SCSI parity Error Arbitration Complete" while trying to boot from CDROM.
    Thanks in advance.
    Bye
    vijay

    Hi,
    SUN Blade 2000 system giving "FATAL SCSI Error at Script address 110 SCSI parity Error Arbitration Complete" while trying to boot from CDROM.
    Thanks in advance.
    Bye
    vijay

  • Smartcard and Sun Blade: How to use it

    Hello,
    We have received some Sun blade 100, with smartcard reader.
    Does someone know how to program this reader ? I have found
    include files in /usr/include name samrtcard.h and a directory
    with the same name, but source code is a little bit fuzzy for me.
    Someone has some example of hox to use this reader ?
    Thank you

    Apple Pay is US-only at this time.

  • How to remove firefox 2 from solaris 10 sparc (Sun Blade 100)

    I need to remove firefox 2 from a Sun Blade 100 running Solaris 10 ( s10s_u4wos_12b sparc ).
    Mistakenly I installed firefox 3.6.14 unaware I had firefox 2 installed on the system.
    Currently, firefox 3.6.14 crashes constantly (completely unstable) and adjustments to PATH variable do not seem to hold.
    May I get help in removing both firefox 2 and firefox 3.6.14 and then a re-install of firefox 3.6.14?
    Location of firefox 2 is /usr/bin/firefox
    Location of firefox 3.6.14 is /opr/firefox
    In advance, thanks for the help.

    My guess is that you have already completed this upgrade, but in the event that you haven't I recommend that you use NFS to either mount a DVD from another server or else copy the OS DVD to a local drive on a server that has a DVD drive and then NFS mount the file system on the server you are trying to upgrade. I use NFS fairly often for upgrades and for patching. I have one server that has a file system that contains the source code from the installation DVD and another file system that contains the most current patch cluster.

  • Problem in installing solaris 10 in sun blade 1000

    Dear all,
    I am trying to install solaris 10 in sun blade 1000 and getting a problem that disk doesn't exist ......... After several tentatives, I understood that I need to format a harddrive as it is new. I formeted it with boot cdrom -s and the problem still persists.
    I bought a 73g HDD and the machine recognize it as 68,38g .. is there any upgrade I need to perform for it
    Could someone please help me to solve this problem
    Thanks a lot for your help and reply ...

    I have the same problem ..ubuntu installs fine
    TIA
    Dale

  • How to install Linux on Sun Blade 2000

    hi,all.
    There is a sun blade 2000 workstation in our lab.And my teacher ask me to install a Linux OS instead of the Solaris8 which is preinstalled in this machine.This thing is very difficult to me,for I am not only a new to Linux,but also a totally freshman to Sun OS and its Hardware.
    I have only installed a Fedora 11 in my x86 machine.But i dont know how the sparc architecture working and how to start my installation,even include how and where to boot from installation CD.
    Please tell me what the step of installation and how to do.Furthemore,please recommend a Linux distribution suitable for the blade 2000.
    Thank you very much.

    If you never ever worked with Linux then Debian is not really the OS you want to choice first, don't get me wrong its very good, but i think Ubuntu which is based on it is more user friendly
    Ubuntu has also a Sparc version and a forum for Sun Sparc users.
    http://ubuntuforums.org/forumdisplay.php?f=146
    some issues related to the type of server you have : http://ubuntuforums.org/showthread.php?t=588088
    Then you have also the question if you want to install the server edition or the desktop version?
    for example dapper server is available here: http://cdimage.ubuntu.com/ubuntu-server/dapper/daily/current/dapper-server-sparc.iso

  • Solaris Installation on Sun Blade 1500

    hi all,
    I tried installing the Solaris for Sun Blade 1500 and after installation.The Xserver wont start .
    It says unable to start the Xserver
    Failed to initialise core devices
    SUNWmouse ioctl on /dev/mouse
    and failed to start Xserver on display:0
    but i tried ssh -XCPY from a client and i could work with the gnome-session fully .
    Do i need to upgrade or add some more packages from the DVD ?
    and on some SUN BLADE 1500 machines ,i get this error when i tried to boot from cdrom
    Unable to Read disk label
    what can i do for the above problems .
    thanks
    taggy

    If you feel comfortable with command-line interfaces, you could boot the cdrom from the "ok" prompt using the following command:
    boot cdrom - install w
    (note all the spaces around "-"), this little command will force the installer to use a CLI instead of the default X-installer...
    7/M.

  • Serial management view in sun blade 2500

    Hi friends,
    Please help me out to solve the following problem i have sun blade 2500. I want to view the full POST test in hyperterminal screen of windows. I tried connecting the cables to establish connction to view. But i didn't able to see the POST in hyperterminal screen . It is blank while i start the sun blade2500.I used the 25 pin to 9 pin cable and also ethernet type to 9 pin cable
    what should i do

    Hello,
    make sure that
    - this is a null-modem cable
    - you use serial A (console port) of the Blade 2500
    - the parameters on your Windows PC are 9600/8/N/1
    If you remove the keyboard from the Blade 2500, input/output is forced to the serial console.
    Michael

  • Implement Sun VDI in Sun ray 150, how???

    Hi
    I want implement Sun VDI software in my sun ray 150, but not find anything document about the implemetation,
    my questions are:
    Where is the implement, in sun ray 150, in server, where???
    how implement sun vdi???
    Where I find documents about implement sun vdi?
    thanks

    here is the documentation
    http://wiki.sun-rays.org/index.php/VDA_Cookbook
    //Lars

  • Second IDE controller not seen, Blade 150

    On our Blade 150, on the first IDE bus I have a hard drive and a DVD recorder. On the second IDE bus I have another hard drive. The second bus is not seen at all. If I do a stop-a, probe-scsi-all the drive on the second controller is not seen. If I swap the two hard drives I get the same results; drives on the first bus are seen, drives on the second bus are not seen. I have also tried a new cable. Do I need to enable the second IDE controller somehow? Am I overlooking something? My goal is to make this a multi-boot machine and use an alias to choose which drive to boot from.

    Thank you for the tip, I gave this a shot. I took all the defaults up to the point where it asked if I wanted to rebuild the path_to_inst file, where I answered yes. Then it asked for the physical name of the root device, I took the default which looked correct. Then it gave me the same error as before, "/dev/dsk/c0t2d0s6 or /usr, no such file or directory" and the boot failed. I then rebooted again and it cannot find the path_to_inst file so aparently it did not get far enough to save the new file.
    Just to clarify what I believe the problem is, here is my layout:
    c0t0d0sX --> Solaris 9 install, boots and runs great, c0t2d0sX listed under both /dev/dsk and /dev/rdsk, c0t2d0sX will mount just fine when running Solaris 9 so the disk looks OK
    c0t2d0sX --> Solaris 8 install, OS was installed when disk was in c0t0d0 location then the disk was moved to c0t2d0 (first disk, second IDE bus), now has problems booting, c0t2d0sX not listed under /dev/dsk or /dev/rdsk on this disk and I think this is the problem.

Maybe you are looking for

  • Issue with Set-adaccountpassword

    I have tried to reset the password for account which is in different domain by using set-adaccountpassword cmdlt but it not allowing me to reset it. Here the script i used Set-ADAccountPassword -name redmond -Identity skur -OldPassword (ConvertTo-Sec

  • Will there be an iPod touch six released soon

    will there be an iPod touch six released soon

  • Scaling Factor problem In BI

    Hi, I am facing scaling issue in BI queries. In 3.5 when i run a query  say $(dollar) symbol appearing in each and every cell ,But in BI it is not appearing as in 3.5 rather $(dollar) symbol is appearing on the Top of each and every column.Plz provid

  • Powershell | COMAdmin | $app is null.

    Hi, I have a power shell script which has these lines $comservername="appname" $comAdmin = New-Object -comobject ("COMAdmin.COMAdminCatalog.1") $comAdmin.connect("localhost") $apps = $comAdmin.GetCollection("Applications") $apps.Populate(); $currentd

  • Itunes error message - 'original file could not be found etc etc'

    Since last syncing my ipod with itunes running on windows 7 home premium, I am now getting the error message 'The song "xxxxxxxx" could not be used because the original file could not be found. Would you like to locate it?' Can anyone point me toward