Prtdiag -v showing bogus 'Current sensor' failed

I have several machines that are giving the following from prtdiag -v:
Current sensors:
Location Sensor Current Lo LoWarn HiWarn Hi Status
PS0 FF_OC - - - - - okay
PS0 FF_NR - - - - - failed
I have loaded ALOM 1.5.3.
Other info:
SunOS eiecimg 5.9 Generic_112233-11 sun4u sparc SUNW,Sun-Fire-V250
OBP 4.11.4 2003/07/23 08:03 Sun Blade 2500,Sun Fire V250
OBDIAG 4.11.4 2003/07/23 08:05
Any help is greatly appreciated. I've looked almost everywhere and
haven't heard from my Sun engineer contact.
Mike DeLeon
mdeleon@comsquared.com

I am not familiar with the blade 2500 (except for 1 weeks desktop training course) as usual get trained and never see one again.
You mention ALOM.
If you drop to the SC prompt (ALOM) try the showenvironment -v command. This may give you some more information.
Sorry just noticed that your server is in fact a V250, the output from the OBP got me there.
Update
I have found a couple of bugs against this problem which say that it should have been sorted by ALOM 1.3_build3.
As you have installed 1.5.3 I would assume that it would cover this fix.
Did you reset the SC atfer update?

Similar Messages

  • Map is unable to show my current location

    The map provided with the iMac (purchased in Nov-2013), is unable to show my current location. It is asking to turn the Wifi on and then failing to specify or if at all specifying, is not very clear to me. For that reason, getting direction to a place is also not working. Is there any wrong with my settings? Moreover, google map appears to me more varsatile and dynamic -- is it true? I am a newcomer to mac platform and hence these quaries.

    Your iMac (well, any Mac) does not have a GPS. To determine location it matches the available WiFi SSIDs with a database of the base station locations. If the wireless access points that your iMac is receiving are not in the database, it deosn't know where it is.
    This article talks primarily about iOS, but it is the same database that is used by OS X to locate you Mac.
    http://support.apple.com/kb/HT4995?viewlocale=en_US&locale=en_US
    Also, take a look at this thread. It doesn't appear there is positive confirmation that it works, but worth a try:
    https://discussions.apple.com/thread/4370143?start=15&tstart=0
    When Apple started this, I had submitted my router location to the SkyHook system which they were using, but everyone says they no longer use it.

  • Time Machine only shows the current copy of the file I am trying to restore. There is none of the time machine backup histories shown. I am running OSX 10.7.5. I see the backup files on my external Time Machine hard drive. Help

    Time Machine only shows the current copy of the file I am trying to restore. There is none of the time machine backup histories shown. I am running OSX 10.7.5. I see the backup files on my external Time Machine hard drive in the Backups.backupdb folder.
    Time Machine does show the history of my Macintosh HD, but when I try to navigate to the folder I wish to restore the backup history disappears. I've been searching for answers and I have not found one that works for me.

    Time Machine only shows the current copy of the file I am trying to restore. There is none of the time machine backup histories shown. I am running OSX 10.7.5. I see the backup files on my external Time Machine hard drive in the Backups.backupdb folder.
    Time Machine does show the history of my Macintosh HD, but when I try to navigate to the folder I wish to restore the backup history disappears. I've been searching for answers and I have not found one that works for me.

  • HT2731 how can i sync my Apple ID to my iTunes sign-in?  I have an old ID showing up in my iTunes sign-in window and cannot get rid of it to show my current Apple ID.  I don't have the old password to the old ID in order to "manage" my account.

    how can I sync my Apple ID to my iTunes store sign-in window?  An old ID keeps showing in the iTunes sign-in window and I cannot get rid of it to show my current Apple ID. I don't have the password for the old ID in order to "manage" my account and make changes. Help.  Thanks.

    Did you create a new account or did you update your existing account with a new email address ? You can tap on the id in Settings > iTunes & App Stpre and sign out of it and you can then sign with the new/updated account.
    If you did create a new account then your existing content will remain tied to your old account, so only that old account will be able to redownload that content and/or download updates to its apps. If you can't remember the password for it then you can try getting it reset via this page : http://iforgot.apple.com

  • Weather icon that shows the current weather?

    My blackberry weather app used the icon to show the current weather conditions (sunny, rain, etc). The iphone calendar icon can show the current date. Is there a weather app that can use the iphone icon to show the current weather? I haven't found one yet.

    The calendar app is a native app and the only one that does change its icon. Third-party apps don't have that facility.
    The built-in Weather app does change its icon though - but only dependent on where you are (the region settings in the phone) and only shows either 23° Sunny or 73° Sunny - nothing else

  • How to use a Text View to show the current user

    Hi Experts,
    I am using a Text View to show the current logged on user.
    Also i need to retrieve the date of creation of proposal and show it as output parameter.
    I am using the following code but it is not working properly.
    Please help me out regarding the same.
    Method technicalDescription()
    //Attribute User to store user name
    IGPAttributeInfo user = output.addAttribute("USER", IGPAttributeInfo.BASE_STRING);
                user.setMultiplicity(IGPAttributeInfo.MULITIPLICITY_1_1);
    //Attribute date to store current system date           
    IGPAttributeInfo date = output.addAttribute("DATE", IGPAttributeInfo.BASE_DATE);
                date.setMultiplicity(IGPAttributeInfo.MULITIPLICITY_1_1);
    Method execute()
    //getting current system date
    Date currDate = new Date(System.currentTimeMillis());
              contextElement.setDate(currDate);
    //Retrieve Current User Details
    try {
    IWDClientUser user = WDClientUser.getCurrentUser();
    String firstName = user.getFirstName();
    String lastName = user.getLastName();          
    String userName = lastName + " " + firstName;
    contextElement.setUserName(userName);
    } catch (WDUMException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
    Method complete()
    output.setAttributeValue("USER", wdContext.currentContextElement().getUserName());
    output.setAttributeValue("Date", wdContext.currentContextElement().getDate());
    Thanks a lot.
    Cheers
    Gaurav Raghav

    There are a few ways, for example declare an IBOutlet for the text field and then use it with NSControl's stringValue: method (inherited by the NSTextField), or bind the value of the text field to a property, etc.  What have you got so far?

  • How to use a Text View to show the current user in WDJ

    Hi Experts,
    I am using a Text View to show the current logged on user.
    Also i need to retrieve the date of creation of proposal and show it as output parameter.
    I am using the following code but it is not working properly.
    Please help me out regarding the same.
    Method technicalDescription()
    //Attribute User to store user name
    IGPAttributeInfo user = output.addAttribute("USER", IGPAttributeInfo.BASE_STRING);
    user.setMultiplicity(IGPAttributeInfo.MULITIPLICITY_1_1);
    //Attribute date to store current system date
    IGPAttributeInfo date = output.addAttribute("DATE", IGPAttributeInfo.BASE_DATE);
    date.setMultiplicity(IGPAttributeInfo.MULITIPLICITY_1_1);
    Method execute()
    //getting current system date
    Date currDate = new Date(System.currentTimeMillis());
    contextElement.setDate(currDate);
    //Retrieve Current User Details
    try {
    IWDClientUser user = WDClientUser.getCurrentUser();
    String firstName = user.getFirstName();
    String lastName = user.getLastName();
    String userName = lastName + " " + firstName;
    contextElement.setUserName(userName);
    } catch (WDUMException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
    Method complete()
    output.setAttributeValue("USER", wdContext.currentContextElement().getUserName());
    output.setAttributeValue("Date", wdContext.currentContextElement().getDate());
    Thanks a lot.
    Cheers
    Gaurav Raghav

    You can use a text string as the reference.
    If you use the VISA Find Resource function, it will return an array of strings which you can index in your code, and store either the index, or store the string itself. You can even use strings like COM1 and COM2, assuming those ports are available.
    The challenge is when you move from one machine to another, where the serial ports may be different on the other machine.
    Message Edited by LabViewGuruWannabe on 01-07-2008 06:33 AM
    Message Edited by LabViewGuruWannabe on 01-07-2008 06:37 AM
    Attachments:
    VISA find.png ‏5 KB

  • Powermanager 1.60 has removed the abilty to show the current power consumption in the tray.

    Hi,
    well the topic says it. Powermanager 1.60 has removed the abilty to show the current power consumption in the tray.
    I realy frustrated right now, why the heck did they remove this nice feature?
    And this new energy slider is just trash. If i change back to advanced mode, i cant see my current power consumption. Nor in the main battery tab. The field "Current Power" is just blank. And the option in the tray vanished.
    What the **bleep** are these guys doing. There was a time i fought this powermanger is the best software ibm/lenovo ever produced, but since the change of the ui, and removing important features. Its unbeliveable.
    Especialy if you are on windows xp, this looks like **bleep**, and this "new" gauge desgin, flickers and stops my mouse on hower over the new "Design".
    a frustrated,
    R61 user.

    you should try uninstalling & re install it http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-70602
    Message Edited by GMAC-R60 on 08-08-2009 12:38 PM
    Thinkpad R61 7733-1GU
    Thinkpad X61T 7762-54U
    Thinkpad X60T 6363-4GU
    Did a member help you today? Thank them with a Kudo!
    If a post answers your question, please mark it as an "Accepted Solution"!
    Regards,
    GMAC

  • I have a new iPad wi-fi lte 16gb.when I try to sync thru I tunes it keeps on accessing I tunes stores.i have windows xp service pack 3.after running diagnostics it showed iTunes secure connection failed.unable to sync completely even once. Plz help.thanks

    I have a new iPad wi-fi lte 16gb.when I try to sync thru I tunes it keeps on accessing I tunes stores.i have windows xp service pack 3.after running diagnostics it showed iTunes secure connection failed.unable to sync completely even once. Plz help.thanks

    I'd try the following document: 
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • Acrobat Pro "save as" function in the file menu does not show the current directory of the file

    I have installed CC but Acrobat Pro gives me headaches.
    The "save as" function in the file menu does not show the current directory of the file but something I have worked on in the past.
    It forces me to navigates through my hard disk for this very straightforward thing in normal conditions. I precise: Acrobat is the only software reacting like that.
    I use Windows7 professional 64bits.

    I use what seems to be the latest version available on the Cloud:
    To illustrate my point, I open a directory with explorer and double-click on the only PDF in there:
    So here it is, open:
    When I do a "Save as", it takes me to a totally different place on the disk!
    Very annoying...
    Thanks for your time!
    JJ

  • Why doesn't "Tab groups" display https pages and do tab group pages show the current web page or just a snapshot?

    I use the tab slideshow add-on because I need to see many "sites" to monitor activities so the slideshow provides that at this time. When I saw the tab group feature, I wanted to try that because that would allow me to see all the sites on one page. I created the tab group and unfortunately can't even see each tab maybe because HTTPS is not supported. Tab group doesn't seem to show the current page; just a snap shot. I just wondered if HTTPS and active paging would be supported.

    I have been wondering the same thing for the 8 years that I have been using Firefox. Also, it seems that when a printing bug is eventually fixed, a new regression bug is sometimes filed that is even worsen than the original bug that was fixed. <br />
    Example - https://bugzilla.mozilla.org/show_bug.cgi?id=454532
    I honestly feel that Mozilla doesn't have any developers with the talent to fix printing in Firefox. They should start from scratch and create all new printing code that is well documented and understandable by the current developers; then maybe they would be able to fix whatever bugs crop up with their own code, instead of being baffled by the code that Netscape created 16 to 17 years ago.

  • I have unlocked iphone 5.i tried to use it with tmobile.it shows full network but fails to activate and shows sim invalid.how to make it work?

    i have unlocked iphone 5.i tried to use it with tmobile.it shows full network but fails to activate and shows sim invalid.how to make it work?

    Who was your original carrier; did you call them to ask them to unlock your phone, and are you aware of what their unlock policy is (THey may only unlock for international sims and not US sims

  • UCCX Queues showing bogus calls in Queue and they will not clear

    I have many queues and two of them show one call in each of the queues on the supervisor desktop. However there is not any call in the queue. How do I clear theses calls/stats on the supervisor desktop for the end user so it does not show bogus calls on the queue on her clent?

    Hi Jonathan ,
    What is your UCCX version .
    Looking at the problem description i am suspecting that your system is hitting BUG:-CSCsu40814
    BUG:-CSCsu40814
    Symptom:
    The supervisor desktop realtime reports will show an entry in "Oldest in Queue" that appears to be a call in the queue but has no time associated with it. The issue will show as 1(00:00:00)
    Conditions:
    So far the only condition that exists is that calls are coming into the system.
    Workaround:
    None
    Further Problem Description:
    The system RealTime Reports does not reflect this call and it is only shown in the Supervisor Desktop display. There is not actually a call in queue as well and it seems to be a reporting error.
    The defect can be explained as follows:
    ++         This happens because of any of the  unsupported configurations/actions for UCCX.
    ++         This will lead the UCCX engine not to clear the entry of the call internally and thus it will send messages to the CSD to display the call.
    ++      Ideally when you have a legitimate call: "1[00:20:00]", this means that there is 1 call in the queue for 20min. However, 2[00:00:00] means that this call is no longer in the queue, but there is a false entry of the same.
    ++         Therefore, the restart of the engine will remove these entries
    ++         This entry will be created in the UCCX engine when an unsupported action is performed such as transfer to a different Route point etc. (not necessarily this).
    ++         The defect addresses how such a call is handled so that the call entry can be appropriately cleared.
    ++         It would be difficult to say why the issue started to occur, but we can explain as to why the entries are seen on CSD and how we can clear them.
    Please note the following:
    ++        All unsupported scenarios/configurations mentioned in the guide have to be avoided:
    o   http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_8_0/release/notes/uccx_802_rn.pdf
    ++         All the unsupported configurations can cause this issue to occur. However, the defect-fix has been verified for the following configurations:
    1.       When an agent on call c1 initiates consult c2 to the RP,cti port, c2 is just in the process of getting queued when agent completes transfer and so c1.iaqstate is set incorrectly to NOT_IN_QUEUE due to a race condition. The defect CSCsu40814 occurs even in regular, supported agent to rp transfer scenarios due to race condition.
    2.       As soon as the agent went reserved for the primary consult , he answered the primary consult but even before the main call could be fully transferred to the agent, He held the primary consult call and initiated a new call to the RP. This is what caused the main IAQ call to terminate.  And he was left only with the new call he initiated. So he again initiates another consult and completes transfer.So the agent wanted to answer the PRIMARY consult and immediately transfer it back to the RP without talking to the caller.In this particular scenario, the call was between 2 CTI ports
    Issue can be resolved by restarting the CCX engine(in off hours). This is a temp workaround .
    you need to check if agent's are not using any unsupported configuration .

  • Q. 2:  Powerpoint for Mac 2011  Version 1     How do I get PRESENTER VIEW to work so I can see my notes and the audience only sees the slide show?  Currently PRESENTER VIEW shows up on the flatscreen and my laptop shows only the slide show....?!

    Q. 2:  Powerpoint for Mac 2011  Version 1     How do I get PRESENTER VIEW to work so I can see my notes and the audience only sees the slide show?  Currently PRESENTER VIEW shows up on the flatscreen and my laptop shows only the slide show....?!

    As PowerPoint it a Microsoft product, you may find that you get better answers to your question on their PowerPoint forums.
    Best of luck.

  • How to show the Current Date in the Screen as default

    Hi all,
    This is may be simple to u all, but i need the solution for this,
    I want to show the Current date in the Screen, i am using the structure. but the calendar control showing when i run the program. But i want to show the current date as default.
    Thanks
    Shankar

    Is this a screen or a report?
    If its a report, try assigning DEFAULT sy-datum (to the parameter/select-option name)
    If its a screen field, try writing this in the PBO:
    IF fieldname IS INITIAL.
    fieldname = sy-datum.
    ENDIF.
    Hope this helps.
    Sudha

Maybe you are looking for