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

Similar Messages

  • [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.

  • Dual Layer DVD reader for Sun Blade 2500?

    Can anyone recommend a dual layer DVD reader that will work with the Sun Blade 2500 (Silver)? Either something to replace the built-in single layer reader or something that will work externally either via firewire or USB.
    Thanks!

    I haven't had occasion to use a dual-layer drive yet, but I've found that all the external and internal Sony drives I've ever happened to plug into my old 1500 worked great...

  • Error While Compiling Amber 8 on Sun Blade 2500

    Hello everybody,
    While Compiling Amber 8 on sun solaris. It's giving me error ld:fatal error not able to write in <some dir name>
    Kindly help me to compilation step, and how to compile amber 8 with gcc.
    Regards
    Jagdish

    Hello everybody,
    While Compiling Amber 8 on sun solaris. It's giving me error ld:fatal error not able to write in <some dir name>
    Kindly help me to compilation step, and how to compile amber 8 with gcc.
    Regards
    Jagdish

  • 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?

  • ESXi 4.0  with sun storagetek 2500 array server is getting crashed

    Hi all,
    I have configured ESXi 4.0 in an IBM server followed by creating virtual host in that server. The server was working fine until I connect the server with storage array.
    My setup looks like this.
    IBM Server installed with ESXi 4.0 (linux version) followed by virtual host creation. the virtual host is Windows 2008 - 64 bit. Once all this setup were made, I have installed a software called CAM module in this server. This module is to manage my Sun storagetek 2500 array family. Suddenly i see my ESXi server (licensed one) is getting crashed. Following is the error message displayed.
    Vmware ESXI release build_164009 x86_64
    #PF Exception(14) in world 5354:sfcbd in 0X418028840C99 addr 0X410008ebdd84
    Press escape to enter local debugger
    I got a work around from one of the forum for this similar problem as "increase the swap size may solve this". but i tried that also , but still the issue persists. Swap size is set as twice of the RAM (my ram is with 4 GB,2X dual core AMD processor and HDD capacity is 80GB)
    can anyone help me on this.
    With regards,
    Sri

    Hello,
    if it's that urgent, why do you post in a user-to-user forum instead of getting in touch with tech support of Vmware, IBM, Microsoft and maybe Sun ?
    Michael

  • Ultrasparc IV in Blade 2500?

    Hello,
    Not sure if this is a dumb question, but will Ultrasparc IV or IV+ cpu's work in the blade 2500?
    Thanks in advance,
    Mike
    Edited by: 940756 on Jun 14, 2012 8:16 AM

    The following is a link to a diagram of the SB2500 systemboard.
    It is from a web site that mirrors an ancient copy of Sun's "Sun System Handbook".
    It's not an Oracle-hosted web site. I sometimes find it of use for basic information.
    http://www.sunshack.org/data/sh/2.1.8/infoserver.central/data/syshbk/Devices/System_Board/SYSBD_SunBlade2500.html

  • Hiding fields in standard user management view

    Hi all,
    How to hide fields in user management views.
    Like in the create user view, suppose I want to hide the <b>additional information fieldgroup</b>. how can I do it?
    I have the par file and tried to comment the code which is related to the additional information field group. But when we try creating an iview from the new par(modified par-i changed changed the name ) I do not c the portal component called <b>create user</b>. I am a bit confused.
    Can anyone help me out regarding this.
    thanks,
    Paul

    Hi Paul
    Have a look at
    http://help.sap.com/saphelp_webas630/helpdata/en/d1/956f8b86b2a949913ed22d253e0012/content.htm
    and http://help.sap.com/saphelp_webas630/helpdata/en/91/646d498fd94142a37e90a3b848e45e/content.htm
    By setting the default values you can either have them displayed or hidden.
    Hope this helps,
    Regards
    Uma.

  • Create Quality Management view for a Material in background mode

    I want to know if there is a way to create a Quality Management View (Quality Management tab) on Material Master (material already extended to plant ) in background mode.
    The requirement is to add inspection setup data for a material extended to a particular plant in background. I tried using 'BAPI_MATINSPCTRL_SAVEREPLICA' to add the data and it works perfect as required. Now the problem is this BAPI is creating the inspection setup data only for the material which has QM tab in MM02 for e.g. I manually created the inspection setup for a Material from MM01 and then deleted it , now the BAPI works fine for this material because when I created an inspection setup from MM01 it created the QM tab and after i deleted the entry the tab was still there with no entry in inspection setup.
    I want to create inspection setup for a material which does not have QM tab.
    I have to create everything is background mode. BDC is one option which I am list interested in.
    Thank you for helping in advance.

    Thank you for looking into my issue. I have to do the inspection setup in background without using any front end transaction.

  • 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

  • Can't add a goods-issue with more than one item and one is serial managed.

    Hi,
    We are trying to issue more than one item to a production order using the DI API.  If none of the items is serial managed, they all are accepted and the goods-issue Add is successful.  If one the items is batch-managed, the goods-issue Add is also successful.  I am able to add the goods-receipt if I it contains only one item and it is serial-number managed.  However, if I’m issuing more than one item and one or more of the items is serial number managed, then the DI API will not add the goods-issue.  The error message that appears refers to an item that is not among the items being issued.  The message is:
    -10: (IGE1.WhsCode)(line: 3), ‘Item ‘A00006        ‘ with system serial 1 is not in stock.’
    Again item A00006 is not even in the group of items being issued.
    The code I am using for the serial number part is:
    With oGoodsIssue.Lines.SerialNumbers
              .SystemSerialNumber = rs.Fields.Item("SysSerial").Value
              .ManufacturerSerialNumber = rs.Fields.Item("MfrSN").Value
              .InternalSerialNumber = rs.Fields.Item("IntrSerial").Value
              .SetCurrentLine(n)
              .Add()
              rs.MoveNext()
              n += 1
    End With
    The rs is a recordset that the code is looping through as the serial numbers are being added.
    The error message does not occur during this code.  It occurs when it tries to add the full goods-receipt.  Does anyone have any idea how I can fix this?
    Thanks,
    Mike
    Edited by: Mike Angelastro on Mar 31, 2008 8:43 AM

    Hi Mike,
    Try to do the ".Add" only if you need it. Doing a ".add" without assignation may cause the error you have.
    I guess your n variable start at 1 or 0, so you could put code like this :
    With oGoodsIssue.Lines.SerialNumbers
    if n = 0 then (or 1, also I don't the correct syntax of your programming language)
    .Add()
    end if
    .SystemSerialNumber = rs.Fields.Item("SysSerial").Value
    .ManufacturerSerialNumber = rs.Fields.Item("MfrSN").Value
    .InternalSerialNumber = rs.Fields.Item("IntrSerial").Value
    .SetCurrentLine(n)
    rs.MoveNext()
    n += 1
    End With
    HTH
    Jodérick

  • CC 5.2 SP9 - Management view update problem

    Hello all,
    We are having trouble updating the management view, in CC SP09. After running full synchro jobs on profiles, then roles, then users, and finally updating the management view, the results seem wrong (in production, we were expecting about 50% of users with violations, while the management view did not see any)...
    Any help would be appreciated, thanks!
    Sophie Planchais

    I stole this from another thread but at least it saves me typing it all in
    Follow these instructions
    1. Full user synch
    2. Full role synch
    3. Full profile synch
    4. Batch risk analysis for users (full synch mode)
    5. Batch risk analysis for roles (full synch mode)
    6. Batch risk analysis for profiles (full synch mode)
    7. Batch risk analysis for critical actions (full synch mode)
    8. Management reports by itself.
    Wait for each job to complete before you run the next one.
    Sometimes I even run job 8 inbetween jobs 4-7, just to make sure.  In other words the job order is then 4, 8, 5, 8, 6, 8, 7, 8.  As I have had problems that job 8 will not finish (after 4, 5, 6, 7 have been run) which we surmise is due to too many changes being required.

  • Reg : Material warehouse management view 1 & 2

    Hello All,
    Using a Z-programI am extending the warehouse managemnt view for a single Plant, the view gets created successfully. But some how an Inactive version of Warehouse management view gets created for other plant also. How we can prevent the creation of this inactive view creation.
    Please let me know your suggestion.
    Regards,
    Ravi Kasale.

    from Note 545626 - FAQ: Data transfer problems:
    Read the explanations in OSS Note 67616.
    Bear in mind that, in the structure/table HEADDATA, the for BAPI methods StandardMaterial.SaveData (BAPI_MATERIAL_SAVEDATA) and StandardMaterial.SaveReplica (BAPI_MATERIAL_SAVEREPLICA) of the business object BUS1001006, you can select the required views and these correspond to the respective maintenance status.
    In the segment E1MARAM of the MATMAS IDocs, you can assign the overall maintenance status in the field VPSTA.
    Edited by: Jürgen L. on Jun 6, 2011 4:01 PM

  • 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.

Maybe you are looking for