Use of ODP and casual application freeze-up

Hello,
I'm writing a small application which connects to MS SQL 2000 and Oracle 10.2.0.1.0 and transports data between them.
When it comes to biggest table which is called CLANKY, there is 11892 records with clob columns and fulltext index over it.
But during the transfer often happen that application stops on OracleCommand.ExecuteNonQuery() and will not continue again. There is no specification of situation when it happen. It can happen on command which inserts, or on command launching stored procedure which retrieves ID of last inserted record through a trigger code which is storing it in variable. Sometimes it doesn't happen during transfer of CLANKY table, but most often there. Sometimes the application ends properly.
I've tried lot of things to make sure I'm doing everything right, but nothing help. I was closing and disposing all OracleCommands but it make it (subjectively) worse. I don't think that I'm doing something so complicated.
In memory I'm holding only Dictionary<int,int> of remapped ids.
Here is the code for transfering CLANKY table.
private bool transferTableClanky(SqlConnection sqlSource, OracleConnection oracleTarget, Dictionary<int, int> autoriMap, Dictionary<int, int> jiniAutoriMap, Dictionary<int, int> zdrojeMap, Dictionary<int, int> clankyMap)
oracleTarget.Close();
oracleTarget.Open();
SqlCommand command = new SqlCommand
("SELECT id_clanku, nazev, popisek, clanek, datum_vlozeni, datum_zmeny, je_odkaz, odkaz, id_autora, "
+ "zobrazit_jineho_autora, id_jineho_autora, zobrazit_zdroj, id_zdroje, obr_nahled, obr_nahled_text, "
+ "ts FROM clanky;"
, sqlSource);
SqlDataReader reader = command.ExecuteReader();
log("Start:" + DateTime.Now.ToString());
int count = 0;
while (reader.Read())
count++;
int id_clanku = reader.GetInt32(0);
string nazev = reader.GetString(1);
string popisek = "";
if (!reader.IsDBNull(2))
popisek = reader.GetString(2);
string clanek = "";
if (!reader.IsDBNull(3))
clanek = reader.GetString(3);
DateTime datum_vlozeni = reader.GetDateTime(4);
DateTime datum_zmeny = reader.GetDateTime(5);
bool je_odkaz = reader.GetBoolean(6);
string odkaz = reader.GetString(7);
int id_autora = -1;
if (!reader.IsDBNull(8))
id_autora = reader.GetInt32(8);
id_autora = autoriMap[id_autora];
bool zobrazit_jineho_autora = reader.GetBoolean(9);
int id_jineho_autora = -1;
if (!reader.IsDBNull(10))
id_jineho_autora = reader.GetInt32(10);
id_jineho_autora = jiniAutoriMap[id_jineho_autora];
bool zobrazit_zdroj = reader.GetBoolean(11);
int id_zdroje = -1;
if (!reader.IsDBNull(12))
id_zdroje = reader.GetInt32(12);
id_zdroje = zdrojeMap[id_zdroje];
string obr_nahled = reader.GetString(13);
string obr_nahled_text = reader.GetString(14);
int ts = -1;
if (!reader.IsDBNull(15))
ts = reader.GetBoolean(15) ? 1 : 0;
OracleCommand oraCmd = new OracleCommand(
"INSERT INTO clanky(nazev, popisek, clanek, datum_vlozeni, datum_zmeny, je_odkaz, odkaz, id_autora, "
+ "zobrazit_jineho_autora, id_jineho_autora, zobrazit_zdroj, id_zdroje, obr_nahled, obr_nahled_text, "
+ "ts) "
+ "VALUES (:nazev, :popisek, :clanek, :datum_vlozeni, :datum_zmeny, :je_odkaz, :odkaz, :id_autora, "
+ ":zobrazit_jineho_autora, :id_jineho_autora, :zobrazit_zdroj, :id_zdroje, :obr_nahled, :obr_nahled_text, "
+ ":ts)", oracleTarget);
oraCmd.Parameters.Add("nazev", OracleDbType.Varchar2, nazev, ParameterDirection.Input);
oraCmd.Parameters.Add("popisek", OracleDbType.Varchar2, popisek, ParameterDirection.Input);
OracleClob oraClob = new OracleClob(oracleTarget);
char[] clanekArr = clanek.ToCharArray();
oraClob.Write(clanekArr, 0, clanekArr.Length);
oraCmd.Parameters.Add("clanek", OracleDbType.Clob, oraClob, ParameterDirection.Input);
oraCmd.Parameters.Add("datum_vlozeni", OracleDbType.Date, new OracleDate(datum_vlozeni), ParameterDirection.Input);
oraCmd.Parameters.Add("datum_zmeny", OracleDbType.Date, new OracleDate(datum_zmeny), ParameterDirection.Input);
oraCmd.Parameters.Add("je_odkaz", OracleDbType.Decimal, new OracleDecimal(je_odkaz ? 1 : 0), ParameterDirection.Input);
oraCmd.Parameters.Add("odkaz", OracleDbType.Varchar2, odkaz, ParameterDirection.Input);
if (id_autora == -1)
oraCmd.Parameters.Add("id_autora", OracleDbType.Decimal, null, ParameterDirection.Input);
else
oraCmd.Parameters.Add("id_autora", OracleDbType.Decimal, new OracleDecimal(id_autora), ParameterDirection.Input);
oraCmd.Parameters.Add("zobrazit_jineho_autora", OracleDbType.Decimal, new OracleDecimal(zobrazit_jineho_autora ? 1 : 0), ParameterDirection.Input);
if (id_jineho_autora == -1)
oraCmd.Parameters.Add("id_jineho_autora", OracleDbType.Decimal, null, ParameterDirection.Input);
else
oraCmd.Parameters.Add("id_jineho_autora", OracleDbType.Decimal, new OracleDecimal(id_jineho_autora), ParameterDirection.Input);
oraCmd.Parameters.Add("zobrazit_zdroj", OracleDbType.Decimal, new OracleDecimal(zobrazit_zdroj ? 1 : 0), ParameterDirection.Input);
if (id_zdroje == -1)
oraCmd.Parameters.Add("id_zdroje", OracleDbType.Decimal, null, ParameterDirection.Input);
else
oraCmd.Parameters.Add("id_zdroje", OracleDbType.Decimal, new OracleDecimal(id_zdroje), ParameterDirection.Input);
oraCmd.Parameters.Add("obr_nahled", OracleDbType.Varchar2, obr_nahled, ParameterDirection.Input);
oraCmd.Parameters.Add("obr_nahled_text", OracleDbType.Varchar2, obr_nahled_text, ParameterDirection.Input);
if (ts == -1)
oraCmd.Parameters.Add("ts", OracleDbType.Decimal, null, ParameterDirection.Input);
else
oraCmd.Parameters.Add("ts", OracleDbType.Decimal, new OracleDecimal(ts), ParameterDirection.Input);
oraCmd.ExecuteNonQuery();
clankyMap[id_clanku] = getIdentity(oracleTarget);
this.tickCallback();
oraCmd.Dispose();
reader.Close();
log("End with " + count + " of records:" + DateTime.Now.ToString());
return true;
}

I think it's caused by Oracle.DataAccess connectors. I've used a System.Data.OracleClient connector by Microsoft and it works well. And the code is doing the same INSERT and stored procedure call.
What exactly do you mean with tracing the session? Dou you think it's locked-up on the database side? :o

