How can resolve the problem in jdeveloper903 oc4j starting:JspTagLib listener error

when i start oc4j in jdeveloper903,it prompt "JspTagLib listener error:null".
Then ,after depoly the jsp application with jsptaglib,i found the jsp page can not run.but,the jsp application
can run in develop environment.
how can i resolve the problem,Help.
Thanks.

I think you might have better luck asking your question in the JDeveloper forum at:
http://forums.oracle.com/forums/forum.jsp?id=315684
later -- Jeff

Similar Messages

  • How to resolve the problem in jdeveloper903 oc4j starting:JspTagLib listener error

    I just download a jdeveloper903,i hava a problem:
    when i start the oc4j alone,it prompt "JspTagLib listener error:null". Then,After depoly the jsp application with JspTag to oc4j,I found the jsp page can not run,but,the jsp application can run in the
    develope environment.
    how can resolve the problem,help!!Thanks.

    I think you might have better luck asking your question in the JDeveloper forum at:
    http://forums.oracle.com/forums/forum.jsp?id=315684
    later -- Jeff

  • When I switch libraries I lose the majority of the material in my main library and can only restore it by repairing the database. Can anyone tell me why this is happening and how I can resolve the problem? Thanks

    When I switch libraries I "lose" the majority of the material in my main library (or at least I can't see it) and can only restore it by repairing the database. Can anyone tell me why this is happening and how I can resolve the problem? Thanks

    I seem to have found a way around it. Rather than switching libraries by going into files/switch libraries I used Aperture Preferences to change them. I've done it a couple of times and it appears to work OK.
    That is an interesting finding. It suggests, that your "Preferences" file "com.apple.Aperture.plist" may have been corrupted and you fixed it this way. Can you now switch between libraries the usual way? If not, I'd try to remove the "preferences" file from the user library to the Desktop and relaunch Aperture.
    The Aperture 3: Troubleshooting Basics:http://support.apple.com/kb/HT3805
    describe how to remove the user preferences.

  • I have recently purchased the highest storage but was unable to backup my phone via icloud, the button on my mphone to backup on icloud is grey out, anyone knows how to resolve the problem?  What's the point of purchasing the biggest storage?

    i have recently purchased the highest storage but was unable to backup my phone via icloud, the button on my iphone to backup on icloud is grey out, anyone knows how to resolve the problem?  What's the point of purchasing the biggest storage?

    First check that your device is correctly connected to the wifi/internet (settings > wifi)
    If your back up continually fails, you might try turning off back up on your mobile device (settings > iCloud > storage & backup) and then deleting the backup file from iCloud by swiping the backup file on the mobile device (settings > iCloud > storage & backup > manage…) and then turning back up on again.
    If this doesn't help, try turning off some items for back up in a pattern to try to establish if your problem is being caused by specific data on your device.
    Being able to back up to the cloud can be very useful, especially if you don't have access to a computer or have infrequent access to one, however unless you specifically need to use iCloud for back up, you will find backing up to iTunes significantly more convenient and possibly more reliable.
    More about iCloud v iTunes Back Up

  • TS1702 Does anyone know how to resolve the problem of apps not being able to download in the App Store? After the IOS 6 update I haven't been able to download any apps.

    Does anyone know how to resolve the problem of apps not being able to download in the App Store? After the IOS 6 update I haven't been able to download any apps.

    Maybe here:
    IOS 6 App store crash: Apple Support Communities

  • I got my iPhone disabled mistakenly by six trials of entering pass code. However now I remembered  my passcode so how can fix the problem without losing my contents.

    I got my iPhone disabled mistakenly by six trials of entering pass code. However now I remembered  my passcode so how can fix the problem without losing my contents.

    If your phone is now disabled, you've already lost all data on the phone...that's the whole point of the passcode, to protect the data on the phone. Your only choice now is to force the phone into recovery mode & restore it, as described here:
    http://support.apple.com/kb/ht1212
    This will remove the passcode, but also erase all data on the phone unless you have a backup to restore from.

  • How can avoid the  problem of Parameter Prompting when I submitting ?

    I am developing web application in visual studio 2008 in csharp.How can avoid the issue or problem of  Parameter Prompting when I send parameters programaticaly or dyanmicaly?  I am sending the values from .net web form to crystal report but it is still asking for parameters. so when i submit second time that is when the reports is being genereated. How can i solve this problem. Please help. The code Iam using is below.
       1. using System; 
       2. using System.Collections; 
       3. using System.Configuration; 
       4. using System.Data; 
       5. using System.Linq; 
       6. using System.Web; 
       7. using System.Web.Security; 
       8. using System.Web.UI; 
       9. using System.Web.UI.HtmlControls; 
      10. using System.Web.UI.WebControls; 
      11. using System.Web.UI.WebControls.WebParts; 
      12. using System.Xml.Linq; 
      13. using System.Data.OleDb; 
      14. using System.Data.OracleClient; 
      15. using CrystalDecisions.Shared; 
      16. using CrystalDecisions.CrystalReports.Engine; 
      17. using CrystalDecisions.Web; 
      18.  
      19.  
      20. public partial class OracleReport : System.Web.UI.Page 
      21. { 
      22.     CrystalReportViewer crViewer = new CrystalReportViewer(); 
      23.     //CrystalReportSource crsource = new CrystalReportSource(); 
      24.     int nItemId; 
      25.  
      26.     protected void Page_Load(object sender, EventArgs e) 
      27.     { 
      28.         //Database Connection 
      29.         ConnectionInfo ConnInfo = new ConnectionInfo(); 
      30.         { 
      31.             ConnInfo.ServerName = "127.0.0.1"; 
      32.             ConnInfo.DatabaseName = "Xcodf"; 
      33.             ConnInfo.UserID = "HR777"; 
      34.             ConnInfo.Password = "zghshshs"; 
      35.         } 
      36.         // For Each  Logon  parameters 
      37.         foreach (TableLogOnInfo cnInfo in this.CrystalReportViewer1.LogOnInfo) 
      38.         { 
      39.             cnInfo.ConnectionInfo = ConnInfo; 
      40.  
      41.         } 
      42.  
      43.  
      44.  
      45.  
      46.  
      47.  
      48.         //Declaring varibles 
      49.          nItemId = int.Parse(Request.QueryString.Get("ItemId")); 
      50.         //string strStartDate = Request.QueryString.Get("StartDate"); 
      51.         //int nItemId = 20; 
      52.         string strStartDate = "23-JUL-2010"; 
      53.  
      54.         // object declration 
      55.         CrystalDecisions.CrystalReports.Engine.Database crDatabase; 
      56.         CrystalDecisions.CrystalReports.Engine.Table crTable; 
      57.  
      58.  
      59.         TableLogOnInfo dbConn = new TableLogOnInfo(); 
      60.  
      61.         // new report document object 
      62.         ReportDocument oRpt = new ReportDocument(); 
      63.  
      64.         // loading the ItemReport in report document 
      65.         oRpt.Load("C:
    Inetpub
    wwwroot
    cryreport
    CrystalReport1.rpt"); 
      66.  
      67.         // getting the database, the table and the LogOnInfo object which holds login onformation 
      68.         crDatabase = oRpt.Database; 
      69.  
      70.         // getting the table in an object array of one item 
      71.         object[] arrTables = new object[1]; 
      72.         crDatabase.Tables.CopyTo(arrTables, 0); 
      73.  
      74.         // assigning the first item of array to crTable by downcasting the object to Table 
      75.         crTable = (CrystalDecisions.CrystalReports.Engine.Table)arrTables[0]; 
      76.  
      77.         dbConn = crTable.LogOnInfo; 
      78.  
      79.         // setting values 
      80.         dbConn.ConnectionInfo.DatabaseName = "Xcodf"; 
      81.         dbConn.ConnectionInfo.ServerName = "127.0.0.1"; 
      82.         dbConn.ConnectionInfo.UserID = "HR777"; 
      83.         dbConn.ConnectionInfo.Password = "zghshshs"; 
      84.  
      85.         // applying login info to the table object 
      86.         crTable.ApplyLogOnInfo(dbConn); 
      87.  
      88.  
      89.  
      90.  
      91.  
      92.  
      93.         crViewer.RefreshReport(); 
      94.          
      95.                 // defining report source 
      96.         crViewer.ReportSource = oRpt; 
      97.         //CrystalReportSource1.Report = oRpt; 
      98.          
      99.         // so uptill now we have created everything 
    100.         // what remains is to pass parameters to our report, so it 
    101.         // shows only selected records. so calling a method to set 
    102.         // those parameters. 
    103.      setReportParameters();  
    104.     } 
    105.  
    106.     private void setReportParameters() 
    107.     { 
    108.       
    109.         // all the parameter fields will be added to this collection 
    110.         ParameterFields paramFields = new ParameterFields(); 
    111.          //ParameterFieldDefinitions ParaLocationContainer = new ParameterFieldDefinitions(); 
    112.        //ParameterFieldDefinition ParaLocation = new ParameterFieldDefinition(); 
    113.         
    114.         // the parameter fields to be sent to the report 
    115.         ParameterField pfItemId = new ParameterField(); 
    116.         //ParameterField pfStartDate = new ParameterField(); 
    117.         //ParameterField pfEndDate = new ParameterField(); 
    118.  
    119.         // setting the name of parameter fields with wich they will be recieved in report 
    120.        
    121.         pfItemId.ParameterFieldName = "RegionID"; 
    122.  
    123.         //pfStartDate.ParameterFieldName = "StartDate"; 
    124.         //pfEndDate.ParameterFieldName = "EndDate"; 
    125.  
    126.         // the above declared parameter fields accept values as discrete objects 
    127.         // so declaring discrete objects 
    128.         ParameterDiscreteValue dcItemId = new ParameterDiscreteValue(); 
    129.         //ParameterDiscreteValue dcStartDate = new ParameterDiscreteValue(); 
    130.         //ParameterDiscreteValue dcEndDate = new ParameterDiscreteValue(); 
    131.  
    132.         // setting the values of discrete objects 
    133.          
    134.  
    135.           dcItemId.Value = nItemId; 
    136.          
    137.         //dcStartDate.Value = DateTime.Parse(strStartDate); 
    138.         //dcEndDate.Value = DateTime.Parse(strEndDate); 
    139.          
    140.         // now adding these discrete values to parameters 
    141.           //paramField.HasCurrentValue = true; 
    142.  
    143.        
    144.  
    145.           //pfItemId.CurrentValues.Clear(); 
    146.          int valueIDD = int.Parse(Request.QueryString.Get("ItemId").ToString()); 
    147.           pfItemId.Name = valueIDD.ToString();  
    148.            
    149.         pfItemId.CurrentValues.Add(dcItemId); 
    150.         //ParaLocation.ApplyCurrentValues; 
    151.         pfItemId.HasCurrentValue = true; 
    152.         
    153.         //pfStartDate.CurrentValues.Add(dcStartDate); 
    154.         //pfEndDate.CurrentValues.Add(dcEndDate); 
    155.  
    156.         // now adding all these parameter fields to the parameter collection 
    157.         paramFields.Add(pfItemId); 
    158.          
    159.         //paramFields.Add(pfStartDate); 
    160.         //paramFields.Add(pfEndDate); 
    161.         ///////////////////// 
    162.         //Formula from Crystal 
    163.        //crViewer.SelectionFormula = "{COUNTRIES.REGION_ID} = " + int.Parse(Request.QueryString.Get("ItemId")) + ""; 
    164.         crViewer.RefreshReport(); 
    165.         // finally add the parameter collection to the crystal report viewer 
    166.         crViewer.ParameterFieldInfo = paramFields; 
    167.         
    168.          
    169.      
    170.     } 
    171. }

    Keep your post to under 1200 characters, else you loose the formatting. (you can do two posts if need be).
    Re. parameters. First, make sure yo have SP 1 for CR 10.5:
    https://smpdl.sap-ag.de/~sapidp/012002523100009351512008E/crbasic2008sp1.exe
    Next, see the following:
    [Crystal Reports for Visual Studio 2005 Walkthroughs|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23]
    CR Dev help file:
    http://msdn2.microsoft.com/en-us/library/bb126227.aspx
    Samples:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Im my lap has hard disk problem,how to resolve the problem,pls help me...

    Hello,
               I have hp pavilion dv4 lap,in this lap has some hard disk problem,when i am turn on the lap that screen shows this message "The smart hard disk check has detected an imminent failure.To ensure not data loss,please backup the content immediately and run the hard disk test in system diagnostics".
               After that i was diagnostics the system but no changes in the lap,,again again lap shows hard disk error(301).
               Then i  am chosen the enter option to start up the lap it take long time for openning the windows,after enter the windows that also shows about the hard disk  error in within few minitues,
               What can i do?
               This lap bought at 12-oct-2012 from malasiya,now im in tamil nadu,how to solve the problem please help me.

    Hello srhk. Thank you for posting on the HP Forums.
    I understand the hard disk is experiencing issues. Error 301 indicates the hard disk possesses a hardware defect. I would contact HP Phone Support for assistance, or purchase an equivalent hard disk.
    If you choose to contact HP, their options will be based on the warranty status of the computer. If you do not have this information, you can locate it at this website: http://h20566.www2.hp.com/portal/site/hpsc/public/wc/home?ac.admitted=1384280905804.876444892.199480...
    You can utilize this website to learn how to contact HP appropriately, based on your region: http://www8.hp.com/us/en/contact-hp/ww-contact-us.html
    Please let me know if you have any other questions or concerns.
    Mario
    I worked on behalf of HP.

  • Lightroom crash. How to resolve the problem?

    Hi to all, I have some problem with Lightroom 5.7.1 from one week.
    When I synchronize the folder, there is one new photo not synchronized. I press the synchronize button, but after all process lightroom going in crash...
    My OS is Windows 7
    My PC are:
    CPU AMD Phenom II x6 1100T
    RAM DDR3 8gb 1600Mhz
    GPU AMD HD 6870 1Gb DDR5
    MB Asrock 890fx deluxe5
    What should I do to resolve the problem?

    settings - general - reset - erase all contents and settings - this will wipe your phone clean.
    Then sign in with your apple id.

  • How to resolve the problem of "Update was terminated" when posting

    hello,
    please give me a favor. I met a big problem when running FB01, the system give me the error message: Express document "Update was terminated" received from author. I test all clients, all of them have the same problem, how to resolve.
    I use SAP ECC6.0 IDES, the error messages recorded by SM16 are:
    DDIC_TYPE_INCONSISTENCY
    SAPLGIVA
    FGVALATT
    16
    //bas/700_REL/src/krn/runt/abucutil.c#2
    ab_RxDdicTypeError
    1053
    20070528145604
    8176
    81920
    0
    37628064
    3299600
    879552
    DG
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Callstack without Exception:
    App : disp+work.EXE (pid=5564)
    When : 5/28/2007 14:56:4.843
    Threads : 2
    Computer Name : EXXEPT01
    User Name : SAPServiceER1
    Number of Processors: 2
    Processor Type: x86 Family 6 Model 15 Stepping 6
    Windows Version : 5.2 Current Build: 3790
    State Dump for Thread Id d10
    eax=00000201 ebx=00000484 ecx=00000210 edx=04bcf0de esi=00000484 edi=00000000
    eip=7c82ed54 esp=053cd608 ebp=053cd678 iopl=0 nv up ei pl zr na po nc
    eip=7c82ed54 esp=07e5fec0 ebp=07e5ff04 iopl=0         nv up ei pl zr na po nc
    cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00000246
    function : KiFastSystemCallRet
            7c82ed54 c3               ret
            7c82ed55 8da42400000000   lea     esp,[esp]              ss:07e5fec0=7c821514
            7c82ed5c 8d642400         lea     esp,[esp]              ss:29d6e4d3=????????
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    07e5ff04 010f51e5 000006e0 00000000 00000000 0613e580 ntdll!KiFastSystemCallRet
    07e5ff84 7c349565 00000000 00000000 00000000 0613e618 disp+work!SigIMsgFunc [signt.c (594)]
    07e5ffb8 77e66063 0613e618 00000000 00000000 0613e618 MSVCR71!endthreadex
    07e5ffec 00000000 7c3494f6 0613e618 00000000 00000000 kernel32!GetModuleFileNameA
    -cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00200246
    function : KiFastSystemCallRet
    7c82ed54 c3 ret
    7c82ed55 8da42400000000 lea esp,[esp] ss:053cd608=7c822124
    7c82ed5c 8d642400 lea esp,[esp] ss:272dbc1b=????????
    FramePtr ReturnAd Param#1 Param#2 Param#3 Param#4 Function Name
    053cd678 77e6ba12 00000484 ffffffff 00000000 053cd6ac ntdll!KiFastSystemCallRet
    053cd68c 0100a516 00000484 ffffffff 00000002 00000001 kernel32!WaitForSingleObject
    053cd6ac 0055ab69 0055aba2 7c38b5c8 7c38b5c8 7c38b5c8 disp+work!NTDebugProcess [ntstcdbg.c (449)]
    053cd6b0 0055aba2 7c38b5c8 7c38b5c8 7c38b5c8 01d28c78 disp+work!NTStack [dptstack.c (1365)]
    053cd6cc 0055abd6 7c38b5c8 00000000 00852a87 7c38b5c8 disp+work!CTrcStack2 [dptstack.c (352)]
    053cd6d8 00852a87 7c38b5c8 00000000 005f0059 00310030 disp+work!CTrcStack [dptstack.c (182)]
    053cd6fc 00855dd9 00000020 a02899f8 a02b037c 00000000 disp+work!rabax_CStackSave [abrabax.c (6842)]
    053cd7d4 007fa810 0141ec20 0141ebf0 0000041d 203ec5e0 disp+work!ab_rabax [abrabax.c (1213)]
    053cd7ec 00a1d65f a0284050 0000007b 053cd868 00000000 disp+work!ab_RxDdicTypeError [abucutil.c (1053)]
    053cd818 00a1d747 a02a4fe0 a02a4fe0 a02a4fe0 00000000 disp+work!FirstLevelChildCnt [scsypar.c (3423)]
    053cd894 00a1dca1 053cd8cc a02a4fe0 053d0d20 053d0ce4 disp+work!UcTypeToTree [scsypar.c (3578)]
    053d0d28 00a1dd69 053d0d44 a02a4fe0 00000000 a02a4fe0 disp+work!UcTypeToFragView [scsypar.c (3845)]
    053d0d70 00a170f0 a02a4fe0 104e3ac8 00000000 00a0cfa7 disp+work!sc_tparUcFragView [scsypar.c (3897)]
    053d0d80 00a0cfa7 a02a4fe0 00000000 0295d6d4 a01bc106 disp+work!sc_loadflds [scsytyp.c (813)]
    053d0d9c 00a1aafa a01bc106 0295d6d4 00000000 0295d6d4 disp+work!sc_ddictab [scsyddic.c (166)]
    053d0ef8 00a1b4f8 00000004 053d0f20 a01bc106 0295d6d4 disp+work!simple_type_find_1 [scsytyp.c (2999)]
    053d0f24 00a1b762 a01bc106 00000004 0295d6d4 0000000b disp+work!sc_complex_type_find [scsytyp.c (2621)]
    053d0f4c 00a13e2b a01bc106 0000000b 00000000 0295d6d4 disp+work!sc_ctypid [scsytyp.c (2447)]
    053d0f6c 00b8c83a 00000001 00000005 00000002 053d7a1c disp+work!sc_typid [scsymb.c (1733)]
    053d79d4 009d2f1d 000000d1 0294d7d4 02939df8 02939d94 disp+work!rs_expan_abap [rsabap32.c (1241)]
    053d79e8 00a08072 000000d1 053d7b04 a01bc0f4 00000000 disp+work!sc_expan [rsyn6.c (2228)]
    053d7adc 00a076df 00000000 053d7b04 00000000 00000005 disp+work!parse [rsyn4.c (1398)]
    053d7b1c 00a5c027 00000076 00000000 00000001 00000001 disp+work!sc_check [rsyn4.c (402)]
    053d816c 00b2b436 00000000 06474310 06495096 00000000 disp+work!sc_inclu [rsyn31.c (1675)]
    053debd4 009d2f1d 00000076 0294d7d4 02939124 02939114 disp+work!rs_expan_abap [rsabap31.c
    053debe8 00a08072 00000076 053ded04 a01ae0f0 00000000 disp+work!sc_expan [rsyn6.c (2228)]
    053decdc 00a076df 00000000 053ded04 00000000 00000005 disp+work!parse [rsyn4.c (1398)]
    053ded1c 00a5c027 00000076 00000000 00000001 00000001 disp+work!sc_check [rsyn4.c (402)]
    053df36c 00b2b436 00000000 00000000 00000000 00000000 disp+work!sc_inclu [rsyn31.c (1675)]
    053e5dd4 009d2f1d 00000076 0294d7d4 02939124 02939114 disp+work!rs_expan_abap [rsabap31.c
    053e5de8 00a08072 00000076 053e5f04 a01a00ec 00000000 disp+work!sc_expan [rsyn6.c (2228)]
    053e5edc 00a076df 00000000 053e5f04 00000000 00000000 disp+work!parse [rsyn4.c (1398)]
    053e5f1c 00a08b07 0295ba90 053e9c88 053e64c8 009ce139 disp+work!sc_check [rsyn4.c (402)]
    053e5f2c 009ce139 00000000 00000000 00000000 053e64a0 disp+work!sc_checkStart [rsyn4.c (24
    053e64c8 007e0f7f 053e9c88 00000001 00000000 00000000 disp+work!cg_generate [cgmain2.c (65
    053e6510 0057a552 053e9c88 00000000 00000000 053ec954 disp+work!ab_gabap [abgen.c (1592)]
    053e9cf8 007e1558 00000041 a0828954 00000000 00000000 disp+work!dy_gen_abap [dynpabsv.c (2
    053ec914 00656064 a0828954 00000000 00000000 00000000 disp+work!ab_genprog [abgen.c (1345)
    053ec964 006566ab a0828954 00000000 00000001 053ec9a4 disp+work!newload [abload1.c (388)]
    053ec990 0065673b a0828954 00000001 053ec9a4 00000000 disp+work!ab_LoadProgOrTrfo [abload1
    053ec9a8 0072796a a0828954 00000001 00000000 00000000 disp+work!ab_LoadProg [abload1.c (77
    053ecadc 00708d14 00000000 a016ff64 0000001e 00003623 disp+work!ab_link [ablink.c (381)]
    053ecb04 0070c9c0 a016ff64 0000001e 00000000 a0828954 disp+work!perform_load [abperf.c (68
    053ed0bc 0067af78 00000003 a080fd88 00000000 053ed124 disp+work!ab_jxper [abperf.c (478)]
    a016ff64 80000000 005f004c 80000000 00000044 80000000 disp+work!ab_extri [abextri.c (552)]
    005f0025 458bec8b b1908a08 56000000 8a0c758b 0000b18e <nosymbols>
    005f0025 458bec8b b1908a08 56000000 8a0c758b 0000b18e <nosymbols>
    55c3c95b 00000000 00000000 00000000 00000000 00000000 <nosymbols>
    State Dump for Thread Id 14ec
    eax=00000001 ebx=00000103 ecx=fffffffe edx=05580000 esi=00000000 edi=00000000
    eip=7c82ed54 esp=07e5fec0 ebp=07e5ff04 iopl=0 nv up ei pl zr na po nc
    cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00000246
    function : KiFastSystemCallRet
    7c82ed54 c3 ret
    7c82ed55 8da42400000000 lea esp,[esp] ss:07e5fec0=7c821514
    7c82ed5c 8d642400 lea esp,[esp] ss:29d6e4d3=????????
    FramePtr ReturnAd Param#1 Param#2 Param#3 Param#4 Function Name
    07e5ff04 010f51e5 000006e0 00000000 00000000 0613e580 ntdll!KiFastSystemCallRet
    07e5ff84 7c349565 00000000 00000000 00000000 0613e618 disp+work!SigIMsgFunc [signt.c (594)]
    07e5ffb8 77e66063 0613e618 00000000 00000000 0613e618 MSVCR71!endthreadex
    07e5ffec 00000000 7c3494f6 0613e618 00000000 00000000 kernel32!GetModuleFileNameA
    -FAGLFLEXT
    123
    700 Windows NT 2x Intel 80686 EXXEPT01 ORACLE ER1 EXXEPT01
    700
    NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10
    OCI_10103_SHARE
          Gregory

    Hello Greg,
    Thank you for this question. What you are reporting looks to me like requires deeper analysis in the system. The channel for such questions is the Service Marketplace <i>http://service.sap.com/.</i> Please post it there.
    Thank you!
    Kind regards, Kyoko

  • IMac keep ejecting my 2TB external HDD but in safe boot mode it is totally fine. How to resolve the problem?

    Hi,
    I have WD 2 TB external HDD. It has two partitions, one I use for my time machiine backup and one for my personal files and documents. Recently the iMac keeps ejecting the external HDD as soon as it gets connected to the iMac. I tried to reboot the computer in safe boot mode (by holding down the shift key at startup) and found out that problem is not there anymore. I can access my external HDD there and it never ejects the HDD.
    It seems like the HDD is fine, the problem is with the iMac. Can anybody please give any solution to this problem?
    Thanks!

    Thanks Allan for your reply!
    It makes sence that there must be some log in /start up item which is causing this problem. I went System Preference>Users & Groups> Login items> disabled all the items there to make sure, and restarted the computer but the problem is still there
    Is there any other way to stop/configure the log in items?
    Thanks again!

  • How can solve the problem in email " SMTP Relay "Message rejected" ", how can solve the problem in email " SMTP Relay "Message rejected" "

    Dear sirs,
    how to solve the mail problem which occurs while I am abroad; bearing in mind that I use HOTSPOT and sometime it's sending emails sometime getting the below messages " SMTP Relay "Message rejected"

    The outgoing mail server is rejecting mail from your network address. Typically that happens when your mail service provider is also your ISP, and you connect to it from another network. The SMTP server will allow connections without a password from anywhere, but it will only relay mail from within the ISP's network. It could also be that your account on the server has expired or been suspended.
    If you need to send mail from outside your ISP's network, use an independent mail service provider. I don't have a specific recommendation.

  • TS3694 my iphone3G having a trouble. how to resolve the problem it say having error accured 1015

    please help me to resolve this ...having trouble to restore my iphone3G

    Unauthorized modification of iOS
    http://support.apple.com/kb/HT3743
    ERROR 1015...
    This Error Code is indicative of the Device being jailbroken / Hacked...
    Sorry... But...
    The discussion of Jailbroken Devices is against the Terms of Use of this Forum.
    You will need to look elsewhere.

  • HT1343 How to resolve the problem of auto cursor movement in Macbook Pro

    My macbook cursor is moving automatically. Need help to resolve.

    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Preferences/com.apple.driver.AppleBluetoothMultitouch.trackpad.plist. Move the .plist to your desktop.
    Re-launch by logging out/in and test. If it works okay, delete the plist from the desktop.
    If the same, return the .plist to where you got it  from, overwriting the newer ones.
    Thanks to leonie for some information contained in this.
    You might need to redo the View settings after an update.

  • Imac crashes daily, how can diagnose the problem

    My imac is crashing (Black screen) once to maybe 3 times daily. I think it's a kernel panic, but I'm not sure.
    I'm not sure if this is the information needed. It's from the Console/System Diagnostic reports/Kernel_2013-10-07-085723-imac-3.panic. Can anyone translate this for me? If this is not the right information, where would I find the right information. Thanks
    Mon Oct  7 08:57:23 2013
    panic(cpu 0 caller 0x5df48c97): NVRM[0/1:0:0]: Read Error 0x0000336c: CFG 0x060910de 0x20100406 0xe2000000, BAR0 0xe2000000 0x5ea5c000 0x092480a2, D0, P3/4
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x5c7f3728 : 0x21b837 (0x5dd7fc 0x5c7f375c 0x223ce1 0x0)
    0x5c7f3778 : 0x5df48c97 (0x5e15e22c 0x5e1ce840 0x5e16cf88 0x0)
    0x5c7f3818 : 0x5e749a7d (0x8be7804 0x7411004 0x336c 0x5df38774)
    0x5c7f3858 : 0x5e72293b (0x7411004 0x336c 0x9f74804 0x0)
    0x5c7f38c8 : 0x5e72f273 (0x7411004 0x9da4004 0xa 0x5c7f391c)
    0x5c7f39e8 : 0x5e0cebe3 (0x7411004 0x9da4004 0x5c7f3af0 0x5c7f3af0)
    0x5c7f3b28 : 0x5e0cf58d (0x7411004 0x9db1c04 0x0 0x0)
    0x5c7f3bb8 : 0x5e76c1b7 (0x7411004 0x9db1c04 0xd 0x2)
    0x5c7f3cc8 : 0x5e7711e7 (0x7411004 0x9ced004 0x0 0x0)
    0x5c7f3df8 : 0x5e082258 (0x7411004 0x749d004 0x0 0x0)
    0x5c7f3e38 : 0x5df51e2b (0x7411004 0x749d004 0x0 0x0)
    0x5c7f3ed8 : 0x553ec7 (0x0 0x9e4cf00 0x1 0x2275c6)
    0x5c7f3f28 : 0x552ea6 (0x9e4cf00 0x0 0x0 0x0)
    0x5c7f3f88 : 0x552eea (0x8c85280 0x8c85280 0x84cb3bf0 0x7fff)
    0x5c7f3fc8 : 0x2a179c (0x8c85280 0x0 0x10 0x994fc24)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e647000->0x5ea5bfff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dee2000
             com.apple.NVDAResman(6.3.6)@0x5dee2000->0x5e1cffff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ce34000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x55668000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 81510992370745
    unloaded kexts:
    (none)
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.makemkv.kext.daspi          1
    com.airgrab.driver.AirGrabFirewallModule          3.0
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.driver.AppleBluetoothMultitouch          54.3 - last loaded 337546357843
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.filesystems.udf          2.1.1
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.3.6
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0

    Thanks for the reply. I do have more reports. Here are 4. They are oldest first.
    The Crash Reports did not always come up after restarting. I'm not sure why.
    Thanks for the help.
    Sept 12
    Interval Since Last Panic Report:  28485426 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Thu Sep 12 13:11:11 2013
    panic(cpu 1 caller 0x5e03ac97): NVRM[0/1:0:0]: Read Error 0x00070000: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xe2000000 0x5eb4e000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5da71c88 : 0x21b837 (0x5dd7fc 0x5da71cbc 0x223ce1 0x0)
    0x5da71cd8 : 0x5e03ac97 (0x5e25022c 0x5e2c0840 0x5e25ef88 0x0)
    0x5da71d78 : 0x5e83ba7d (0x8a75c04 0x73d5004 0x70000 0x5e032fa0)
    0x5da71db8 : 0x5e74ce03 (0x73d5004 0x70000 0x5da71dd4 0x0)
    0x5da71e08 : 0x5e8296ab (0x73d5004 0x9eff004 0x1 0x1)
    0x5da71ed8 : 0x5e8314c0 (0x73d5004 0xb027004 0x0 0x1)
    0x5da71fe8 : 0x5e1c0ca2 (0x73d5004 0xb027004 0x5da7203c 0x5da720f0)
    0x5da72128 : 0x5e1c158d (0x73d5004 0x7b3fc04 0x0 0x0)
    0x5da721b8 : 0x5e85dff7 (0x73d5004 0x7b3fc04 0xd 0x2)
    0x5da722c8 : 0x5e8631e7 (0x73d5004 0x7bc3804 0x0 0x0)
    0x5da723f8 : 0x5e174258 (0x73d5004 0x78dc004 0x0 0x0)
    0x5da72438 : 0x5e043e2b (0x73d5004 0x78dc004 0x0 0x0)
    0x5da724d8 : 0x5e04050a (0x0 0x9 0x0 0x0)
    0x5da72688 : 0x5e042467 (0x0 0x600d600d 0x7029 0x5da726b8)
    0x5da72758 : 0x5d922e99 (0xc1d00051 0xbeef0003 0x87f3a00 0x87f3a00)
    0x5da727a8 : 0x5d922fce (0x46dcb000 0x87f3a00 0x2301e000 0x0)
    0x5da727d8 : 0x5d8fa484 (0x46dcb000 0x87f3a00 0x2301e000 0x0)
    0x5da727f8 : 0x5d91beb2 (0x46dcb000 0x722e800 0x5da72828 0x55f3f4)
    0x5da72838 : 0x5d91bccd (0x46dcb000 0x722e800 0x5da72868 0x506769)
    0x5da72868 : 0x5d91bc45 (0x46dcb000 0x7e01980 0x722e800 0x0)
    0x5da72898 : 0x5d91bfa7 (0x46dcb000 0x7e01980 0x7f68800 0x0)
    0x5da728b8 : 0x5d93ebce (0x7e01980 0x7f68800 0x626 0x139bb800)
    0x5da728e8 : 0x5d93d1a1 (0x47181000 0x47181788 0x1 0x2209aa)
    0x5da72908 : 0x5d90488f (0x47181000 0x47181788 0xa6d41c0 0x507617)
    0x5da72938 : 0x5d93ec64 (0x47181000 0x5da72a7c 0x5da72968 0x47181000)
    0x5da72978 : 0x5d908c93 (0x47181000 0x5da72a7c 0x5da72a7c 0x5da729e0)
    0x5da72ab8 : 0x5d9425d8 (0x47181000 0x1 0x5da72bcc 0x5da72bc8)
    0x5da72b68 : 0x5d904fe1 (0x47181000 0x1 0x5da72bcc 0x5da72bc8)
    0x5da72be8 : 0x56da06 (0x47181000 0x0 0x5da72e3c 0x5da72c74)
    0x5da72c38 : 0x56e2a5 (0x5d993720 0x47181000 0x9259788 0x1)
    0x5da72c88 : 0x56eb59 (0x47181000 0x10 0x5da72cd0 0x0)
    0x5da72da8 : 0x286638 (0x47181000 0x10 0x9259788 0x1)
    0x5da73e58 : 0x21dbe5 (0x9259760 0x98215a0 0x12c778 0x38993)
    0x5da73e98 : 0x210a86 (0x9259700 0x0 0x7f8b8c0 0x9096f10)
    0x5da73ef8 : 0x216f84 (0x9259700 0x0 0x0 0x0)
    0x5da73f78 : 0x295c57 (0x9ad6368 0x0 0x0 0x0)
    0x5da73fc8 : 0x2a256d (0x9ad6364 0x2 0x10 0x9ad6364)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.GeForce(6.3.6)@0x5d8f9000->0x5d9affff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dfd4000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x55643000
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x559ca000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cddc000
             com.apple.nvidia.nv50hal(6.3.6)@0x5e739000->0x5eb4dfff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dfd4000
             com.apple.NVDAResman(6.3.6)@0x5dfd4000->0x5e2c1fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x559ca000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x55643000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cddc000
    BSD process name corresponding to current thread: Safari
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 248930691666315
    unloaded kexts:
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2 (addr 0x5c70f000, size 0x16384) - last unloaded 238309029785429
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp          4.1.18 - last loaded 193895133420921
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.kensington.trackballworks.driver          1.0.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.makemkv.kext.daspi          1
    com.airgrab.driver.AirGrabFirewallModule          3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.filesystems.udf          2.1.1
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AudioAUUC          1.57
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.GeForce          6.3.6
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac8,1, BootROM IM81.00C1.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.30f1
    Graphics: NVIDIA GeForce 8800 GS, NVIDIA GeForce 8800 GS, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Ethernet, Ethernet, en0
    Network Service: USB Ethernet (en2), Ethernet, en2
    Serial ATA Device: ST3500418ASQ, 465.76 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-K06A, 3.7 GB
    USB Device: USB 2.0 Hub [MTT], 0x1a40  (TERMINUS TECHNOLOGY INC.), 0x0201, 0xfa200000 / 2
    USB Device: USB to Serial-ATA bridge, 0x1bcf  (Sunplus Innovation Technology Inc.), 0x0c31, 0xfa240000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd100000 / 2
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd130000 / 7
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd110000 / 6
    USB Device: EPSON WorkForce 845 Series, 0x04b8  (Seiko Epson Corp.), 0x0892, 0xfd120000 / 5
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd140000 / 4
    USB Device: Kensington Expert Mouse, 0x047d  (Kensington), 0x1020, 0xfd144000 / 11
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd143000 / 10
    USB Device: GoFlex Desk, 0x0bc2  (Seagate LLC), 0x50a7, 0xfd142000 / 9
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd141000 / 8
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfd141200 / 12
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1a100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x820f, 0x1a110000 / 5
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2
    FireWire Device: d2 Quadra v3C, LaCie, Up to 800 Mb/sec
    FireWire Device: My Passport 071D, WD, Up to 800 Mb/sec
    Oct 8
    Interval Since Last Panic Report:  2148285 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Tue Oct  8 21:18:25 2013
    panic(cpu 1 caller 0x5dacdc97): NVRM[0/1:0:0]: Read Error 0x00002500: CFG 0x060910de 0x00100406 0xe2000000, BAR0 0xe2000000 0x5e5e1000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5bd73768 : 0x21b837 (0x5dd7fc 0x5bd7379c 0x223ce1 0x0)
    0x5bd737b8 : 0x5dacdc97 (0x5dce322c 0x5dd53840 0x5dcf1f88 0x0)
    0x5bd73858 : 0x5e2cea7d (0x955e804 0x79d2004 0x2500 0x79d2004)
    0x5bd73898 : 0x5e2bfd5e (0x79d2004 0x2500 0x0 0x0)
    0x5bd73918 : 0x5e2b6132 (0x79d2004 0x9606804 0x41 0x5bd73950)
    0x5bd73a38 : 0x5dbd3b4d (0x79d2004 0x9606804 0x712200c 0x200)
    0x5bd73a78 : 0x5dc52cee (0x79d2004 0x9606804 0xc57a0c8 0xc57a004)
    0x5bd73b28 : 0x5dc542df (0x79d2004 0x9605404 0x0 0x0)
    0x5bd73bb8 : 0x5e2f11b7 (0x79d2004 0x9605404 0xd 0x2)
    0x5bd73cc8 : 0x5e2f61e7 (0x79d2004 0x94f2404 0x0 0x0)
    0x5bd73df8 : 0x5dc07258 (0x79d2004 0x7943004 0x0 0x0)
    0x5bd73e38 : 0x5dad6e2b (0x79d2004 0x7943004 0x0 0x0)
    0x5bd73ed8 : 0x553ec7 (0x0 0x973e180 0x1 0x2a0577)
    0x5bd73f28 : 0x552ea6 (0x973e180 0x0 0x0 0xffffffff)
    0x5bd73f88 : 0x552eea (0x8aa6a80 0x8e65000 0x5bd73fc8 0x4d45e9)
    0x5bd73fc8 : 0x2a179c (0x8aa6a80 0x0 0x10 0x8e1c704)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e1cc000->0x5e5e0fff
                dependency: com.apple.NVDAResman(6.3.6)@0x5da67000
             com.apple.NVDAResman(6.3.6)@0x5da67000->0x5dd54fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ccf9000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5d5e2000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 130159889729611
    unloaded kexts:
    (none)
    loaded kexts:
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.makemkv.kext.daspi          1
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.driver.IOBluetoothBNEPDriver          2.4.5f3 - last loaded 1918336405847
    com.apple.driver.AppleUSBCDC          4.0.5
    com.apple.filesystems.udf          2.1.1
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.3.6
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac8,1, BootROM IM81.00C1.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.30f1
    Graphics: NVIDIA GeForce 8800 GS, NVIDIA GeForce 8800 GS, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: USB Ethernet (en2), Ethernet, en2
    Serial ATA Device: ST3500418ASQ, 465.76 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-K06A, 3.7 GB
    USB Device: USB 2.0 Hub [MTT], 0x1a40  (TERMINUS TECHNOLOGY INC.), 0x0201, 0xfa200000 / 2
    USB Device: Android Phone, 0x0bb4  (HTC Corporation), 0x0ff9, 0xfa230000 / 4
    USB Device: USB to Serial-ATA bridge, 0x1bcf  (Sunplus Innovation Technology Inc.), 0x0c31, 0xfa240000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd100000 / 2
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd130000 / 7
    USB Device: EPSON WorkForce 845 Series, 0x04b8  (Seiko Epson Corp.), 0x0892, 0xfd120000 / 6
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd140000 / 5
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd143000 / 10
    USB Device: GoFlex Desk, 0x0bc2  (Seagate LLC), 0x50a7, 0xfd142000 / 9
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd141000 / 8
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfd141200 / 11
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1a100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x820f, 0x1a110000 / 3
    FireWire Device: d2 Quadra v3C, LaCie, Up to 800 Mb/sec
    FireWire Device: My Passport 071D, WD, Up to 800 Mb/sec
    Oct 10
    Interval Since Last Panic Report:  2233951 sec
    Panics Since Last Report:          3
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Thu Oct 10 11:40:56 2013
    panic(cpu 1 caller 0x5dff0c97): NVRM[0/1:0:0]: Read Error 0x00002500: CFG 0x060910de 0x00100406 0xe2000000, BAR0 0xe2000000 0x5eb04000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5c84b688 : 0x21b837 (0x5dd7fc 0x5c84b6bc 0x223ce1 0x0)
    0x5c84b6d8 : 0x5dff0c97 (0x5e20622c 0x5e276840 0x5e214f88 0x0)
    0x5c84b778 : 0x5e7f1a7d (0x9758804 0x7411004 0x2500 0x7411004)
    0x5c84b7b8 : 0x5e7e2d5e (0x7411004 0x2500 0x0 0x0)
    0x5c84b838 : 0x5e7d9132 (0x7411004 0x978a804 0x41 0x5c84b870)
    0x5c84b958 : 0x5e0f6b4d (0x7411004 0x978a804 0xabaa00c 0x200)
    0x5c84b998 : 0x5e175a6e (0x7411004 0x978a804 0xb7dcf2c 0xb7dcf04)
    0x5c84ba48 : 0x5e1772df (0x7411004 0x9795c04 0x0 0x0)
    0x5c84bad8 : 0x5e7d7f19 (0x7411004 0x9795c04 0x6 0x2)
    0x5c84bb58 : 0x5e7e1f8e (0x7411004 0x978a804 0x1000 0x5c84bc6c)
    0x5c84bcc8 : 0x5e81933e (0x7411004 0x978a804 0x0 0x0)
    0x5c84bdf8 : 0x5e12a258 (0x7411004 0x774b004 0x0 0x0)
    0x5c84be38 : 0x5dff9e2b (0x7411004 0x774b004 0x0 0x0)
    0x5c84bed8 : 0x553ec7 (0x0 0x9902e80 0x1 0x83e4000)
    0x5c84bf28 : 0x552ea6 (0x9902e80 0x0 0x0 0x4ecc7284)
    0x5c84bf88 : 0x552eea (0x8b6f6c0 0x704c100 0x5c84bfc8 0x4d45e9)
    0x5c84bfc8 : 0x2a179c (0x8b6f6c0 0x0 0x10 0x79066c4)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e6ef000->0x5eb03fff
                dependency: com.apple.NVDAResman(6.3.6)@0x5df8a000
             com.apple.NVDAResman(6.3.6)@0x5df8a000->0x5e277fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ce45000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cccf000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 275304880408
    unloaded kexts:
    (none)
    loaded kexts:
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.trackballworks.driver          1.0.0
    com.pctools.iantivirus.kfs          1.0.1
    com.kensington.mouseworks.driver.KMWUSBHIDMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.makemkv.kext.daspi          1
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.filesystems.udf          2.1.1 - last loaded 58033495234
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.GeForce          6.3.6
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple

Maybe you are looking for

  • Enhancement to a cube

    Hi Gurus I am working on BI 7 and as per a requirement i had to add 2 fields i.e calmonth(0CALMONTH) & a key figure namely document number (0CRM_NUMDOC) to a cube, now in tranformation calmonth is being mapped to a field in the DSO name of the field

  • How can I delete EVERY song from my iPhone

    I'm a user of Spotify so I have no need to have all of my songs on my iPhone, since I can just listen to all of them over the internet through Spotify. I have an iPhone 3GS. I want to preserve as much hard drive space on my iPhone as I can and thus I

  • FCP Quicktime Codec for Windows

    I have an HD sequence that I exported using Export to Quicktime (movie is self contained); This gives me a .mov file that is uncompressed and has a smaller file size than any other way I export. I tried to play the file at my friends house on his PC

  • WLSE states no measurement report received on AP scan

    I have a netwok with 1240's with fw 123-8ja2 WLSE:2.13 30 AP's All AP's are registred to the WDS. The WLSE properly authenticated to the WDS (setting registry keys). All AP's are managed by the WLSE. Radio management is switched on on all AP's. When

  • Post Processing List

    Hello all, I have a question related to the Post Processing List (transaction MF47), where they appear the backlogs resulted from backflush. If, by mistake, I deleted some postrocessing records (instead of processing them), how could I see later thes