Similar Messages

  • TS2611 I re installed my Final Cut express software, now when I go to use my "halo" and "arrow" application I get a message that says the file format is too new for this version of the application.  Anybody have suggestions?

    I re installed my Final Cut express software, now when I go to use my "halo" and "arrow" application I get a message that says the file format is too new for this version of the application.  Anybody have suggestions?

    After install, did you go to  Apple menu > Software Update to update your FCE to the latest version?
    MtD

  • Blue Lines rectangle following cursor and all Application freezes - snow leopard

    hello,
    i have a big problem with my macbook pro
    when snow leopard 10.6.8 startup, gray screen appers and freezes.
    what did i :
    1 - i tried to boot from Install DVD but blue screen appears and freezes.
    2- i booted from external HD in safe mode and i erased my HD by disk utility and i installed clean os from external HD  ( in safe mode - blue lines around the cursor - see the picture)
    but the problem still,
    i booted in safe mode and i updated the os to 10.6.8, and the problem still,
    3- i reset the SMC and PRAM and EFI. and same problem
    4- i repaired the disk and permission from ( external HD - safe mode and from single user) , after that the system worked fine and no problems occurred,
    i startup snow leopard normally and every thing fine, but i tried to open any application - blue Lines rectangle following cursor and all Application freezes, but i can move the mouse.
    the problem sometimes happens and sometimes not.
    i opened disk utility and verified disk, the hard disk is ok
    i repaired the disk permission - the disk utility repaired many files successfully (every time i repair the disk permission, same files repaired but not working )
    i tried to install lion os but my mac dual core, lion os mini Req. core 2 .
    - any help please?
    note: there isn't apple support in my country ( Palestine )

    Disk Repair an permission logs:
    Verifying volume “D A M A S”
    Performing live verification.
    Checking Journaled HFS Plus volume.
    Checking extents overflow file.
    Checking catalog file.
    Checking multi-linked files.
    Checking catalog hierarchy.
    Checking extended attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume D A M A S appears to be OK.
    Repairing permissions for “D A M A S”
    Permissions differ on "System/Library/Extensions/ATI1300Controller.kext/Contents/_CodeSignature/CodeR equirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATI1300Controller.kext/Contents/_CodeSignature/CodeR equirements".
    Permissions differ on "System/Library/Extensions/ATI1600Controller.kext/Contents/_CodeSignature/CodeR equirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATI1600Controller.kext/Contents/_CodeSignature/CodeR equirements".
    Permissions differ on "System/Library/Extensions/ATI1900Controller.kext/Contents/_CodeSignature/CodeR equirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATI1900Controller.kext/Contents/_CodeSignature/CodeR equirements".
    Permissions differ on "System/Library/Extensions/ATI2400Controller.kext/Contents/_CodeSignature/CodeR equirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATI2400Controller.kext/Contents/_CodeSignature/CodeR equirements".
    Permissions differ on "System/Library/Extensions/ATI2600Controller.kext/Contents/_CodeSignature/CodeR equirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATI2600Controller.kext/Contents/_CodeSignature/CodeR equirements".
    Permissions differ on "System/Library/Extensions/ATI3800Controller.kext/Contents/_CodeSignature/CodeR equirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATI3800Controller.kext/Contents/_CodeSignature/CodeR equirements".
    Permissions differ on "System/Library/Extensions/ATI4600Controller.kext/Contents/_CodeSignature/CodeR equirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATI4600Controller.kext/Contents/_CodeSignature/CodeR equirements".
    Permissions differ on "System/Library/Extensions/ATI4800Controller.kext/Contents/_CodeSignature/CodeR equirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATI4800Controller.kext/Contents/_CodeSignature/CodeR equirements".
    Permissions differ on "System/Library/Extensions/ATIFramebuffer.kext/Contents/_CodeSignature/CodeRequ irements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATIFramebuffer.kext/Contents/_CodeSignature/CodeRequ irements".
    Permissions differ on "System/Library/Extensions/ATIRadeonX1000.kext/Contents/PkgInfo", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATIRadeonX1000.kext/Contents/PkgInfo".
    Permissions differ on "System/Library/Extensions/ATIRadeonX1000.kext/Contents/_CodeSignature/CodeRequ irements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATIRadeonX1000.kext/Contents/_CodeSignature/CodeRequ irements".
    Permissions differ on "System/Library/Extensions/ATIRadeonX2000.kext/Contents/PkgInfo", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATIRadeonX2000.kext/Contents/PkgInfo".
    Permissions differ on "System/Library/Extensions/ATIRadeonX2000.kext/Contents/_CodeSignature/CodeRequ irements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATIRadeonX2000.kext/Contents/_CodeSignature/CodeRequ irements".
    Permissions differ on "System/Library/Extensions/ATISupport.kext/Contents/_CodeSignature/CodeRequirem ents", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/ATISupport.kext/Contents/_CodeSignature/CodeRequirem ents".
    Permissions differ on "System/Library/Extensions/Accusys6xxxx.kext/Contents/Info.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Accusys6xxxx.kext/Contents/Info.plist".
    Permissions differ on "System/Library/Extensions/Accusys6xxxx.kext/Contents/MacOS/Accusys6xxxx", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Accusys6xxxx.kext/Contents/MacOS/Accusys6xxxx".
    Permissions differ on "System/Library/Extensions/Accusys6xxxx.kext/Contents/Resources/English.lproj/I nfoPlist.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Accusys6xxxx.kext/Contents/Resources/English.lproj/I nfoPlist.strings".
    Permissions differ on "System/Library/Extensions/Accusys6xxxx.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Accusys6xxxx.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/Apple16X50Serial.kext/Contents/MacOS/Apple16X50Seria l", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple16X50Serial.kext/Contents/MacOS/Apple16X50Seria l".
    Permissions differ on "System/Library/Extensions/Apple16X50Serial.kext/Contents/PlugIns/Apple16X50ACP I.kext/Contents/MacOS/Apple16X50ACPI", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple16X50Serial.kext/Contents/PlugIns/Apple16X50ACP I.kext/Contents/MacOS/Apple16X50ACPI".
    Permissions differ on "System/Library/Extensions/Apple16X50Serial.kext/Contents/PlugIns/Apple16X50ACP I.kext/Contents/_CodeSignature/CodeDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple16X50Serial.kext/Contents/PlugIns/Apple16X50ACP I.kext/Contents/_CodeSignature/CodeDirectory".
    Permissions differ on "System/Library/Extensions/Apple16X50Serial.kext/Contents/PlugIns/Apple16X50ACP I.kext/Contents/_CodeSignature/CodeResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple16X50Serial.kext/Contents/PlugIns/Apple16X50ACP I.kext/Contents/_CodeSignature/CodeResources".
    Permissions differ on "System/Library/Extensions/Apple16X50Serial.kext/Contents/PlugIns/Apple16X50ACP I.kext/Contents/_CodeSignature/CodeSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple16X50Serial.kext/Contents/PlugIns/Apple16X50ACP I.kext/Contents/_CodeSignature/CodeSignature".
    Permissions differ on "System/Library/Extensions/Apple16X50Serial.kext/Contents/PlugIns/Apple16X50ACP I.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple16X50Serial.kext/Contents/PlugIns/Apple16X50ACP I.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/Apple16X50Serial.kext/Contents/_CodeSignature/CodeDi rectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple16X50Serial.kext/Contents/_CodeSignature/CodeDi rectory".
    Permissions differ on "System/Library/Extensions/Apple16X50Serial.kext/Contents/_CodeSignature/CodeRe sources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple16X50Serial.kext/Contents/_CodeSignature/CodeRe sources".
    Permissions differ on "System/Library/Extensions/Apple16X50Serial.kext/Contents/_CodeSignature/CodeSi gnature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple16X50Serial.kext/Contents/_CodeSignature/CodeSi gnature".
    Permissions differ on "System/Library/Extensions/Apple16X50Serial.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple16X50Serial.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleAPIC.kext/Contents/MacOS/AppleAPIC", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleAPIC.kext/Contents/MacOS/AppleAPIC".
    Permissions differ on "System/Library/Extensions/AppleAPIC.kext/Contents/_CodeSignature/CodeDirectory ", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleAPIC.kext/Contents/_CodeSignature/CodeDirectory ".
    Permissions differ on "System/Library/Extensions/AppleAPIC.kext/Contents/_CodeSignature/CodeResources ", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleAPIC.kext/Contents/_CodeSignature/CodeResources ".
    Permissions differ on "System/Library/Extensions/AppleAPIC.kext/Contents/_CodeSignature/CodeSignature ", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleAPIC.kext/Contents/_CodeSignature/CodeSignature ".
    Permissions differ on "System/Library/Extensions/AppleAPIC.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleAPIC.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleBMC.kext/Contents/Info.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleBMC.kext/Contents/Info.plist".
    Permissions differ on "System/Library/Extensions/AppleBMC.kext/Contents/MacOS/AppleBMC", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleBMC.kext/Contents/MacOS/AppleBMC".
    Permissions differ on "System/Library/Extensions/AppleBMC.kext/Contents/_CodeSignature/CodeDirectory" , should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleBMC.kext/Contents/_CodeSignature/CodeDirectory" .
    Permissions differ on "System/Library/Extensions/AppleBMC.kext/Contents/_CodeSignature/CodeResources" , should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleBMC.kext/Contents/_CodeSignature/CodeResources" .
    Permissions differ on "System/Library/Extensions/AppleBMC.kext/Contents/_CodeSignature/CodeSignature" , should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleBMC.kext/Contents/_CodeSignature/CodeSignature" .
    Permissions differ on "System/Library/Extensions/AppleBMC.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleBMC.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleBacklight.kext/Contents/_CodeSignature/CodeRequ irements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleBacklight.kext/Contents/_CodeSignature/CodeRequ irements".
    Permissions differ on "System/Library/Extensions/AppleBluetoothMultitouch.kext/Contents/_CodeSignatur e/CodeRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleBluetoothMultitouch.kext/Contents/_CodeSignatur e/CodeRequirements".
    Permissions differ on "System/Library/Extensions/AppleFileSystemDriver.kext/Contents/MacOS/AppleFileS ystemDriver", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleFileSystemDriver.kext/Contents/MacOS/AppleFileS ystemDriver".
    Permissions differ on "System/Library/Extensions/AppleFileSystemDriver.kext/Contents/_CodeSignature/C odeDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleFileSystemDriver.kext/Contents/_CodeSignature/C odeDirectory".
    Permissions differ on "System/Library/Extensions/AppleFileSystemDriver.kext/Contents/_CodeSignature/C odeResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleFileSystemDriver.kext/Contents/_CodeSignature/C odeResources".
    Permissions differ on "System/Library/Extensions/AppleFileSystemDriver.kext/Contents/_CodeSignature/C odeSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleFileSystemDriver.kext/Contents/_CodeSignature/C odeSignature".
    Permissions differ on "System/Library/Extensions/AppleFileSystemDriver.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleFileSystemDriver.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleGraphicsControl.kext/Contents/_CodeSignature/Co deRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleGraphicsControl.kext/Contents/_CodeSignature/Co deRequirements".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAController.ke xt/Contents/_CodeSignature/CodeRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAController.ke xt/Contents/_CodeSignature/CodeRequirements".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfi gDriver.kext/Contents/_CodeSignature/CodeRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfi gDriver.kext/Contents/_CodeSignature/CodeRequirements".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext /Contents/_CodeSignature/CodeRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext /Contents/_CodeSignature/CodeRequirements".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Conte nts/Resources/t2exp.inl", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Conte nts/Resources/t2exp.inl".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Conte nts/_CodeSignature/CodeRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Conte nts/_CodeSignature/CodeRequirements".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Cont ents/_CodeSignature/CodeRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Cont ents/_CodeSignature/CodeRequirements".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/Dutch.lproj/Localiz able.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/Dutch.lproj/Localiz able.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/French.lproj/Locali zable.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/French.lproj/Locali zable.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/German.lproj/Locali zable.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/German.lproj/Locali zable.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/Italian.lproj/Local izable.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/Italian.lproj/Local izable.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/Japanese.lproj/Loca lizable.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/Japanese.lproj/Loca lizable.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/Spanish.lproj/Local izable.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/Spanish.lproj/Local izable.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/da.lproj/Localizabl e.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/da.lproj/Localizabl e.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/fi.lproj/Localizabl e.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/fi.lproj/Localizabl e.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/ko.lproj/Localizabl e.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/ko.lproj/Localizabl e.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/no.lproj/Localizabl e.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/no.lproj/Localizabl e.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/pl.lproj/Localizabl e.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/pl.lproj/Localizabl e.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/pt.lproj/Localizabl e.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/pt.lproj/Localizabl e.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/pt_PT.lproj/Localiz able.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/pt_PT.lproj/Localiz able.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/ru.lproj/Localizabl e.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/ru.lproj/Localizabl e.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/sv.lproj/Localizabl e.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/sv.lproj/Localizabl e.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/zh_CN.lproj/Localiz able.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/zh_CN.lproj/Localiz able.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/Resources/zh_TW.lproj/Localiz able.strings", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/Resources/zh_TW.lproj/Localiz able.strings".
    Permissions differ on "System/Library/Extensions/AppleHDA.kext/Contents/_CodeSignature/CodeRequiremen ts", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHDA.kext/Contents/_CodeSignature/CodeRequiremen ts".
    Permissions differ on "System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/_CodeSignature/CodeRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/_CodeSignature/CodeRequirements".
    Permissions differ on "System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDKe yboard.kext/Contents/_CodeSignature/CodeRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDKe yboard.kext/Contents/_CodeSignature/CodeRequirements".
    Permissions differ on "System/Library/Extensions/AppleHPET.kext/Contents/Info.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHPET.kext/Contents/Info.plist".
    Permissions differ on "System/Library/Extensions/AppleHPET.kext/Contents/MacOS/AppleHPET", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHPET.kext/Contents/MacOS/AppleHPET".
    Permissions differ on "System/Library/Extensions/AppleHPET.kext/Contents/_CodeSignature/CodeDirectory ", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHPET.kext/Contents/_CodeSignature/CodeDirectory ".
    Permissions differ on "System/Library/Extensions/AppleHPET.kext/Contents/_CodeSignature/CodeResources ", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHPET.kext/Contents/_CodeSignature/CodeResources ".
    Permissions differ on "System/Library/Extensions/AppleHPET.kext/Contents/_CodeSignature/CodeSignature ", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHPET.kext/Contents/_CodeSignature/CodeSignature ".
    Permissions differ on "System/Library/Extensions/AppleHPET.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHPET.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleHWSensor.kext/Contents/Info.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHWSensor.kext/Contents/Info.plist".
    Permissions differ on "System/Library/Extensions/AppleHWSensor.kext/Contents/MacOS/AppleHWSensor", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHWSensor.kext/Contents/MacOS/AppleHWSensor".
    Permissions differ on "System/Library/Extensions/AppleHWSensor.kext/Contents/_CodeSignature/CodeDirec tory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHWSensor.kext/Contents/_CodeSignature/CodeDirec tory".
    Permissions differ on "System/Library/Extensions/AppleHWSensor.kext/Contents/_CodeSignature/CodeResou rces", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHWSensor.kext/Contents/_CodeSignature/CodeResou rces".
    Permissions differ on "System/Library/Extensions/AppleHWSensor.kext/Contents/_CodeSignature/CodeSigna ture", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHWSensor.kext/Contents/_CodeSignature/CodeSigna ture".
    Permissions differ on "System/Library/Extensions/AppleHWSensor.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleHWSensor.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleIRController.kext/Contents/Info.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleIRController.kext/Contents/Info.plist".
    Permissions differ on "System/Library/Extensions/AppleIRController.kext/Contents/MacOS/AppleIRControl ler", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleIRController.kext/Contents/MacOS/AppleIRControl ler".
    Permissions differ on "System/Library/Extensions/AppleIRController.kext/Contents/_CodeSignature/CodeD irectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleIRController.kext/Contents/_CodeSignature/CodeD irectory".
    Permissions differ on "System/Library/Extensions/AppleIRController.kext/Contents/_CodeSignature/CodeR esources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleIRController.kext/Contents/_CodeSignature/CodeR esources".
    Permissions differ on "System/Library/Extensions/AppleIRController.kext/Contents/_CodeSignature/CodeS ignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleIRController.kext/Contents/_CodeSignature/CodeS ignature".
    Permissions differ on "System/Library/Extensions/AppleIRController.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleIRController.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleIntelGMA950.kext/Contents/PkgInfo", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleIntelGMA950.kext/Contents/PkgInfo".
    Permissions differ on "System/Library/Extensions/AppleIntelGMA950.kext/Contents/_CodeSignature/CodeRe quirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleIntelGMA950.kext/Contents/_CodeSignature/CodeRe quirements".
    Permissions differ on "System/Library/Extensions/AppleIntelGMAX3100.kext/Contents/PkgInfo", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleIntelGMAX3100.kext/Contents/PkgInfo".
    Permissions differ on "System/Library/Extensions/AppleIntelGMAX3100.kext/Contents/_CodeSignature/Code Requirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleIntelGMAX3100.kext/Contents/_CodeSignature/Code Requirements".
    Permissions differ on "System/Library/Extensions/AppleIntelHDGraphics.kext/Contents/PkgInfo", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleIntelHDGraphics.kext/Contents/PkgInfo".
    Permissions differ on "System/Library/Extensions/AppleIntelHDGraphics.kext/Contents/_CodeSignature/Co deRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleIntelHDGraphics.kext/Contents/_CodeSignature/Co deRequirements".
    Permissions differ on "System/Library/Extensions/AppleIntelHDGraphicsFB.kext/Contents/_CodeSignature/ CodeRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleIntelHDGraphicsFB.kext/Contents/_CodeSignature/ CodeRequirements".
    Permissions differ on "System/Library/Extensions/AppleKeyswitch.kext/Contents/MacOS/AppleKeyswitch", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleKeyswitch.kext/Contents/MacOS/AppleKeyswitch".
    Permissions differ on "System/Library/Extensions/AppleKeyswitch.kext/Contents/_CodeSignature/CodeDire ctory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleKeyswitch.kext/Contents/_CodeSignature/CodeDire ctory".
    Permissions differ on "System/Library/Extensions/AppleKeyswitch.kext/Contents/_CodeSignature/CodeReso urces", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleKeyswitch.kext/Contents/_CodeSignature/CodeReso urces".
    Permissions differ on "System/Library/Extensions/AppleKeyswitch.kext/Contents/_CodeSignature/CodeSign ature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleKeyswitch.kext/Contents/_CodeSignature/CodeSign ature".
    Permissions differ on "System/Library/Extensions/AppleKeyswitch.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleKeyswitch.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleLSIFusionMPT.kext/Contents/MacOS/AppleLSIFusion MPT", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleLSIFusionMPT.kext/Contents/MacOS/AppleLSIFusion MPT".
    Permissions differ on "System/Library/Extensions/AppleLSIFusionMPT.kext/Contents/_CodeSignature/CodeD irectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleLSIFusionMPT.kext/Contents/_CodeSignature/CodeD irectory".
    Permissions differ on "System/Library/Extensions/AppleLSIFusionMPT.kext/Contents/_CodeSignature/CodeR esources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleLSIFusionMPT.kext/Contents/_CodeSignature/CodeR esources".
    Permissions differ on "System/Library/Extensions/AppleLSIFusionMPT.kext/Contents/_CodeSignature/CodeS ignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleLSIFusionMPT.kext/Contents/_CodeSignature/CodeS ignature".
    Permissions differ on "System/Library/Extensions/AppleLSIFusionMPT.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleLSIFusionMPT.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleMCEDriver.kext/Contents/MacOS/AppleMCEDriver", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMCEDriver.kext/Contents/MacOS/AppleMCEDriver".
    Permissions differ on "System/Library/Extensions/AppleMCEDriver.kext/Contents/_CodeSignature/CodeDire ctory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMCEDriver.kext/Contents/_CodeSignature/CodeDire ctory".
    Permissions differ on "System/Library/Extensions/AppleMCEDriver.kext/Contents/_CodeSignature/CodeReso urces", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMCEDriver.kext/Contents/_CodeSignature/CodeReso urces".
    Permissions differ on "System/Library/Extensions/AppleMCEDriver.kext/Contents/_CodeSignature/CodeSign ature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMCEDriver.kext/Contents/_CodeSignature/CodeSign ature".
    Permissions differ on "System/Library/Extensions/AppleMCEDriver.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMCEDriver.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleMatch.kext/Contents/MacOS/AppleMatch", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMatch.kext/Contents/MacOS/AppleMatch".
    Permissions differ on "System/Library/Extensions/AppleMatch.kext/Contents/_CodeSignature/CodeDirector y", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMatch.kext/Contents/_CodeSignature/CodeDirector y".
    Permissions differ on "System/Library/Extensions/AppleMatch.kext/Contents/_CodeSignature/CodeResource s", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMatch.kext/Contents/_CodeSignature/CodeResource s".
    Permissions differ on "System/Library/Extensions/AppleMatch.kext/Contents/_CodeSignature/CodeSignatur e", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMatch.kext/Contents/_CodeSignature/CodeSignatur e".
    Permissions differ on "System/Library/Extensions/AppleMatch.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMatch.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleMikeyHIDDriver.kext/Contents/Info.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMikeyHIDDriver.kext/Contents/Info.plist".
    Permissions differ on "System/Library/Extensions/AppleMikeyHIDDriver.kext/Contents/MacOS/AppleMikeyHI DDriver", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMikeyHIDDriver.kext/Contents/MacOS/AppleMikeyHI DDriver".
    Permissions differ on "System/Library/Extensions/AppleMikeyHIDDriver.kext/Contents/_CodeSignature/Cod eDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMikeyHIDDriver.kext/Contents/_CodeSignature/Cod eDirectory".
    Permissions differ on "System/Library/Extensions/AppleMikeyHIDDriver.kext/Contents/_CodeSignature/Cod eResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMikeyHIDDriver.kext/Contents/_CodeSignature/Cod eResources".
    Permissions differ on "System/Library/Extensions/AppleMikeyHIDDriver.kext/Contents/_CodeSignature/Cod eSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMikeyHIDDriver.kext/Contents/_CodeSignature/Cod eSignature".
    Permissions differ on "System/Library/Extensions/AppleMikeyHIDDriver.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMikeyHIDDriver.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleMultitouchDriver.kext/Contents/_CodeSignature/C odeRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleMultitouchDriver.kext/Contents/_CodeSignature/C odeRequirements".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/Info.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/Info.plist".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/MacOS/AppleProfileF amily", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/MacOS/AppleProfileF amily".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelM eromProfile.kext/Contents/MacOS/AppleIntelMeromProfile", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelM eromProfile.kext/Contents/MacOS/AppleIntelMeromProfile".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelM eromProfile.kext/Contents/_CodeSignature/CodeDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelM eromProfile.kext/Contents/_CodeSignature/CodeDirectory".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelM eromProfile.kext/Contents/_CodeSignature/CodeResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelM eromProfile.kext/Contents/_CodeSignature/CodeResources".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelM eromProfile.kext/Contents/_CodeSignature/CodeSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelM eromProfile.kext/Contents/_CodeSignature/CodeSignature".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelM eromProfile.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelM eromProfile.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelN ehalemProfile.kext/Contents/MacOS/AppleIntelNehalemProfile", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelN ehalemProfile.kext/Contents/MacOS/AppleIntelNehalemProfile".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelN ehalemProfile.kext/Contents/_CodeSignature/CodeDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelN ehalemProfile.kext/Contents/_CodeSignature/CodeDirectory".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelN ehalemProfile.kext/Contents/_CodeSignature/CodeResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelN ehalemProfile.kext/Contents/_CodeSignature/CodeResources".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelN ehalemProfile.kext/Contents/_CodeSignature/CodeSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelN ehalemProfile.kext/Contents/_CodeSignature/CodeSignature".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelN ehalemProfile.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelN ehalemProfile.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelP enrynProfile.kext/Contents/MacOS/AppleIntelPenrynProfile", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelP enrynProfile.kext/Contents/MacOS/AppleIntelPenrynProfile".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelP enrynProfile.kext/Contents/_CodeSignature/CodeDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelP enrynProfile.kext/Contents/_CodeSignature/CodeDirectory".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelP enrynProfile.kext/Contents/_CodeSignature/CodeResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelP enrynProfile.kext/Contents/_CodeSignature/CodeResources".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelP enrynProfile.kext/Contents/_CodeSignature/CodeSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelP enrynProfile.kext/Contents/_CodeSignature/CodeSignature".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelP enrynProfile.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelP enrynProfile.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelY onahProfile.kext/Contents/MacOS/AppleIntelYonahProfile", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelY onahProfile.kext/Contents/MacOS/AppleIntelYonahProfile".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelY onahProfile.kext/Contents/_CodeSignature/CodeDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelY onahProfile.kext/Contents/_CodeSignature/CodeDirectory".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelY onahProfile.kext/Contents/_CodeSignature/CodeResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelY onahProfile.kext/Contents/_CodeSignature/CodeResources".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelY onahProfile.kext/Contents/_CodeSignature/CodeSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelY onahProfile.kext/Contents/_CodeSignature/CodeSignature".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelY onahProfile.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleIntelY onahProfile.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eCallstackAction.kext/Contents/MacOS/AppleProfileCallstackAction", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eCallstackAction.kext/Contents/MacOS/AppleProfileCallstackAction".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eCallstackAction.kext/Contents/_CodeSignature/CodeDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eCallstackAction.kext/Contents/_CodeSignature/CodeDirectory".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eCallstackAction.kext/Contents/_CodeSignature/CodeResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eCallstackAction.kext/Contents/_CodeSignature/CodeResources".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eCallstackAction.kext/Contents/_CodeSignature/CodeSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eCallstackAction.kext/Contents/_CodeSignature/CodeSignature".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eCallstackAction.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eCallstackAction.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eKEventAction.kext/Contents/MacOS/AppleProfileKEventAction", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eKEventAction.kext/Contents/MacOS/AppleProfileKEventAction".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eKEventAction.kext/Contents/_CodeSignature/CodeDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eKEventAction.kext/Contents/_CodeSignature/CodeDirectory".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eKEventAction.kext/Contents/_CodeSignature/CodeResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eKEventAction.kext/Contents/_CodeSignature/CodeResources".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eKEventAction.kext/Contents/_CodeSignature/CodeSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eKEventAction.kext/Contents/_CodeSignature/CodeSignature".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eKEventAction.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eKEventAction.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eReadCounterAction.kext/Contents/MacOS/AppleProfileReadCounterAction", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eReadCounterAction.kext/Contents/MacOS/AppleProfileReadCounterAction".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eReadCounterAction.kext/Contents/_CodeSignature/CodeDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eReadCounterAction.kext/Contents/_CodeSignature/CodeDirectory".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eReadCounterAction.kext/Contents/_CodeSignature/CodeResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eReadCounterAction.kext/Contents/_CodeSignature/CodeResources".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eReadCounterAction.kext/Contents/_CodeSignature/CodeSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eReadCounterAction.kext/Contents/_CodeSignature/CodeSignature".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eReadCounterAction.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eReadCounterAction.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eRegisterStateAction.kext/Contents/MacOS/AppleProfileRegisterStateAction", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eRegisterStateAction.kext/Contents/MacOS/AppleProfileRegisterStateAction".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eRegisterStateAction.kext/Contents/_CodeSignature/CodeDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eRegisterStateAction.kext/Contents/_CodeSignature/CodeDirectory".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eRegisterStateAction.kext/Contents/_CodeSignature/CodeResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eRegisterStateAction.kext/Contents/_CodeSignature/CodeResources".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eRegisterStateAction.kext/Contents/_CodeSignature/CodeSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eRegisterStateAction.kext/Contents/_CodeSignature/CodeSignature".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eRegisterStateAction.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eRegisterStateAction.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eThreadInfoAction.kext/Contents/MacOS/AppleProfileThreadInfoAction", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eThreadInfoAction.kext/Contents/MacOS/AppleProfileThreadInfoAction".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eThreadInfoAction.kext/Contents/_CodeSignature/CodeDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eThreadInfoAction.kext/Contents/_CodeSignature/CodeDirectory".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eThreadInfoAction.kext/Contents/_CodeSignature/CodeResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eThreadInfoAction.kext/Contents/_CodeSignature/CodeResources".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eThreadInfoAction.kext/Contents/_CodeSignature/CodeSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eThreadInfoAction.kext/Contents/_CodeSignature/CodeSignature".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eThreadInfoAction.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eThreadInfoAction.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eTimestampAction.kext/Contents/MacOS/AppleProfileTimestampAction", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eTimestampAction.kext/Contents/MacOS/AppleProfileTimestampAction".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eTimestampAction.kext/Contents/_CodeSignature/CodeDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eTimestampAction.kext/Contents/_CodeSignature/CodeDirectory".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eTimestampAction.kext/Contents/_CodeSignature/CodeResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eTimestampAction.kext/Contents/_CodeSignature/CodeResources".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eTimestampAction.kext/Contents/_CodeSignature/CodeSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eTimestampAction.kext/Contents/_CodeSignature/CodeSignature".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eTimestampAction.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/PlugIns/AppleProfil eTimestampAction.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/_CodeSignature/Code Directory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/_CodeSignature/Code Directory".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/_CodeSignature/Code Resources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/_CodeSignature/Code Resources".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/_CodeSignature/Code Signature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/_CodeSignature/Code Signature".
    Permissions differ on "System/Library/Extensions/AppleProfileFamily.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleProfileFamily.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleRAID.kext/Contents/MacOS/AppleRAID", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleRAID.kext/Contents/MacOS/AppleRAID".
    Permissions differ on "System/Library/Extensions/AppleRAID.kext/Contents/_CodeSignature/CodeDirectory ", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleRAID.kext/Contents/_CodeSignature/CodeDirectory ".
    Permissions differ on "System/Library/Extensions/AppleRAID.kext/Contents/_CodeSignature/CodeResources ", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleRAID.kext/Contents/_CodeSignature/CodeResources ".
    Permissions differ on "System/Library/Extensions/AppleRAID.kext/Contents/_CodeSignature/CodeSignature ", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleRAID.kext/Contents/_CodeSignature/CodeSignature ".
    Permissions differ on "System/Library/Extensions/AppleRAID.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleRAID.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleRTC.kext/Contents/Info.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleRTC.kext/Contents/Info.plist".
    Permissions differ on "System/Library/Extensions/AppleRTC.kext/Contents/MacOS/AppleRTC", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleRTC.kext/Contents/MacOS/AppleRTC".
    Permissions differ on "System/Library/Extensions/AppleRTC.kext/Contents/_CodeSignature/CodeDirectory" , should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleRTC.kext/Contents/_CodeSignature/CodeDirectory" .
    Permissions differ on "System/Library/Extensions/AppleRTC.kext/Contents/_CodeSignature/CodeResources" , should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleRTC.kext/Contents/_CodeSignature/CodeResources" .
    Permissions differ on "System/Library/Extensions/AppleRTC.kext/Contents/_CodeSignature/CodeSignature" , should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleRTC.kext/Contents/_CodeSignature/CodeSignature" .
    Permissions differ on "System/Library/Extensions/AppleRTC.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleRTC.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleSEP.kext/Contents/MacOS/AppleSEP", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleSEP.kext/Contents/MacOS/AppleSEP".
    Permissions differ on "System/Library/Extensions/AppleSEP.kext/Contents/_CodeSignature/CodeDirectory" , should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleSEP.kext/Contents/_CodeSignature/CodeDirectory" .
    Permissions differ on "System/Library/Extensions/AppleSEP.kext/Contents/_CodeSignature/CodeResources" , should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleSEP.kext/Contents/_CodeSignature/CodeResources" .
    Permissions differ on "System/Library/Extensions/AppleSEP.kext/Contents/_CodeSignature/CodeSignature" , should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleSEP.kext/Contents/_CodeSignature/CodeSignature" .
    Permissions differ on "System/Library/Extensions/AppleSEP.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleSEP.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/AppleUSBCa rdReader.kext/Contents/_CodeSignature/CodeRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/AppleUSBCa rdReader.kext/Contents/_CodeSignature/CodeRequirements".
    Permissions differ on "System/Library/Extensions/AppleUSBDisplays.kext/Contents/_CodeSignature/CodeRe quirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleUSBDisplays.kext/Contents/_CodeSignature/CodeRe quirements".
    Permissions differ on "System/Library/Extensions/AppleXsanFilter.kext/Contents/MacOS/AppleXsanFilter" , should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleXsanFilter.kext/Contents/MacOS/AppleXsanFilter" .
    Permissions differ on "System/Library/Extensions/AppleXsanFilter.kext/Contents/_CodeSignature/CodeDir ectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleXsanFilter.kext/Contents/_CodeSignature/CodeDir ectory".
    Permissions differ on "System/Library/Extensions/AppleXsanFilter.kext/Contents/_CodeSignature/CodeRes ources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleXsanFilter.kext/Contents/_CodeSignature/CodeRes ources".
    Permissions differ on "System/Library/Extensions/AppleXsanFilter.kext/Contents/_CodeSignature/CodeSig nature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleXsanFilter.kext/Contents/_CodeSignature/CodeSig nature".
    Permissions differ on "System/Library/Extensions/AppleXsanFilter.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AppleXsanFilter.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/Apple_iSight.kext/Contents/MacOS/Apple_iSight", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple_iSight.kext/Contents/MacOS/Apple_iSight".
    Permissions differ on "System/Library/Extensions/Apple_iSight.kext/Contents/_CodeSignature/CodeDirect ory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple_iSight.kext/Contents/_CodeSignature/CodeDirect ory".
    Permissions differ on "System/Library/Extensions/Apple_iSight.kext/Contents/_CodeSignature/CodeResour ces", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple_iSight.kext/Contents/_CodeSignature/CodeResour ces".
    Permissions differ on "System/Library/Extensions/Apple_iSight.kext/Contents/_CodeSignature/CodeSignat ure", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple_iSight.kext/Contents/_CodeSignature/CodeSignat ure".
    Permissions differ on "System/Library/Extensions/Apple_iSight.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Apple_iSight.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/AudioIPCDriver.kext/Contents/_CodeSignature/CodeRequ irements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/AudioIPCDriver.kext/Contents/_CodeSignature/CodeRequ irements".
    Permissions differ on "System/Library/Extensions/CellPhoneHelper.kext/Contents/Info.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/CellPhoneHelper.kext/Contents/Info.plist".
    Permissions differ on "System/Library/Extensions/CellPhoneHelper.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/CellPhoneHelper.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/Dont Steal Mac OS X.kext/Contents/MacOS/Dont Steal Mac OS X", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Dont Steal Mac OS X.kext/Contents/MacOS/Dont Steal Mac OS X".
    Permissions differ on "System/Library/Extensions/Dont Steal Mac OS X.kext/Contents/_CodeSignature/CodeDirectory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Dont Steal Mac OS X.kext/Contents/_CodeSignature/CodeDirectory".
    Permissions differ on "System/Library/Extensions/Dont Steal Mac OS X.kext/Contents/_CodeSignature/CodeResources", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Dont Steal Mac OS X.kext/Contents/_CodeSignature/CodeResources".
    Permissions differ on "System/Library/Extensions/Dont Steal Mac OS X.kext/Contents/_CodeSignature/CodeSignature", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Dont Steal Mac OS X.kext/Contents/_CodeSignature/CodeSignature".
    Permissions differ on "System/Library/Extensions/Dont Steal Mac OS X.kext/Contents/version.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/Dont Steal Mac OS X.kext/Contents/version.plist".
    Permissions differ on "System/Library/Extensions/GeForce.kext/Contents/PkgInfo", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/GeForce.kext/Contents/PkgInfo".
    Permissions differ on "System/Library/Extensions/GeForce.kext/Contents/_CodeSignature/CodeRequirement s", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/GeForce.kext/Contents/_CodeSignature/CodeRequirement s".
    Permissions differ on "System/Library/Extensions/IO80211Family.kext/Contents/PlugIns/AirPortAtheros21 .kext/Contents/_CodeSignature/CodeRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/IO80211Family.kext/Contents/PlugIns/AirPortAtheros21 .kext/Contents/_CodeSignature/CodeRequirements".
    Permissions differ on "System/Library/Extensions/IO80211Family.kext/Contents/PlugIns/AppleAirPortBrcm 4311.kext/Contents/Info.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/IO80211Family.kext/Contents/PlugIns/AppleAirPortBrcm 4311.kext/Contents/Info.plist".
    Permissions differ on "System/Library/Extensions/IO80211Family.kext/Contents/PlugIns/AppleAirPortBrcm 43224.kext/Contents/_CodeSignature/CodeRequirements", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/IO80211Family.kext/Contents/PlugIns/AppleAirPortBrcm 43224.kext/Contents/_CodeSignature/CodeRequirements".
    Permissions differ on "System/Library/Extensions/IOACPIFamily.kext/Contents/MacOS/IOACPIFamily", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/IOACPIFamily.kext/Contents/MacOS/IOACPIFamily".
    Permissions differ on "System/Library/Extensions/IOACPIFamily.kext/Contents/_CodeSignature/CodeDirect ory", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/IOACPIFamily.kext/Contents/_CodeSignature/CodeDirect ory".
    Permissions differ on "System/Library/Extensions/IOACPIFamily.kext/Contents/_CodeSignature/CodeResour ces", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Extensions/IOACPIFamily.kext/Contents/_CodeSignature/CodeResour ces".
    Permissions differ on "System

  • Dreamweaver CS6 cloud - I can no longer use "Save As'  and the Application manager won't open.

    I always open an old page and use "save all"  to save it,  then "save as"  and change the name of the page to what I want the new page to be the rewrite the new content. It doesn't open a box for name change any longer. Also The application manager does not open at all.
    What to do to fix this?
    Roger

    Hi Roger,
    Can you close other applications open on your computer, and retry before the experts here suggest other solutions?
    Thanks,
    Preran

  • Using TextField.C_ANY and get application error

    Hey all !
    I'm working with com.jmobilecore in my projrct. My platform is Nokia S40 DP 2.0 SDK 1.0 and IDE is Netbeans.
    I'm using C_ANY as TextField constraint.But while I press as many key at a time as input it shows application error and then exit from the application.
    I'm using emulator for testing.
    code snippet as:
    public CustomTextFieldUI(int maxTextLen,int constr,boolean checkValidate){
    super(maxTextLen, constr);
    this.validityLength=maxTextLen;
    this.checkValidate=checkValidate;
    ----------------------calling above method-------------
    this.txtDepotCode = new CustomTextFieldUI(Localization.TXTFIELD_DEPOT_CODE_DIGIT, TextField.C_ANY,true);
    Can anybody pls help me " How this problem can fix ??"

    uhr
    I have already asked you not to post the same question repeatedly.
    [http://forums.sun.com/thread.jspa?threadID=5343423]
    As you have ignored the advice, your user account is being blocked for 3 days.
    db

  • Every time I try to open the firefox application, it won't load and pages and the application freezes. How can I fix this?

    When I open the application, there is one tab that says, "Connecting..." After several seconds, the program crashes and remains that way until I force quit the application. I tried restarting my computer. I also tried uninstalling and reinstalling firefox, and nothing worked.

    I had the same problem.  I went into software updates and updated security, and two other updates (can't remember exact updates) then restarted my macbook.  My macbook wouldn't start! 
    I found information about restting the SMC (System Management Controller).
    Unplug the power adapter.
    Remove the battery.
    Hold the power button down for 5 secs.
    Reconnect the battery and power adapter.
    Press the power button.
    My Macbook started up and I opened up itunes and the itunes store opened up with images.
    I think the resolution was the software updates, but I'm not 100% sure so I included every step that was made.

  • Using a SpaceNaviagtor and X11 application

    We are using the 3D CAD CAM Unigraphics NX from Siemens/PLM. They have a Mac port for Unigraphics on X11. I like to use the SpaceNaviagtor for the 3D Window as in the Windows and Unix Version. I know Apple use Unigraphics for the Product Development. So maybe some one here can thell me how to install the SpaceNaviagtor driver on X11 on a Mac.

    Hi,
    You can try a package named: JTwain, which is available at http://asprise.com/product/jtwain.
    JTwain supports all kinds of digital cameras and scanners. You can use Java to access, contorl digital cameras and scanners, and of course, to acquire images with flexible settings.
    The developers' guide is available @ http://asprise.com/product/jtwain/devGuide.php
    In the simplest case, one line of Java code can solve your problem.
    Good luck!

  • We are using 10G DB and Perl Application...................

    We are facing following error on one of our production database.
    ORA-01461: can bind a LONG value only for insert into a LONG column (DBD ERROR: error possibly near <*> indicator at char 173 in 'INSERT INTO WEBTEL.CS_PAGING_LOG (
              PAGING_DATE,
              PAGING_LOG_INDEX,
              STATUS,
              PAGING_TYPE,
              PAGING_NUMBER,
              PAGING_STRING,
              INCIDENT_ID) VALUES (
              SYSDATE,
              WEBTEL.<*>PAGING_LOG_INDEX_SEQ.NEXTVAL,
              :p1,
              :p2,
              :p3,
              :p4,
              :p5)')
    INSERT INTO WEBTEL.CS_PAGING_LOG (
              PAGING_DATE,
              PAGING_LOG_INDEX,
              STATUS,
              PAGING_TYPE,
              PAGING_NUMBER,
              PAGING_STRING,
              INCIDENT_ID) VALUES (
              SYSDATE,
              WEBTEL.PAGING_LOG_INDEX_SEQ.NEXTVAL,
              :1,
              :2,
              :3,
              :4,
              :5)
    Please some one help with the same.
    Thanks
    Shiva

    do you have to use LONG datatype, Large Objects(LOB) are advised over LONG datatype by Oracle for long time, check these links for your error - http://forums.oracle.com/forums/search.jspa?threadID=&q=ORA-01461%3A+can+bind+a+LONG+value+only+for+insert+into+a+LONG+column&objID=c84&dateRange=all&userID=&numResults=15
    best regards.

  • Macbook pro 2011 model, getting slow opening applications. freezes every now and again too. any ideas??

    i have recently found that my macbook pro has been getting quite slow at opening applications. i also have countless pop-ups and advertisements on my internet browser and some applications freeze on my screen and i have to close the lid of my laptop and re-open to get it working again. My macbook was bought new last august so is not very old and i was wondering if anyone knew how to fix it?? should i take it into store?

    Sounds like you got some form of malware. Not a virus per se, but something that is both impacting the running and launching the various popups.
    Generally, you install these, knowingly or not. Be very wary of installing anything int he future.
    For now, you need to either search them out, or get a program that can do it for you ( i am not familiar with them), or, worst case, backup, re-install system, copy only your files back.  Destroy old backup and make new.
    You might use the activity viewer to search for suspicious programs, then look for them, and remove them. But its hard.
    Stay away form those sites and dont load stuff int he future.
    Grant

  • About how to build dynamic maps using jdeveloper 10g and mapviewer

    i follow the guidance (about how to build dynamic maps using jdeveloper 10g and oracle application server mapviewer) to write a jsp file,but error take palce ,i get information "Project: D:\jdev1012\jdev\mywork\WebMap\ViewController\ViewController.jpr
    D:\jdev1012\jdev\mywork\WebMap\ViewController\public_html\WebMap.jsp
    Error(12,37): cannot access class oracle.lbs.mapclient.taglib.MapViewerInitTag; file oracle\lbs\mapclient\taglib\MapViewerInitTag.class not found
    Error(12,190): cannot access class oracle.lbs.mapclient.taglib.MapViewerInitTag; file oracle\lbs\mapclient\taglib\MapViewerInitTag.class not found
    Error(12,102): cannot access class oracle.lbs.mapclient.taglib.MapViewerInitTag; file oracle\lbs\mapclient\taglib\MapViewerInitTag.class not found
    Error(12,28): cannot access class oracle.lbs.mapclient.MapViewer; file oracle\lbs\mapclient\MapViewer.class not found
    Error(12,40): cannot access class oracle.lbs.mapclient.MapViewer; file oracle\lbs\mapclient\MapViewer.class not found
    Error(13,37): cannot access class oracle.lbs.mapclient.taglib.MapViewerSetParamTag; file oracle\lbs\mapclient\taglib\MapViewerSetParamTag.class not found
    Error(13,198): cannot access class oracle.lbs.mapclient.taglib.MapViewerSetParamTag; file oracle\lbs\mapclient\taglib\MapViewerSetParamTag.class not found
    Error(13,106): cannot access class oracle.lbs.mapclient.taglib.MapViewerSetParamTag; file oracle\lbs\mapclient\taglib\MapViewerSetParamTag.class not found
    Error(14,37): cannot access class oracle.lbs.mapclient.taglib.MapViewerRunTag; file oracle\lbs\mapclient\taglib\MapViewerRunTag.class not found
    Error(14,188): cannot access class oracle.lbs.mapclient.taglib.MapViewerRunTag; file oracle\lbs\mapclient\taglib\MapViewerRunTag.class not found
    Error(14,101): cannot access class oracle.lbs.mapclient.taglib.MapViewerRunTag; file oracle\lbs\mapclient\taglib\MapViewerRunTag.class not found
    Error(15,37): cannot access class oracle.lbs.mapclient.taglib.MapViewerGetMapURLTag; file oracle\lbs\mapclient\taglib\MapViewerGetMapURLTag.class not found
    Error(15,200): cannot access class oracle.lbs.mapclient.taglib.MapViewerGetMapURLTag; file oracle\lbs\mapclient\taglib\MapViewerGetMapURLTag.class not found
    Error(15,107): cannot access class oracle.lbs.mapclient.taglib.MapViewerGetMapURLTag; file oracle\lbs\mapclient\taglib\MapViewerGetMapURLTag.class not found"
    can you help?
    greetings

    I found a lot of information in document 133682.1 on metalink.
    step by step example how to deploy a JSP business component application.

  • When I try to use the print/save as pdf option, I get a scripting error and Firefox usually freezes.

    On my MacBook Pro running OS 10.5.8 and Firefox 3.6.13, I am trying to save documents as pdfs under the print window, I get a scripting error and Firefox usually freezes/becomes nonresponsive. This happens every time I tried to perform this task.

    This is a fresh install of Windows 7.  It is installed on virtual environment on my mac mini using the parallels virtualization application.
    I purchased the windows version of dream weaver CS 6 through an online website which I tried to install to my new windows instance.   This is the academic version of the Dreamweaver application with a perpetual license that I am trying to install.
    I verified my eligibility through adobe which gave me a link to download the CreateiveCloud Set-up program.  I downloaded the install program in my windows environment and program and the gave the above error message.  Below is a copy of my computers specs. 

  • Full startup disc, applications freezing and closing down

    Hi,
    My computer is freezing and closing applications down. It says my startup disk is full. My HD has 120GB and 113GB of it are used. But my iPhotos and iTunes only take up approx 40GB. Where is the rest of the space?? Help topics recommended to check Consol messages; I have 3,524 but have no idea what they mean or what to do about them. For example, the latest is
    06/10/2013 23:15:34
    Finder[144]
    pearlBrowserSelectionChanged.
    Can anyone help please? Many thx in advance!

    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
    iPhoto ▹ Empty Trash
    Then reboot. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation. You also need enough space left over to allow for growth of your data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    If you're using Time Machine to back up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of files you've recently deleted. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as "Backups." The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself.
    To locate large files, you can use Spotlight. That method may not find large folders that contain a lot of small files.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) to explore your volume and find out what's taking up the space. You can also delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one.
    Deleting files inside an iPhoto or Aperture library will corrupt the library. Any changes to a photo library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    ODS can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    Install ODS in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The application window will open, eventually showing all files in all folders. It may take some minutes for ODS to list all the files.
    I don't recommend that you make a habit of doing this. Don't delete anything while running ODS as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means. When in doubt, leave it alone or ask for guidance.
    When you're done with ODS, quit it and also quit Terminal.

  • TS3899 I can  no longer send photos in an email from my iphone 5. It uploads the photo to the "new message" page - and then it freezes. I can use safari and check my emails, and when the email part is frozen the rest of the phone works fine ! any advice?!

    I can no longer send photos in an email from my iphone 5. It uploads the photo the the "mew message" page and then it freezes! I can use safari and check my emails, and when the email part is frozen I can still use the rest of my phone. Any advice ?!?

    Hi, ireland a. 
    I would recommend closing any open applications in multitasking and restarting the device.  If unfamiliar with multitasking, I have included a screenshot on how to process an application close. 
    iOS: Force an app to close
    Once these steps are processed, attempt to send the photo again. 
    iPhoto for iOS (iPhone): Send photos by email
    http://support.apple.com/kb/PH3271
    Regards,
    Jason H. 

  • 'Normal use' ok ; Gaming = Graphics 'snow' and then Screen Freezes

    History is that I'm a PC convert from Nov 05, and happy with the move. Played Civ IV and WoW without problem until around Nov 06. Then Civ IV started crashing; Screen got 'snowy' graphics and then froze. Was within warranty at that stage . Lesson to be had here in extended warranty. Didn't make much of this because I was finished with these games anyway, and 'normal' applications and internet etc use have been fine all along & still are, so just stopped gaming. Now (Feb) decided to get back into WoW. Same 'snow' and 'freeze' problem when open this game, as well as Civ IV, including after reloading software. There is no error message, just the freeze and the 'multi-coloured circle of death'! Things I've tried;
    - Apple Software update
    - Apple extended Hardware test; passed all
    - Clean re-load of all software
    - Reset the PRAM
    - Minimised the performance settings for WoW, including running in a window; this has extended time before crash from a few seconds to up to several minutes. Not long enough to get to lvl 70!
    - Checked that my model doesn't fall under any extended warranty's!
    - Downloaded and run 'Rember' = "All tests passed."
    - Downloaded 'latest' ATI Radeon drivers from their web (were very old & not a direct match so not sure that this was of any use)
    Below is 'stuff that might be helpful', including the log!
    Idea's anyone? If it's something wrong with the graphics card then I'd like to know 'for sure' before forking out for a replacement. Other stuff to try?
    Thanks, Mike
    Model
    Hardware Overview:
    Machine Name: iMac G5
    Machine Model: PowerMac12,1
    CPU Type: PowerPC G5 (3.0)
    Number Of CPUs: 1
    CPU Speed: 1.9 GHz
    L2 Cache (per CPU): 512 KB
    Memory: 1 GB
    Bus Speed: 633 MHz
    Boot ROM Version: 5.2.6f1
    Serial Number: W85468NYTAT
    Sales Order Number: Z0CK000K8
    Graphics/Displays:
    ATI Radeon X600 Pro:
    Chipset Model: ATY,RV370
    Type: Display
    Bus: PCI
    Slot: PCI-E
    VRAM (Total): 128 MB
    Vendor: ATI (0x1002)
    Device ID: 0x5b62
    Revision ID: 0x0000
    ROM Revision: 113-xxxxx-113
    Displays:
    iMac:
    Display Type: LCD
    Resolution: 1440 x 900
    Depth: 32-bit Color
    Built-In: Yes
    Core Image: Supported
    Main Display: Yes
    Mirror: Off
    Online: Yes
    Quartz Extreme: Supported
    Display:
    Status: No display connected
    System Software Overview:
    System Version: Mac OS X 10.4.8 (8L127)
    Kernel Version: Darwin 8.8.0
    Boot Volume: Macintosh HD
    Events as follows; Start computer for first time today, verify that I know where the Console log is, connect to internet, start WoW, after several minutes (a record!) same problem. Crashed around 9.15.
    Feb 25 09:38:57 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Feb 25 09:38:57 localhost memberd[38]: memberd starting up
    Feb 25 09:38:57 localhost kernel[0]: vmpagebootstrap: 253028 free pages
    Feb 25 09:38:57 localhost kernel[0]: migtable_maxdispl = 70
    Feb 25 09:38:57 localhost kernel[0]: 96 prelinked modules
    Feb 25 09:38:57 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Feb 25 09:38:57 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Feb 25 09:38:57 localhost DirectoryService[43]: Launched version 2.1 (v353.2)
    Feb 25 09:38:57 localhost kernel[0]: using 2621 buffer headers and 2621 cluster IO buffer headers
    Feb 25 09:38:57 localhost kernel[0]: AppleU3: WARNING: platform-chip-fault expected, but not found
    Feb 25 09:38:57 localhost kernel[0]: AppleKauaiATA shasta-ata features enabled
    Feb 25 09:38:57 localhost kernel[0]: DART enabled
    Feb 25 09:38:57 localhost kernel[0]: USB caused wake event (EHCI)
    Feb 25 09:38:57 localhost kernel[0]: FireWire (OHCI) Apple ID 52 built-in now active, GUID 001451ff fe2a1e38; max speed s400.
    Feb 25 09:38:57 localhost kernel[0]: CSRHIDTransitionDriver::probe:
    Feb 25 09:38:57 localhost kernel[0]: CSRHIDTransitionDriver::start before command
    Feb 25 09:38:57 localhost kernel[0]: Security auditing service present
    Feb 25 09:38:57 localhost kernel[0]: BSM auditing present
    Feb 25 09:38:57 localhost kernel[0]: disabled
    Feb 25 09:38:57 localhost kernel[0]: rooting via boot-uuid from /chosen: 1E8FCD46-F0AA-35E4-BCCA-F26C528861E1
    Feb 25 09:38:57 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Feb 25 09:38:57 localhost mDNSResponder-107.4 (May 4 2006 16: 34:29)[31]: starting
    Feb 25 09:38:57 localhost kernel[0]: Got boot device = IOService:/MacRISC4PE/ht@0,f2000000/AppleMacRiscHT/pci@3/IOPCI2PCIBridge/k2-sat a-root@C/AppleK2SATARoot/k2-sata@0/AppleK2SATA/ATADeviceNub@0/IOATABlockStorageD river/IOATABlockStorageDevice/IOBlockStorageDriver/Hitachi HDS725050KLA360 Media/IOApplePartitionScheme/Untitled@3
    Feb 25 09:38:57 localhost lookupd[42]: lookupd (version 369.5) starting - Sun Feb 25 09:38:57 2007
    Feb 25 09:38:57 localhost kernel[0]: BSD root: disk0s3, major 14, minor 2
    Feb 25 09:38:57 localhost kernel[0]: jnl: replay_journal: from: 31147008 to: 25801728 (joffset 0xe90000)
    Feb 25 09:38:57 localhost kernel[0]: AppleSMU -- shutdown cause = 3
    Feb 25 09:38:57 localhost kernel[0]: CSRHIDTransitionDriver::stop
    Feb 25 09:38:57 localhost kernel[0]: AppleSMU::PMU vers = 0x000d0092, SPU vers = 0x56, SDB vers = 0x01,
    Feb 25 09:38:57 localhost kernel[0]: IOBluetoothHCIController::start Idle Timer Stopped
    Feb 25 09:38:57 localhost kernel[0]: Jettisoning kernel linker.
    Feb 25 09:38:57 localhost kernel[0]: Resetting IOCatalogue.
    Feb 25 09:38:57 localhost kernel[0]: Matching service count = 0
    Feb 25 09:38:57 localhost kernel[0]: Matching service count = 2
    Feb 25 09:38:57 localhost kernel[0]: Matching service count = 2
    Feb 25 09:38:57 localhost kernel[0]: Matching service count = 2
    Feb 25 09:38:57 localhost kernel[0]: Matching service count = 2
    Feb 25 09:38:57 localhost kernel[0]: Matching service count = 2
    Feb 25 09:38:57 localhost kernel[0]: SMUNeo2PlatformPlugin::initThermalProfile - entry
    Feb 25 09:38:57 localhost kernel[0]: SMUNeo2PlatformPlugin::initThermalProfile - calling adjust
    Feb 25 09:38:57 localhost kernel[0]: IPv6 packet filtering initialized, default to accept, logging disabled
    Feb 25 09:38:58 localhost kernel[0]: UniNEnet: Ethernet address 00:14:51:2a:1e:38
    Feb 25 09:38:58 localhost kernel[0]: AirPortPCI_MM: Ethernet address 00:14:51:7d:cc:a8
    Feb 25 09:38:58 localhost diskarbitrationd[37]: disk0s3 hfs 1E8FCD46-F0AA-35E4-BCCA-F26C528861E1 Macintosh HD /
    Feb 25 09:38:58 localhost launchd: Server 332f in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[42]: exited abnormally: Hangup
    Feb 25 09:38:58 localhost lookupd[64]: lookupd (version 369.5) starting - Sun Feb 25 09:38:58 2007
    Feb 25 09:38:59 localhost configd[35]: WirelessConfigure: 88001003
    Feb 25 09:38:59 localhost configd[35]: initCardWithStoredPrefs failed.
    Feb 25 09:38:59 localhost configd[35]: WirelessConfigure: 88001003
    Feb 25 09:39:00 localhost kernel[0]: [HCIController][setupHardware] AFH Is Supported
    Feb 25 09:39:01 localhost kernel[0]: ATY,Aphrodite2_A: vram [98000000:08000000]
    Feb 25 09:39:01 localhost mDNSResponder: Adding browse domain local.
    Feb 25 09:39:02 localhost kernel[0]: ATY,Aphrodite2_B: vram [98000000:08000000]
    Feb 25 09:39:02 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Feb 25 09:39:02 localhost loginwindow[68]: Login Window Started Security Agent
    Feb 25 09:39:07 mike-hodgkinsons-imac-g5 configd[35]: setting hostname to "mike-hodgkinsons-imac-g5.local"
    Feb 25 09:39:09 mike-hodgkinsons-imac-g5 kernel[0]: AirPort: Link Active: "Hodgo Home Network" - 0014516ac45f - chan 1
    Feb 25 09:39:12 mike-hodgkinsons-imac-g5 launchd: Server 0 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[64]: exited abnormally: Hangup
    Feb 25 09:39:12 mike-hodgkinsons-imac-g5 lookupd[129]: lookupd (version 369.5) starting - Sun Feb 25 09:39:12 2007
    Feb 25 09:39:12 mike-hodgkinsons-imac-g5 configd[35]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Feb 25 09:39:12 mike-hodgkinsons-imac-g5 configd[35]: posting notification com.apple.system.config.network_change
    Feb 25 09:39:13 mike-hodgkinsons-imac-g5 launchd: Server 460b in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[129]: exited abnormally: Hangup
    Feb 25 09:39:13 mike-hodgkinsons-imac-g5 lookupd[131]: lookupd (version 369.5) starting - Sun Feb 25 09:39:13 2007
    Feb 25 09:39:32 mike-hodgkinsons-imac-g5 ntpdate[143]: no server suitable for synchronization found
    Feb 25 09:39:32 mike-hodgkinsons-imac-g5 configd[35]: target=enable-network: disabled
    Feb 25 09:40:04 mike-hodgkinsons-imac-g5 diskarbitrationd[37]: disk1s1 msdos 00000000-0000-0000-0000-000000000000 My Book /Volumes/My Book
    Feb 25 09:40:27 mike-hodgkinsons-imac-g5 diskarbitrationd[37]: disk1s1 msdos 00000000-0000-0000-0000-000000000000 My Book /Volumes/My Book
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextFillRects: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSaveGState: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextDrawImage: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextRestoreGState: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextFillRects: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSaveGState: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextDrawImage: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextRestoreGState: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextFillRects: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSaveGState: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextDrawImage: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextRestoreGState: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextFillRects: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSaveGState: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextDrawImage: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextRestoreGState: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextFillRects: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSaveGState: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextDrawImage: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextRestoreGState: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextFillRects: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSaveGState: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextDrawImage: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextRestoreGState: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextConcatCTM: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextGetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextFillRects: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSaveGState: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetFillColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetStrokeColorWithColor: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextSetCompositeOperation: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextDrawImage: invalid context
    Feb 25 09:46:08 mike-hodgkinsons-imac-g5 /Applications/BigPond/BigPond Broadband Cable Login.app/Contents/MacOS/BigPond Broadband Cable Login: CGContextRestoreGState: invalid context
    Feb 25 09:55:31 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Feb 25 09:55:31 localhost memberd[38]: memberd starting up
    Feb 25 09:55:32 localhost kernel[0]: vmpagebootstrap: 253028 free pages
    Feb 25 09:55:31 localhost mDNSResponder-107.4 (May 4 2006 16: 34:29)[31]: starting
    Feb 25 09:55:32 localhost kernel[0]: migtable_maxdispl = 70
    Feb 25 09:55:31 localhost lookupd[42]: lookupd (version 369.5) starting - Sun Feb 25 09:55:31 2007
    Feb 25 09:55:32 localhost kernel[0]: 96 prelinked modules
    Feb 25 09:55:32 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Feb 25 09:55:32 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Feb 25 09:55:32 localhost kernel[0]: using 2621 buffer headers and 2621 cluster IO buffer headers
    Feb 25 09:55:32 localhost kernel[0]: AppleU3: WARNING: platform-chip-fault expected, but not found
    Feb 25 09:55:32 localhost kernel[0]: AppleKauaiATA shasta-ata features enabled
    Feb 25 09:55:32 localhost kernel[0]: DART enabled
    Feb 25 09:55:32 localhost kernel[0]: USB caused wake event (EHCI)
    Feb 25 09:55:32 localhost kernel[0]: FireWire (OHCI) Apple ID 52 built-in now active, GUID 001451ff fe2a1e38; max speed s400.
    Feb 25 09:55:32 localhost kernel[0]: CSRHIDTransitionDriver::probe:
    Feb 25 09:55:32 localhost kernel[0]: CSRHIDTransitionDriver::start before command
    Feb 25 09:55:32 localhost kernel[0]: Security auditing service present
    Feb 25 09:55:32 localhost kernel[0]: BSM auditing present
    Feb 25 09:55:32 localhost kernel[0]: disabled
    Feb 25 09:55:32 localhost kernel[0]: rooting via boot-uuid from /chosen: 1E8FCD46-F0AA-35E4-BCCA-F26C528861E1
    Feb 25 09:55:32 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Feb 25 09:55:32 localhost kernel[0]: Got boot device = IOService:/MacRISC4PE/ht@0,f2000000/AppleMacRiscHT/pci@3/IOPCI2PCIBridge/k2-sat a-root@C/AppleK2SATARoot/k2-sata@0/AppleK2SATA/ATADeviceNub@0/IOATABlockStorageD river/IOATABlockStorageDevice/IOBlockStorageDriver/Hitachi HDS725050KLA360 Media/IOApplePartitionScheme/Untitled@3
    Feb 25 09:55:32 localhost kernel[0]: BSD root: disk0s3, major 14, minor 2
    Feb 25 09:55:32 localhost kernel[0]: jnl: replay_journal: from: 25801728 to: 41762816 (joffset 0xe90000)
    Feb 25 09:55:32 localhost kernel[0]: AppleSMU -- shutdown cause = 3
    Feb 25 09:55:32 localhost kernel[0]: CSRHIDTransitionDriver::stop
    Feb 25 09:55:32 localhost kernel[0]: AppleSMU::PMU vers = 0x000d0092, SPU vers = 0x56, SDB vers = 0x01,
    Feb 25 09:55:32 localhost kernel[0]: IOBluetoothHCIController::start Idle Timer Stopped
    Feb 25 09:55:32 localhost kernel[0]: Jettisoning kernel linker.
    Feb 25 09:55:32 localhost kernel[0]: Resetting IOCatalogue.
    Feb 25 09:55:32 localhost kernel[0]: Matching service count = 0
    Feb 25 09:55:32 localhost kernel[0]: Matching service count = 2
    Feb 25 09:55:32 localhost kernel[0]: Matching service count = 2
    Feb 25 09:55:32 localhost kernel[0]: Matching service count = 2
    Feb 25 09:55:32 localhost kernel[0]: Matching service count = 2
    Feb 25 09:55:32 localhost kernel[0]: Matching service count = 2
    Feb 25 09:55:32 localhost kernel[0]: SMUNeo2PlatformPlugin::initThermalProfile - entry
    Feb 25 09:55:32 localhost kernel[0]: SMUNeo2PlatformPlugin::initThermalProfile - calling adjust
    Feb 25 09:55:32 localhost kernel[0]: IPv6 packet filtering initialized, default to accept, logging disabled
    Feb 25 09:55:32 localhost DirectoryService[43]: Launched version 2.1 (v353.2)
    Feb 25 09:55:32 localhost kernel[0]: UniNEnet: Ethernet address 00:14:51:2a:1e:38
    Feb 25 09:55:32 localhost kernel[0]: AirPortPCI_MM: Ethernet address 00:14:51:7d:cc:a8
    Feb 25 09:55:32 localhost diskarbitrationd[37]: disk0s3 hfs 1E8FCD46-F0AA-35E4-BCCA-F26C528861E1 Macintosh HD /
    Feb 25 09:55:32 localhost launchd: Server 3d1b in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[42]: exited abnormally: Hangup
    Feb 25 09:55:32 localhost lookupd[61]: lookupd (version 369.5) starting - Sun Feb 25 09:55:32 2007
    Feb 25 09:55:33 localhost configd[35]: WirelessConfigure: 88001003
    Feb 25 09:55:33 localhost configd[35]: initCardWithStoredPrefs failed.
    Feb 25 09:55:33 localhost configd[35]: WirelessConfigure: 88001003
    Feb 25 09:55:34 localhost kernel[0]: [HCIController][setupHardware] AFH Is Supported
    Feb 25 09:55:35 localhost mDNSResponder: Adding browse domain local.
    Feb 25 09:55:36 localhost kernel[0]: ATY,Aphrodite2_A: vram [98000000:08000000]
    Feb 25 09:55:36 localhost kernel[0]: ATY,Aphrodite2_B: vram [98000000:08000000]
    Feb 25 09:55:36 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Feb 25 09:55:36 localhost loginwindow[68]: Login Window Started Security Agent
    Feb 25 09:55:41 mike-hodgkinsons-imac-g5 configd[35]: setting hostname to "mike-hodgkinsons-imac-g5.local"
    Feb 25 09:55:44 mike-hodgkinsons-imac-g5 kernel[0]: AirPort: Link Active: "Hodgo Home Network" - 0014516ac45f - chan 1
    Feb 25 09:55:47 mike-hodgkinsons-imac-g5 launchd: Server 0 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[61]: exited abnormally: Hangup
    Feb 25 09:55:47 mike-hodgkinsons-imac-g5 configd[35]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Feb 25 09:55:47 mike-hodgkinsons-imac-g5 lookupd[130]: lookupd (version 369.5) starting - Sun Feb 25 09:55:47 2007
    Feb 25 09:55:47 mike-hodgkinsons-imac-g5 configd[35]: posting notification com.apple.system.config.network_change
    Feb 25 09:55:47 mike-hodgkinsons-imac-g5 launchd: Server 1baf in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[130]: exited abnormally: Hangup
    Feb 25 09:55:47 mike-hodgkinsons-imac-g5 lookupd[131]: lookupd (version 369.5) starting - Sun Feb 25 09:55:47 2007
    Feb 25 09:56:04 mike-hodgkinsons-imac-g5 configd[35]: target=enable-network: disabled
    1.9 GHz PowerPC G5   Mac OS X (10.4.8)  
    1.9 GHz PowerPC G5   Mac OS X (10.4.8)  
    1.9 GHz PowerPC G5   Mac OS X (10.4.8)  
    1.9 GHz PowerPC G5   Mac OS X (10.4.8)  

    Yes, it smells like the video card, because it only crashes when running the high-end graphics. Presumably this is because only the games use the video card; if it were another piece of hardware then normal applications would crash too. And because I've done a clean software reload it shouldn't be a software problem.
    However, I'd still have liked some greater certaintly before replacing the video card, e.g. some type of hardware test. I don't want to replace the card and then find that I've still got the same problem.
    I don't get a grey crash screen, it's just stuck on the distorted last screen shot, with the twirling multi-coloured circle. Then when I turn off the mac it goes black.
    Know of some way to 'test' the video card?

  • Application freezes while running and returns to normal after execution

    I deployed an application and it works fine.. but
    once running and I click on a button Execute (does the work) the application freezes up until it finishes and then return to its normal screen
    when i minimize it and maximize it while running just the border of the application pops up with nothing in the middle at the time it is running
    how can i prevent it to freeze

    how do i make it run on its own thread?
    plz helplook into the Thread class, and search the forum for how to use threads.

Maybe you are looking for

  • RAW images ... 0KB

    I have just started using iPhoto with RAW images from my Lumix G1... no importing problems so far BUT... I import a RAW image (with no jpeg thumbnail). iPhoto lists it as RAW at about 14MB. I have set Adv Prefs to save edits as TIFF, so I open the pi

  • Full screen zooming in OS X Lion

    Running recent model (non-Thunderbolt) i7 iMac and after the Lion install I can't do a full screen zoom. Tried every combination in Universal access and mouse settings, but I can't duplicate what I loved so much about the previous OS X versions (and

  • Photoshop Elements 10 - How to review the 100% size

    this is the first time i use photoshop elements 10. i am just confused when i need to review photos one by one, no matter how big the size is ,the photo will show the size which is fit the screen. i wanna know how to review the picture in 100% size.

  • Lisa245

    trying to download songs from itunes on the ipod and it wants to verify the payment information.  it keeps asking for a security code and no matter what i enter it says it's wrong.

  • How do I open the free download of Photoshop on my mac....

    How do I open the free download of Photoshop on my mac....I've downloaded it, but cannot find it!!