Failed to find platform-set-frequency-high

I see this error in the System console log every time I start my 17" Powerbook 1GHz G4.
*<username> kernel[0]: ASC::checkProperties ERROR: failed to find platform-set-frequency-high*
*<username> kernel[0]: ASC::start ERROR: failed to find the properties*
Startup seems to hang there while it's finding out that it can't set-frequency-high and can't find the properties.
What is this error telling me?
Where are the 'properties' it failed to find?
How does one fix this error?
Any help appreciated.

I guess you're right there I'll move it across.

Similar Messages

  • Failed to retrieve data set (dsLibrary) for spry:repeat

    I've tried to make this work with an external xml file,
    external html table, and finally this version with an internal html
    table for the data set source. The source table shows up in the
    browser along with the error message in a box with red header
    "Failed to retrieve data set (dsLibrary) for spry:repeat".
    I used one of the Adobe Samples as a base for my page. I've
    checked and recheck, and I can't find the source of my problem.
    Please help!!!
    My code is below and the url to the page is
    http://www.healthy-horse.info/articles.html
    Thanks!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry/">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>hh1</title>
    <link href="matt_layout.css" rel="stylesheet"
    type="text/css" />
    <link href="matt_style.css" rel="stylesheet"
    type="text/css" />
    <link rel="stylesheet" type="text/css"
    href="chromestyle.css" />
    <script type="text/javascript"
    src="SpryAssets/SpryHTMLDataSet.js"></script>
    <script type="text/javascript"
    src="SpryAssets/SpryData.js"></script>
    <script type="text/javascript">
    var dsLibrary = new Spry.Data.HTMLDataSet(null,
    "ArticleLibrary");
    </script>
    <style type="text/css">
    .style1 {color:black}
    .product {
    cursor: pointer;
    .hover {
    background-color: #A6C4E1;
    .selected {
    background-color: #D5C897;
    </style>
    </head>
    <body>
    <div id="masthead"><img class="title"
    src="images/articles_title.gif"/>
    <div class="headerinfo">Great informational articles
    that cover a wide variety of topics relating to
    <strong><em>Horse Health</em></strong> and
    <strong><em>Natural Horse
    Keeping</em></strong>. </div>
    </div>
    <!-- end masthead -->
    <div class="chromestyle" id="chromemenu">
    <ul>
    <li ><a href="default.html"
    >HOME</a></li>
    <li><a
    href="articles.html">ARTICLES</a></li>
    <li><a
    href="faqs.html">FAQ'S</a></li>
    <li><a
    href="links.html">LINKS</a></li>
    <li><a target="_blank" href="
    http://www.healthy-horse.info/forum">FORUM</a></li>
    <li><a href="mailto:[email protected]"
    >EMAIL</a></li>
    </ul>
    </div>
    <div id="wrapper">
    <table width="100%" border="0">
    <tr>
    <td width="30%" valign="top">
    <ul spry:region="dsLibrary"
    spry:repeatchildren="dsLibrary">
    <li class="product" spry:setrow="dsLibrary"
    spry:select="selected" spry:hover="hover">{category}</li>
    </ul>
    </td>
    <td width="70%" valign="top">
    <div spry:detailregion="dsLibrary">
    <div><strong>Articles:</strong>
    {articles}</div>
    </div>
    </td>
    </tr>
    </table>
    <br/>
    <!--SOURCE TABLE-->
    <table id="ArticleLibrary" border="1" cellspacing="0"
    cellpadding="10">
    <tr>
    <th>category</th>
    <th>articles</th>
    </tr>
    <tr>
    <td>Adobe Photoshop CS2</td>
    <td>
    <ul>
    <li>Revolutionary Vanishing Point</li>
    <li>Multiple layer control</li>
    <li>Smart Objects</li>
    <li>Multi-image digital camera raw file
    processing</li>
    <li>Image Warp</li>
    </ul></td>
    </tr>
    <tr>
    <td>Adobe Illustrator CS2</td>
    <td>
    <ul>
    <li>Live Trace</li>
    <li>Live Paint</li>
    <li>Control palette</li>
    <li>Custom workspaces</li>
    <li>Photoshop layer comp support</li>
    </ul></td>
    </tr>
    <tr>
    <td>Adobe InDesign CS2</td>
    <td>
    <ul>
    <li>Object styles</li>
    <li>Adobe Photoshop and Adobe PDF layer
    support</li>
    <li>InDesign snippets</li>
    <li>Adobe InCopy CS2 assignments</li>
    <li>Save backwards to InDesign CS</li>
    </ul></td>
    </tr>
    <tr>
    <td>Adobe GoLive CS2</td>
    <td>
    <ul>
    <li>Enhanced live rendering</li>
    <li>Simple visual tools to build and edit CSS-based
    pages</li>
    <li>Visual CSS authoring for mobile devices</li>
    <li>Visual SVG-t inspection and authoring for
    mobile</li>
    <li>Total site management</li>
    </ul></td>
    </tr>
    <tr>
    <td>Adobe Fireworks 8</td>
    <td>
    <ul>
    <li>Get top-quality design results.</li>
    <li>Produce highly optimized files that still look
    great.</li>
    <li>Slice and export page comps.</li>
    <li>Create sophisticated web navigation.</li>
    </ul></td>
    </tr>
    <tr>
    <td>Adobe Acrobat Professional</td>
    <td>
    <ul>
    <li>Enjoy improved performance</li>
    <li>Extend commenting capabilities</li>
    <li>Easily design Adobe PDF forms</li>
    <li>Enjoy improved attachment capabilities</li>
    </ul></td>
    </tr>
    <tr>
    <td>Adobe Acrobat Standard</td>
    <td>
    <ul>
    <li>Create Adobe PDF documents from Microsoft
    Outlook</li>
    <li>Enjoy improved performance</li>
    <li>Use enhanced headers, footers, and
    watermarks</li>
    <li>Enjoy improved attachment capabilities</li>
    <li>Organize Adobe PDF documents</li>
    </ul></td>
    </tr>
    </table>
    <!--END SOURCE TABLE-->
    </div>
    <!--end wrapper-->
    <div id="footer"><p class="footer">Mathew Baker
       <a
    href="mailto:[email protected]">[email protected]</a>   
    *     Waynesville, OH</p>
    </div>
    <!--end footer-->
    <br/>
    <p class="center" style="font-size:9px"><img
    src="/cgi-sys/Count.cgi?df=matt.dat|display=Counter|ft=6|md=5|frgb=228;224;224|dd=E"/>
    <span class="style1">Web Design by:   Maria Lee
      -  <a
    href="mailto:[email protected]">[email protected]</a> 
    -   (937)554-4116</span></p>
    </body>
    </html>

    Try moving the SpryHTMLDataSet.js script tag below the
    SpryData.js script tag.

  • Error while installing exchange2007 : Unable to initialize the Microsoft Exchange Information Store service. Failed to find the

    Hi,
    I am trying fresh install of exchange2007, everything gone well but, finally it thrown a error saying :
    Unable to initialize the Microsoft Exchange Information Store service. Failed to find the working directory parameter from the registry - Error 0x80004005.
    the installation log says
    6/5/2007 3:14:05 PM] [1] Processing component 'Mailbox Service Control (Last)' (Starting mailbox services).
    [6/5/2007 3:14:05 PM] [1] Executing 'start-SetupService -ServiceName MSExchangeIS -MaximumWaitTime "unlimited"', handleError = False
    [6/5/2007 3:14:05 PM] [2] Launching sub-task '$error.Clear(); start-SetupService -ServiceName MSExchangeIS -MaximumWaitTime "unlimited"'.
    [6/5/2007 3:14:05 PM] [2] Beginning processing.
    [6/5/2007 3:14:05 PM] [2] The maximum wait for the operation is set to 'unlimited'.
    [6/5/2007 3:14:05 PM] [2] Service checkpoint has progressed. Previous checkpoint='0' - Current checkpoint='1'.
    [6/5/2007 3:14:05 PM] [2] Will wait '10000' milliseconds for the service 'MSExchangeIS' to reach status 'Running'.
    [6/5/2007 3:14:15 PM] [2] Service 'MSExchangeIS' failed to reach status 'Running' on this server after waiting for '10000' milliseconds.
    [6/5/2007 3:14:15 PM] [2] Service 'MSExchangeIS' failed to start. Check the event log for possible reasons for the service start failure.
    [6/5/2007 3:14:15 PM] [2] [ERROR] Unexpected Error
    [6/5/2007 3:14:15 PM] [2] [ERROR] Service 'MSExchangeIS' failed to start. Check the event log for possible reasons for the service start failure.
    [6/5/2007 3:14:15 PM] [2] Ending processing.
    [6/5/2007 3:14:15 PM] [1] The following 1 error(s) occurred during task execution:
    [6/5/2007 3:14:15 PM] [1] 0.  ErrorRecord: Service 'MSExchangeIS' failed to start. Check the event log for possible reasons for the service start failure.
    [6/5/2007 3:14:15 PM] [1] 0.  ErrorRecord: Microsoft.Exchange.Configuration.Tasks.ServiceFailedToStartException: Service 'MSExchangeIS' failed to start. Check the event log for possible reasons for the service start failure.
    [6/5/2007 3:14:15 PM] [1] [ERROR] Service 'MSExchangeIS' failed to start. Check the event log for possible reasons for the service start failure.
    [6/5/2007 3:14:15 PM] [1] Setup is halting task execution because of one or more errors in a critical task.
    [6/5/2007 3:14:15 PM] [1] Finished executing component tasks.
    [6/5/2007 3:14:15 PM] [1] Ending processing.
    [6/5/2007 3:14:18 PM] [0] End of Setup
    [6/5/2007 3:14:18 PM] [0] **********************************************
    this I am trying on my test system please help me out in resolving the issue
    thanks in advance,

    Gary,
    Open Registry Editor.
    In Registry Editor, navigate to the following registry key:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchangeIS\ParametersSystem
    Create the following value (REG_SZ): Working Directory and give it a value that points to the new database folder.
    Make sure you back up the registry before you do any changes on it.
    Raj

  • How to tell if REQ1 is set active high

    Hi I am using the 6533 PCI-DIO-32HS card in a PC with traditional DAQ, looking at an existing design.  I could not find how to tell if REQ1 is set active high or low, guessing it would be set up in the DIO confg vi.

    thanks for the additional information, yes will have to wait for the external hardware.  I did have a general question about the 6533 data and control line outputs using traditional DAC.  I think for this design it is set up as a pattern IO transfer using internal REQ and an internal clock set up as a VI input, (DIO START).  Anyhow I am monitoring the card outputs with a logic analyzer and it looks like an 8 element array (of 8 bit integers) is being used for the data input (to the DIO WRITE VI) with the first 4 elements being written out on DIOA0-A7, DIOB0-B7, DIOC0-C7, and DIOD0-D7 followed by the last 4 elements also written out to DIOA0-A7, DIOB0-B7, DIOC0-C7, and DIOD0-D7.  Anyhow it looks like the clock input to the (DIO Start VI) controls the pulse width of the data.  It looks like REQ1 goes high approximately 78 microseconds before the first 32 bits are written out followed by 5 microseconds of data (with the clock set at 200k), finally followed by the second data group (5 microseconds of data).  It then looks like REQ1 stays high for 2-4 ms after the second group of 32 bits is written out before going low.   Anyhow if you are trying to clock this data into a storage device I would expect to see rising clock edges when both the first and second group of data appear on DIOA0-A7..DIOD0-D7.  I monitored all the other control lines pclk1,2 ack1 and did not see signal levels other than 0, again I do not have the DIO card connected to anything except a logic analyzer.  Would you know if it is typical to use REQ1 as a clock input to a storage device or if this can be done?

  • ODC: ERROR PKIX path building failed: to find valid certification path

    Hi to all,
    some one has experienced the error: PKIX path building failed: to find valid certification path to request target.... on the ODC while trying to connect
    we solved temporally adding the ssl to the java virtual machine, is there a path in the odc to set the ssl ?
    ODC 10.350
    Thanks!

    If you are trying to connect to UCM via SSL , Please check below note
    ODC - Errors Attempting to Connect to UCM Configured Through SSL (Doc ID 793137.1)

  • WES 7 OSD standalone (works) vs bootable (fails) - Failed to find suitable device driver for device (help)

    Hi everyone,
    I'm trying to deploy a Windows Embedded Standard 7 (trial key at the moment) image in SCCM 2012 SP1 with a very simple task sequence.
    I have a 'build and capture' and an OSD TS. I'm testing these on Hyper-V PCs and both work fine when i create stand alone media. The problem arrises when I try to deploy (or build & capture) with a bootable media;
    The TS starts, formats the disk, applies the OS, Windows and network settings, Apply Device Drivers etc., but when it reboots into Windows
    (or WES7 to be exact) it cant boot. The Windows Boot Manager reports a 0xc0000359 for storvsc.sys
    And I can't figure out what's wrong. I will post the SMSTS log further down below. The SAME TS works fine when it's a stand alone media.
    I have tried to:
    - Apply the WIM manually (nothing wrong - boots fine)
    - Create and apply driver package for the Hyper-V machines (from the MSI's Windows5.x-HyperVIntegrationServices-x86 and Windows5.x-HyperVIntegrationServices-x64)
    - No dice
    - Create a new boot image with the hyper-v drivers in it. No dice
    - Google everything related I can think of.
    I suspect it has something to do with the lines where it says:
    "Failed to find a suitable device driver for device xxx”
    It also has a couple of 401 errors when trying to get the packages, but it seems like it DOES end up getting the content.
    Please help! What could it be?
    I have 2 Hyper-V machines; one w. legacy network adapter - one not. Both have same issue.
    I have 2 Hyper-V machines; one w. legacy network adapter - one not. Both have same issue.
    SMSTS log key points are (the log is too long to post here):
    401 - Authentication failure on request with anonymous access, retrying with context credentials.                     
    OSDDriverClient               
    5/6/2014 4:03:41 PM     612 (0x0264)
    401 - Authentication failure on request with context credentials, retrying with supplied credentials.                     
    OSDDriverClient               
    5/6/2014 4:03:41 PM     612 (0x0264)
    Downloaded file from http://<CUSTOMER DP REMOVED>:80/SMS_DP_SMSPKG$/56D13589-D906-4697-8A1E-1CC3211902AA/sccm?/s3cap.inf to C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA\s3cap.inf   
    OSDDriverClient                  
    5/6/2014 4:03:41 PM         
    612 (0x0264) Downloaded file from http://<CUSTOMER DP REMOVED>:80/SMS_DP_SMSPKG$/56D13589-D906-4697-8A1E-1CC3211902AA/sccm?/vmbusvideo.cat to C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA\vmbusvideo.cat              
    OSDDriverClient                  
    5/6/2014 4:03:41 PM         
    612 (0x0264) Downloaded file from http://<CUSTOMER DP REMOVED>:80/SMS_DP_SMSPKG$/56D13589-D906-4697-8A1E-1CC3211902AA/sccm?/vms3cap.sys to C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA\vms3cap.sys                   
    OSDDriverClient                  
    5/6/2014 4:03:41 PM         
    612 (0x0264) Download done setting progress bar to 100                  
    OSDDriverClient                  
    5/6/2014 4:03:41 PM                     
    612 (0x0264) VerifyContentHash: Hash algorithm is 32780                 
    OSDDriverClient                  
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Failed to open Software\Microsoft\Sms\Mobile Client\Software Distribution registry key. The client should not get checked for RWH OpLock Type          
    OSDDriverClient               
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Failed to open Software\Microsoft\Sms\Mobile Client\Software Distribution registry key. The client should not get checked for RWH OpLock Type          
    OSDDriverClient               
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Failed to open Software\Microsoft\Sms\Mobile Client\Software Distribution registry key. The client should not get checked for RWH OpLock Type          
    OSDDriverClient               
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Installing driver "Microsoft Emulated S3 Device Cap"    
    OSDDriverClient                  
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Adding "C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA" to Windows driver store.            
    OSDDriverClient                  
    5/6/2014 4:03:41 PM         
    612 (0x0264) Setting %SystemRoot% to "C:\WINDOWS"                   
    OSDDriverClient                  
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Getting namespace "Microsoft-Windows-PnpCustomizationsNonWinPE" for architecture "amd64"
    OSDDriverClient                     
    5/6/2014 4:03:41 PM         
    612 (0x0264) Added list item with key value '1'             
    OSDDriverClient                  
    5/6/2014 4:03:41 PM         
    612 (0x0264) Writing configuration information to C:\_SMSTaskSequence\PkgMgrTemp\drivers.xml                   
    OSDDriverClient                     
    5/6/2014 4:03:41 PM         
    612 (0x0264) Successfully saved configuration information to C:\_SMSTaskSequence\PkgMgrTemp\drivers.xml
    OSDDriverClient                     
    5/6/2014 4:03:41 PM         
    612 (0x0264) Setting temporary directory to 'C:\_SMSTaskSequence\PkgMgrTemp'.                     
    OSDDriverClient                     
    5/6/2014 4:03:41 PM         
    612 (0x0264) Calling Package manager to add drivers to the offline driver store.     
    OSDDriverClient                  
    5/6/2014 4:03:41 PM    612 (0x0264)
    Command line for extension .exe is "%1" %*               
    OSDDriverClient                  
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Set command line: "X:\windows\Pkgmgr\dism.exe" /image:"C:" /windir:"WINDOWS" /apply-unattend:"C:\_SMSTaskSequence\PkgMgrTemp\drivers.xml" /logpath:"C:\_SMSTaskSequence\PkgMgrTemp\dism.log"                   
    OSDDriverClient                  
    5/6/2014 4:03:41 PM    612 (0x0264)
    Executing command line: "X:\windows\Pkgmgr\dism.exe" /image:"C:" /windir:"WINDOWS" /apply-unattend:"C:\_SMSTaskSequence\PkgMgrTemp\drivers.xml" /logpath:"C:\_SMSTaskSequence\PkgMgrTemp\dism.log"                   
    OSDDriverClient                  
    5/6/2014 4:03:41 PM    612 (0x0264)
    Process completed with exit code 0        
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Dism successfully added drivers to the offline driver store.                
    OSDDriverClient                  
    5/6/2014 4:03:45 PM    612 (0x0264)
    Successfully added "C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA" to the Windows driver store.        
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Successfully installed driver "Microsoft Emulated S3 Device Cap".      
    OSDDriverClient                  
    5/6/2014 4:03:45 PM    612 (0x0264)
    Entering ReleaseSource() for C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA                     
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) reference count 1 for the source C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA before releasing              
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Released the resolved source C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA                   
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Ranking compatible drivers for VMBUS\{57164F39-9115-4E78-AB55-382F3BD5422D}\{FD149E91-82E0-4A7D-AFA6-2A4166CBD7C0}       
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_0E4046FEF6FF1BC7776A060DF1B19003E0B5640936488E08E61C41D47A8B26C2 (SMS Driver Rank = 0x0000)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_8E607B402D9A9C9A0FBC0881F11231BDA52B4C8851F1BA00F7E8B3D932FC4871 (SMS Driver Rank = 0x0000)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_54E81CFA62FCB88FCA9D60C01594AA5FCEE40F9D5B28F47DE2A7B70C91268F17 (SMS Driver Rank = 0x0000)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Driver "Hyper-V Heartbeat" has already been installed. 
    OSDDriverClient                  
    5/6/2014 4:03:45 PM                     
    612 (0x0264) Failed to find a suitable device driver for device 'Intel 82443BX Pentium(R) II Processor to PCI Bridge'.                     
    OSDDriverClient               
    5/6/2014 4:03:45 PM    
    612 (0x0264) Failed to find a suitable device driver for device 'Generic Monitor'.                   
    OSDDriverClient                     
    5/6/2014 4:03:45 PM    
    612 (0x0264) Ranking compatible drivers for VMBUS\{A9A0F4E7-5A45-4D96-B827-8A841E8C03E6}\{242FF919-07DB-4180-9C2E-B86CB68C8C55}       
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_0E4046FEF6FF1BC7776A060DF1B19003E0B5640936488E08E61C41D47A8B26C2 (SMS Driver Rank = 0x0001)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_8E607B402D9A9C9A0FBC0881F11231BDA52B4C8851F1BA00F7E8B3D932FC4871 (SMS Driver Rank = 0x0001)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_54E81CFA62FCB88FCA9D60C01594AA5FCEE40F9D5B28F47DE2A7B70C91268F17 (SMS Driver Rank = 0x0001)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Driver "Hyper-V Heartbeat" has already been installed. 
    OSDDriverClient                  
    5/6/2014 4:03:45 PM                     
    612 (0x0264) Failed to find a suitable device driver for device 'Numeric data processor'.      
    OSDDriverClient                     
    5/6/2014 4:03:45 PM    
    612 (0x0264) Ranking compatible drivers for VMBUS\{35FA2E29-EA23-4236-96AE-3A6EBACBA440}\{2450EE40-33BF-4FBD-892E-9FB06E9214CF}        
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_8E607B402D9A9C9A0FBC0881F11231BDA52B4C8851F1BA00F7E8B3D932FC4871 (SMS Driver Rank = 0x0001)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_54E81CFA62FCB88FCA9D60C01594AA5FCEE40F9D5B28F47DE2A7B70C91268F17 (SMS Driver Rank = 0x0001)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_0E4046FEF6FF1BC7776A060DF1B19003E0B5640936488E08E61C41D47A8B26C2 (SMS Driver Rank = 0x0001)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Driver "Hyper-V Heartbeat" has already been installed. 
    OSDDriverClient                  
    5/6/2014 4:03:45 PM                     
    612 (0x0264) Failed to find a suitable device driver for device 'Microsoft System Management BIOS Driver'.                     
    OSDDriverClient               
    5/6/2014 4:03:45 PM    
    612 (0x0264) Failed to find a suitable device driver for device 'CD-ROM Drive'.
    OSDDriverClient               
    5/6/2014 4:03:45 PM  612 (0x0264)
    Exiting with return code 0x00000000      
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264)
    In advance: Sorry...

    Hi,
    0xc0000359 for storvsc.sys
    Looks like Hyper-v Storage Controller driver issue.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • OAS 4081 Failed to find User ( root )

    Okay, so I'm attempting to run a listener on port 443 which requires root privileges. When I set the user to root it accepts it just fine but when I start the listener, the log file says: Error: Failed to find the User ( root ) in /etc/password. If I try any other user it tells me they don't have privileges for that port. Any clues hear are appreciated.

    Did you recently upgrade your ConfigMgr site to SP1 or R2?
    Jason | http://blog.configmgrftw.com

  • My client with autism needs to be able to speak/sing into a microphone and simultaneously hear his voice through a headset, preferably with reverb set on high.  Is it possible to do this with the iPad and OS7?  If so, what setup do I need?

    My client with autism needs to be able to speak/sing into a microphone and simultaneously hear his voice through a headset, preferably with reverb set on high.  Is it possible to do this with the iPad and OS7?  If so, what setup do I need?  I have a SM58 type mic and-over-the ear headphones.

    This implies that ODP.NET does NOT need to be installed on a client. However, I cannot find OraOPs9.dll on a machine with Client Release 9.2 installed. Should OraOps?.dll automatically come with a Client installation of 9.2 or higher?
    ODP.NET needs to be installed on the client. OraOps9.dll is part of ODP.NET, not the Oracle Client.
    Also, if an application is built with the 10g ODP.NET, can it be run from a machine with OraOps9.dll?
    If an application is built with 10g ODP.NET, it can be run with 9.2 ODP.NET as long as you do not use any 10g APIs. The new features in 10g ODP.NET are included in the doc and the ODP.NET FAQ for your reference.

  • LDAP create event failed : Failed to find orclpwdexpirationdate

    Hi,
    When i try to create a user, i am getting the following error.
    IAM-2050243 : Orchestration process with id 333, failed with error message IAM-3010201 : LDAP create event failed : Failed to find orclpwdexpirationdate in mandatory or optional attribute list..
    Query:
    1. I could create users earlier connecting to the same OID. Is there any change in OID creating this issue?
    2. I could not find this attribute in OID. Is this a default parameter available in OID?
    3. I could not find this attribute in OIM as well (Customer fields for Manage Users) . How can i find this parameter in OIM?
    Any help to resolve this error?
    Complete stack trace is given below:
    [2013-01-28T20:41:41.623+05:30] [oim_server1] [NOTIFICATION] [] [oracle.iam.conf.impl] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: 583c10bfdbd326ba:-27ccd12:13c817229bb:-8000-0000000000000521,0] [APP: oim#11.1.2.0.0] The system property with keyword OIM.DiagnosticEnabled does not exist.
    [2013-01-28T20:41:41.630+05:30] [oim_server1] [NOTIFICATION] [] [oracle.iam.platform.kernel.impl] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: 583c10bfdbd326ba:-27ccd12:13c817229bb:-8000-0000000000000521,0] [APP: oim#11.1.2.0.0] Orchestration process moved to failed stage, and the corresponding error is - {0}[[
    oracle.iam.platform.kernel.EventFailedException: IAM-3010201:LDAP create event failed : Failed to find orclpwdexpirationdate in mandatory or optional attribute list.:Failed to find orclpwdexpirationdate in mandatory or optional attribute list.
         at oracle.iam.ldapsync.impl.util.LDAPSyncUtil.createEventFailedException(LDAPSyncUtil.java:959)
         at oracle.iam.ldapsync.impl.util.LDAPSyncUtil.createEventFailedException(LDAPSyncUtil.java:975)
         at oracle.iam.ldapsync.impl.eventhandlers.user.UserCreateLDAPHandler.execute(UserCreateLDAPHandler.java:98)
         at oracle.iam.platform.kernel.impl.OrchProcessData.runPreProcessEvents(OrchProcessData.java:970)
         at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:706)
         at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:268)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:801)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.process(OrchestrationEngineImpl.java:550)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.orchestrate(OrchestrationEngineImpl.java:485)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.orchestrate(OrchestrationEngineImpl.java:439)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at oracle.iam.platform.utils.DMSMethodInterceptor.invoke(DMSMethodInterceptor.java:25)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy252.orchestrate(Unknown Source)
         at oracle.iam.request.impl.RequestEngine.startOrchestrationFromPreProcess(RequestEngine.java:5350)
         at oracle.iam.request.impl.RequestEngine.triggerOperation(RequestEngine.java:5297)
         at oracle.iam.request.impl.RequestEngine.doOperation(RequestEngine.java:5028)
         at oracle.iam.impl.OIMServiceImpl.doOperation(OIMServiceImpl.java:43)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at oracle.iam.platform.utils.DMSMethodInterceptor.invoke(DMSMethodInterceptor.java:25)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy466.doOperation(Unknown Source)
         at oracle.iam.api.OIMServiceEJB.doOperationx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy465.doOperationx(Unknown Source)
         at oracle.iam.api.OIMService_1soh89_OIMServiceRemoteImpl.__WL_invoke(Unknown Source)
         at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
         at oracle.iam.api.OIMService_1soh89_OIMServiceRemoteImpl.doOperationx(Unknown Source)
         at oracle.iam.api.OIMService_1soh89_OIMServiceRemoteImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at oracle.iam.api.OIMService_1soh89_OIMServiceRemoteImpl_1036_WLStub.doOperationx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
         at $Proxy464.doOperationx(Unknown Source)
         at oracle.iam.api.OIMServiceDelegate.doOperation(Unknown Source)
         at oracle.iam.ui.catalog.model.am.CatalogAMImpl.doOperation(CatalogAMImpl.java:1316)
         at oracle.iam.ui.catalog.model.am.CatalogAMImpl.submitCatalog(CatalogAMImpl.java:1697)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.adf.model.binding.DCInvokeMethod.invokeMethod(DCInvokeMethod.java:657)
         at oracle.adf.model.binding.DCDataControl.invokeMethod(DCDataControl.java:2143)
         at oracle.adf.model.bc4j.DCJboDataControl.invokeMethod(DCJboDataControl.java:3114)
         at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:261)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1635)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2150)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:740)
         at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:402)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:252)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:210)
         at oracle.iam.ui.platform.utils.FacesUtils.executeOperationBinding(FacesUtils.java:165)
         at oracle.iam.ui.platform.utils.FacesUtils.executeOperationBindingFromActionListener(FacesUtils.java:112)
         at oracle.iam.ui.catalog.view.backing.CartReqBean.submitActionListener(CartReqBean.java:833)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:187)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:297)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1018)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:386)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:194)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.view.page.editor.webapp.WebCenterComposerFilter.doFilter(WebCenterComposerFilter.java:117)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.iam.ui.platform.servletfilter.IdentityContextFilter.doFilter(IdentityContextFilter.java:50)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.iam.platform.servletfilter.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:164)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.bpel.services.workflow.client.worklist.util.WorkflowFilter.doFilter(WorkflowFilter.java:248)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.bpel.services.workflow.client.worklist.util.DisableUrlSessionFilter.doFilter(DisableUrlSessionFilter.java:70)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:179)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Edited by: user10307811 on Jan 28, 2013 7:28 AM

    Hi,
    U need to create attribute orclpwdexpirationdate and add it to OrclXIDPersonobjec class in OID

  • "ERROR Failed to find either 24-bit TrueColor or 8-bit PseudoColor Visual"

    I have a X200T with the integrated graphics.  I'm trying to connect to a server and set up a X Windows kind of thing, but I get this error message: "ERROR Failed to find either 24-bit TrueColor or 8-bit PseudoColor Visual"
    Whe I go to Control Panel--> Display --> Settings --> Color Quality, I only see two options: 1) Highest (32-bit) and 2) Medium (16-bit).  I don't see an option for 24-bit or "millions of colors", etc.
    Any ideas?

    Hello,
    that´s correct. You can only choose between 32bit and 16bit colour on TP tft´s.
    Follow @LenovoForums on Twitter! Try the forum search, before first posting: Forum Search Option
    Please insert your type, model (not S/N) number and used OS in your posts.
    I´m a volunteer here using New X1 Carbon, ThinkPad Yoga, Yoga 11s, Yoga 13, T430s,T510, X220t, IdeaCentre B540.
    TIP: If your computer runs satisfactorily now, it may not be necessary to update the system.
     English Community       Deutsche Community       Comunidad en Español

  • Java.lang.OutOfMemoryError:class Your Java heap size might be set too high.

    I am getting the below error while deploying some soa applications in WLS 10.3 on solaris platform.As a workaround,
    the server instance has to be restarted everytime i make the deployments when i face this OOM situations.
    usually i face this issue after first deployment onwards.
    So, everytime i make the next deployment the server instance has to be restarted before that.
    The server is configured with 1Gb JVM and runs on JRockit jrrt-4.0.0-1.6.0.
    MEM_ARGS="-Xms1g -Xmx1g -Xgcprio:throughput -Xverbose:gc -XX:+HeapDumpOnOutO
    fMemoryError -XXcompressedRefs:enable=true"
    Can anybody please provide any pointers to track/solve this issue?
    Log extract:
    ####<Oct 10, 2010 4:27:31 PM PST> <Error> <Deployer> <BOX1> <SERVER2> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <1256893524756> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1256893524756' for task '3'. Error is: 'weblogic.application.ModuleException: '
    weblogic.application.ModuleException:
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1373)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:468)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:118)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:205)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:16)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:162)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:140)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:106)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:820)
    at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1223)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:436)
    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:164)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:181)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:12)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    java.lang.OutOfMemoryError: class allocation, 21977184 loaded, 20M footprint in check_alloc (classalloc.c:213) 1412 bytes requested.
    Java heap 1G reserved, 1G committed
    Paged memory=18014398507524232K/16781304K.
    Your Java heap size might be set too high.
    Try to reduce the Java heap
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
    at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericClassLoader.java:335)
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:288)
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:256)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:303)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:176)
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
    at java.lang.Class.getConstructor0(Class.java:2699)
    at java.lang.Class.newInstance0(Class.java:326)
    at java.lang.Class.newInstance(Class.java:308)
    at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:1058)
    at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:1129)
    at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:542)
    at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:435)
    at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:465)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:175)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1784)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:2999)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1371)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:468)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:635)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:16)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:162)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:140)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:106)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:820)
    at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1227)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:436)
    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:181)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:12)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:67)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Its running on Solaris 10 platform.The server is configured with 1Gb JVM and JRockit jrrt-4.0.0-1.6.0.
    MEM_ARGS="-Xms1g -Xmx1g -Xgcprio:throughput -Xverbose:gc -XX:+HeapDumpOnOutO
    fMemoryError -XXcompressedRefs:enable=true"
    Let me know if you need any more information to track this issue.

  • Fails to find files that exist, fails to search everywhere

    Running OSX 10.4.3 on a Powerbook G4 1.5gHz and on a PowerMac G4/867.
    I hope it is because I am doing something wrong, but so far I am very unimpressed with Spotlight, for the following reasons:
    •It fails to find files that are known to exist. For example, I have an application named MacTracker. It is in my Applications folder. When I enter
    tracker
    in the search field,
    (with location set as wide as "computer" or as narrow as "Applications", with or without a "name contains" restriction) Spotlight will not show MacTracker as existing, even though I can see it with my own eyes, in the Applications folder window in the background. Only if I search on
    Mactracker
    will Spotlight see the application. This seems ridiculous to me. Any search, especially a "name contains" search, ought to show MacTracker if I search on track, tracker, actra, mactrac, etc. But, no. I have to enter "MacTracker" if I want it found.
    •I make use of OSX Mail only occasionally. For most of my e-mail, I use a Unix mail handler known as PINE. PINE stores incoming and outgoing mail as plain text files in /users/me/mail . However, Spotlight refuses to include that location in its searches. I have tried using the Spotlight preferences to add
    /mail to the list of specific places to search; no luck, Spotlight appears completely blind to anything outside of the locations Apple arbitrarily decided I needed to be able to search in.
    Can anyone offer any ideas on how to make Spotlight work for me, instead of against me?
    Thanks in advance.
      Mac OS X (10.4.3)  

    same problem here. the only answer i can find is....spotlight buh-lows. does anyone know if we can just revert to ye olden way of searching? simple things like: searching actually find the stuff you're searching for. and: list of items found arrangeable by date/alphabetically (just like any normal window in osx). also, is hitting apple-f essentially just bringing up spotlight in its own window, or does this search function differ at all? sorry to hijack the thread, but we suffer from the same problems. thank you!
    pb12   Mac OS X (10.4.2)  

  • I'm getting an error "Security level is set to High..."

    When I’m trying to combine multiple Word documents into a single PDF I’m getting an error "Security level is set to High...".
    I regularly did this at my previous office, and the process involved dragging the Word doc’s from an Explorer window into an Adobe Acrobat window, then selecting ‘combine’; Acrobat would automatically open Word for each file, print it to the file it was building, then close Word and move on to the next file.
    It appears that some setting on my new laptop is now different, either for Word or for Acrobat, but as usual, the error message is next to useless to fix the problem.  There is no error message opening in Word, as the dialogue box suggests, and I can’t find any “Security Warning” dialogue box in Word.  Where is the setting I need to fix?.
    I am using Windows 7 with Word 2013 and Acrobat XI Pro.
    -Michael

    Hey Michael,
    You might need to check the security level within Internet Explorer and ensure that both Download Signed ActiveX Controls and Run ActiveX Controls And Plug-ins are set to Prompt.
    For this:
    Open Internet Explorer. Go to Tools> Internet Options and click the Security tab.
    Click Default Level, or click Custom Level and do the following:
    a. Find the section ActiveX Controls And Plug-ins.
    b. Set Download Signed ActiveX Controls to Prompt.
    c. Set Run ActiveX Controls And Plug-ins to Prompt 
    Now check again and let me know if it works fine now.
    Regards,
    Anubha

  • [workaround] linker issues: firefox suddenly fails to find shared libs

    I usually use Mozilla's 64 bit binary of Firefox so that I can use my preferred interface language. (The language pack doesn't work.) This is installed under /usr/local using stow.
    As a backup (and in the hope that the language pack might one day start working), I also have Arch's version installed. This is effectively the US version although the dud language pack is installed too.
    This usually works perfectly fine. 13.0.1 was working, as expected, perfectly fine.
    I rebooted yesterday. After reboot, the Mozilla version will not launch. ~/.xsession-errors includes:
    lib/firefox/plugin-container: error while loading shared libraries: libxpcom.so: cannot open shared object file: No such file or directory
    There are a series of similar reports reported at https://bugzilla.mozilla.org/show_bug.cgi?id=723487 but this obviously only affects a very few people which makes me think there must be something weird going on with my system.
    I'm not quite sure what the output of ldd should look like, but I know it should not look like this:
    $ ldd /usr/local/stow/firefox-13.0.1-cy/lib/firefox/plugin-container
    linux-vdso.so.1 (0x00007fff78fff000)
    libpthread.so.0 => /lib/libpthread.so.0 (0x00007f4a6e186000)
    librt.so.1 => /lib/librt.so.1 (0x00007f4a6df7e000)
    libxpcom.so => not found
    libmozalloc.so => not found
    libxul.so => not found
    libplds4.so => /usr/lib/libplds4.so (0x00007f4a6dd7a000)
    libplc4.so => /usr/lib/libplc4.so (0x00007f4a6db75000)
    libnspr4.so => /usr/lib/libnspr4.so (0x00007f4a6d937000)
    libdl.so.2 => /lib/libdl.so.2 (0x00007f4a6d733000)
    libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x00007f4a6d42f000)
    libm.so.6 => /lib/libm.so.6 (0x00007f4a6d135000)
    libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x00007f4a6cf20000)
    libc.so.6 => /lib/libc.so.6 (0x00007f4a6cb7c000)
    /lib64/ld-linux-x86-64.so.2 (0x00007f4a6e3a2000)
    So I thought that I might be able to work around this by telling the system about the shared libraries. I initially tried adding
    /usr/local/lib
    as local.conf in /etc/ld.so.conf.d (and running ldconfig) but that had no effect. I then tried adding
    /usr/local/lib/firefox
    as local-firefox.conf (and ldconfig). This definitely made a difference. ldd found all the missing libraries and a whole bunch more - the output looked comparable to the output I'd get running ldd on Arch's version of the plugin-container. However, firefox still crashed immediately although I couldn't find anything helpful in ~/.xsession-errors. The change had a more dramatic effect on Arch's build of firefox, though - that then just seg-faulted immediately. (So I've undone the changes, obviously, so I at least have a working browser.)
    Can anybody shed any light on this? What I don't understand is that the very same install of firefox worked perfectly well until I rebooted yesterday and now it fails utterly.
    I realise that I'm not using Arch's version of firefox (but I would if the language pack worked ) but I'm thinking there's just something I don't understand here about the way shared libraries work... I tried some searching but basically found a great many posts explaining how to add paths to /etc/ld.so.conf etc. and that obviously isn't a good solution in this particular case.
    There is no DYLD_LIBRARY_PATH on Linux, right? LD_LIBRARY_PATH is the only relevant environmental variable? But from reading, I gather setting this for normal use isn't a great idea and that it is better to configure via /etc/ld.so.conf (or /etc/ld.so.conf.d/*) for Linux? I'm just checking because DYLD_LIBRARY_PATH would be my first thought on OS X - although mainly for compiling rather than running stuff, admittedly.
    Last edited by cfr (2012-07-08 23:42:00)

    I fear that the glibc upgrade may be the culprit in which case, I'm afraid this may not get fixed at all...
    I found that just setting LD_LIBRARY_PATH to /usr/local/lib/firefox didn't work. Although firefox then found its bundled libraries, it failed to find any system libraries. So I tried
    LD_LIBRARY_PATH=/usr/local/lib/firefox:/lib:/usr/lib strace -e trace=open -o ff-ld-mwy.strace firefox
    EDIT: I think this is wrong and that it makes no difference. The change just makes it look in more places, maybe? But it does seem to get further in this case, though I've no idea why e.g. it searches for a lot more icons. I'm not sure why that would be...
    The output isn't meaning much to me right now. That is, several things look odd but I think that is probably me rather than necessarily being something wrong. Here's the output:
    open("/usr/local/lib/firefox/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/local/lib/firefox/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/local/lib/firefox/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/local/lib/firefox/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
    open("/usr/local/lib/firefox/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = 3
    open("/usr/local/lib/firefox/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
    open("/usr/local/lib/firefox/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/tls/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/tls/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = 3
    open("/usr/local/lib/firefox/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
    open("/usr/local/lib/firefox/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
    open("/usr/local/lib/firefox/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/dependentlibs.list", O_RDONLY) = 3
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnspr4.so", O_RDONLY) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnspr4.so", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libplc4.so", O_RDONLY) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libplc4.so", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libplds4.so", O_RDONLY) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libplds4.so", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libmozalloc.so", O_RDONLY) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libmozalloc.so", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libmozsqlite3.so", O_RDONLY) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libmozsqlite3.so", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnssutil3.so", O_RDONLY) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnssutil3.so", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libsoftokn3.so", O_RDONLY) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libsoftokn3.so", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnss3.so", O_RDONLY) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnss3.so", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libssl3.so", O_RDONLY) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libssl3.so", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libsmime3.so", O_RDONLY) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libsmime3.so", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libxul.so", O_RDONLY) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libxul.so", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libXrender.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libXrender.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libXrender.so.1", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libfreetype.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libfreetype.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libfreetype.so.6", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libfontconfig.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libfontconfig.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libfontconfig.so.1", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libasound.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libasound.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libasound.so.2", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libdbus-glib-1.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libdbus-glib-1.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libdbus-glib-1.so.2", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libdbus-1.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libdbus-1.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libdbus-1.so.3", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libglib-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libglib-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libglib-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libX11.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libX11.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libX11.so.6", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libXext.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libXext.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libXext.so.6", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libpangoft2-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libpangoft2-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libpangoft2-1.0.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libpangocairo-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libpangocairo-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libpangocairo-1.0.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libpango-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libpango-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libpango-1.0.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libcairo.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libcairo.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libcairo.so.2", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libgobject-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libgobject-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libgobject-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libgmodule-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libgmodule-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libgmodule-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libgtk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libgtk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libgtk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libatk-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libatk-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libatk-1.0.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libgdk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libgdk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libgdk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libgdk_pixbuf-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libgdk_pixbuf-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libgdk_pixbuf-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libXt.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libXt.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libXt.so.6", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libgthread-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libgthread-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libgthread-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libexpat.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libexpat.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libexpat.so.1", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libgio-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libgio-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libgio-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libpcre.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libpcre.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libpcre.so.1", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libxcb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libxcb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libxcb.so.1", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libpixman-1.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libpixman-1.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libpixman-1.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libpng15.so.15", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libpng15.so.15", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libpng15.so.15", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libxcb-shm.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libxcb-shm.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libxcb-shm.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libxcb-render.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libxcb-render.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libxcb-render.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libffi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libffi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libffi.so.6", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libXfixes.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libXfixes.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libXfixes.so.3", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libXinerama.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libXinerama.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libXinerama.so.1", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libXi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libXi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libXi.so.6", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libXrandr.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libXrandr.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libXrandr.so.2", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libXcursor.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libXcursor.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libXcursor.so.1", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libXcomposite.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libXcomposite.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libXcomposite.so.1", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libXdamage.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libXdamage.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libXdamage.so.1", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libSM.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libSM.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libSM.so.6", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libICE.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libICE.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libICE.so.6", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libresolv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libXau.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libXau.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libXau.so.6", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libuuid.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libuuid.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libuuid.so.1", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libxpcom.so", O_RDONLY|O_CLOEXEC) = 3
    open("/home/<username>/.mozilla/firefox/Crash Reports/InstallTime20120614114901", O_RDONLY) = 4
    open("/home/<username>/.mozilla/firefox/Crash Reports/LastCrash", O_RDONLY) = 4
    open("/usr/share/X11/locale/locale.alias", O_RDONLY) = 4
    open("/usr/share/X11/locale/locale.dir", O_RDONLY) = 4
    open("/usr/share/X11/locale/C/XLC_LOCALE", O_RDONLY) = 4
    open("/usr/share/X11/locale/locale.alias", O_RDONLY) = 4
    open("/usr/share/X11/locale/locale.dir", O_RDONLY) = 4
    open("/usr/share/X11/locale/C/XLC_LOCALE", O_RDONLY) = 4
    open("/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = 4
    open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libcanberra-gtk.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libcanberra-gtk.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libcanberra-gtk.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libcanberra.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libcanberra.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libcanberra.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libvorbisfile.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libvorbisfile.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libvorbisfile.so.3", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libvorbis.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libvorbis.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libvorbis.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libogg.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libogg.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libogg.so.0", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libtdb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libtdb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libtdb.so.1", O_RDONLY|O_CLOEXEC) = 4
    open("/usr/local/lib/firefox/libltdl.so.7", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/lib/libltdl.so.7", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
    open("/usr/lib/libltdl.so.7", O_RDONLY|O_CLOEXEC) = 4
    open("/home/<username>/.Xauthority", O_RDONLY) = 5
    --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=30447, si_status=0, si_utime=1, si_stime=0} ---
    open("/home/<username>/.Xauthority", O_RDONLY) = 5
    open("/etc/gtk-2.0/gtkrc", O_RDONLY) = 6
    open("/home/<username>/.kde4/share/config/gtkrc-2.0", O_RDONLY) = 6
    open("/usr/share/themes/oxygen-gtk/gtk-2.0/gtkrc", O_RDONLY) = 7
    open("/usr/lib/gtk-2.0/2.10.0/engines/liboxygen-gtk.so", O_RDONLY|O_CLOEXEC) = 8
    open("/proc/30446/cmdline", O_RDONLY) = 8
    open("/home/<username>/.config/oxygen-gtk/argb-apps.conf", O_WRONLY|O_CREAT|O_APPEND, 0666) = 8
    open("/usr/share/themes/oxygen-gtk/gtk-2.0/argb-apps.conf", O_RDONLY) = 8
    open("/home/<username>/.config/oxygen-gtk/argb-apps.conf", O_RDONLY) = 9
    --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=30448, si_status=0, si_utime=0, si_stime=0} ---
    open("/usr/share/themes/oxygen-gtk/gtk-2.0/kdeglobals", O_RDONLY) = 8
    open("/usr/share/themes/oxygen-gtk/gtk-2.0/kdeglobals", O_RDONLY) = 8
    open("/usr/lib/charset.alias", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/lib/gconv/gconv-modules.cache", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/lib/gconv/gconv-modules", O_RDONLY|O_CLOEXEC) = 9
    open("/usr/lib/gio/modules/giomodule.cache", O_RDONLY) = 9
    open("/usr/share/config/kdeglobals", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/config/kdeglobals", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/config/kdeglobals", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/config/kdeglobals", O_RDONLY) = 9
    open("/usr/share/themes/oxygen-gtk/gtk-2.0/oxygenrc", O_RDONLY) = 9
    open("/usr/share/themes/oxygen-gtk/gtk-2.0/oxygenrc", O_RDONLY) = 9
    open("/usr/share/config/oxygenrc", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/config/oxygenrc", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/config/oxygenrc", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/config/oxygenrc", O_RDONLY) = -1 ENOENT (No such file or directory)
    --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=30449, si_status=0, si_utime=1, si_stime=0} ---
    open("/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache", O_RDONLY) = 9
    open("/usr/share/themes/oxygen-gtk/gtk-2.0/icons4", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/index.theme", O_RDONLY) = 9
    open("/usr/share/icons/gnome/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/image-x-generic.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/image-x-generic.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/image-x-generic.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/image-x-generic.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/image-x-generic.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/image-x-generic.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/image-x-generic.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/image-x-generic.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/image-x-generic.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-refresh.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-refresh.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/configure.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/configure.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-warning.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-warning.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-about.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-about.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/list-add.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/list-add.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/list-add.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/list-add.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/list-add.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/list-add.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/list-add.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/list-add.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/list-add.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok-apply.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok-apply.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok-apply.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok-apply.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok-apply.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok-apply.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok-apply.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok-apply.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok-apply.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-bold.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-bold.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-bold.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-bold.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-bold.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-bold.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-bold.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-bold.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-bold.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-cancel.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-cancel.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-cancel.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-cancel.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-cancel.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-cancel.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-cancel.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-cancel.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-cancel.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-optical.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/media-optical.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-optical.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-optical.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-optical.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-optical.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-optical.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/media-optical.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-optical.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-clear.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-clear.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/window-close.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/window-close.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/window-close.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/window-close.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/window-close.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/window-close.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/window-close.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/window-close.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/window-close.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/color-picker.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/color-picker.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-connect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/network-connect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-connect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-connect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-connect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-connect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-connect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/network-connect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-connect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-export.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-export.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-export.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-export.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-export.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-export.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-export.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-export.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-export.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-copy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-copy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-copy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-copy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-copy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-copy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-copy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-copy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-copy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-cut.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-cut.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-cut.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-cut.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-cut.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-cut.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-cut.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-cut.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-cut.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-password.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-password.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-password.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-password.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-password.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-password.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-error.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-error.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-error.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-error.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-error.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-error.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-warning.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-warning.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-disconnect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/network-disconnect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-disconnect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-disconnect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-disconnect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-disconnect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-disconnect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/network-disconnect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-disconnect.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/places/document-multiple.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/places/document-multiple.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/places/document-multiple.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/places/document-multiple.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/places/document-multiple.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/places/document-multiple.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/places/document-multiple.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/places/document-multiple.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/places/document-multiple.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-properties.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-properties.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/fork.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/fork.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/fork.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/fork.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/fork.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/fork.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/fork.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/fork.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/fork.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-find.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-find.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find-replace.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-find-replace.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find-replace.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find-replace.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find-replace.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find-replace.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find-replace.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-find-replace.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find-replace.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-floppy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/media-floppy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-floppy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-floppy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-floppy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-floppy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-floppy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/media-floppy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-floppy.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-fullscreen.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-fullscreen.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-fullscreen.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-fullscreen.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-fullscreen.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-fullscreen.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-fullscreen.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-fullscreen.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-fullscreen.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-down.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-down.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-down.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-down.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-down.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-down.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-down.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-down.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-down.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-up.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-up.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-up.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-up.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-up.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-up.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-up.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-up.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-up.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-bottom.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-bottom.png", O_RDONLY) = 9
    open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-bottom.png", O_RDONLY) = 9
    open("/home/&

  • Fail to find uninstaller for add-on

    I receive the error message "Fail to find uninstaller for add-on" when upgrading my addon. My uninstaller.exe is copied into the addon subfolder in the AddOns folder of SBO during installation and it is invoked when I upgrade the addon. The uninstaller.exe just displays a message. What could be the problem?
    Thank You, Miki

    I'm having the identical problem. The error message is displayed after the installer completes.
    I specified the uninstaller program when generating the ard; it is not the same as my installer program. The uninstall.exe was installed in the same add on directory as the exe file for the addon itself. Is it expected to be somewhere else?
    Looking in the SBO-Common.SARI I can see my add on and UnInstName is set to "Uninstall.exe". InstIsUn is set to "N" and IParams is blank.
    Thanks for any assistance.
    Bill Faulk
    on edit: It does actually execute the uninstall.exe the next time I start SAP. It just shows an error when I install it.
    Message was edited by: Bill Faulk

Maybe you are looking for

  • Configure Networking in Hyper V

    Hi, I have a single R710 with hyper-v 2012 installed on it.  I am managing hyper v 2012 from a windows 8 host.  I have installed server 2012 VM. I have 2 networks connected to the physical R710. In virtual switch manager I have configured 2 switches.

  • Output type for mb1c

    Hi, i need to trigger the txt file upon saving the mateial document through MB1C transaction in real time. is it possible to achieve by assigning output type? Any output types already in the system?

  • MAU Backend Enhancement

    Hi All, I am trying to Enhance my MAU Application from the backend perpespective. I am following one Enhancement Guide. It has a process, through a BADI, in which I can pass some extra fields to the MAU Application on my client. We can set the Enhanc

  • Customer Exit or BADI for PP61 (Shift Planning) for Saving action

    I have a requirement to enhance PP61 (shift planning). First of all this program accepts any update of attendance for values before than current date, i think it should not happen by default.  Thus we have to disable editing or display an error messa

  • Bonsoir, je viens d'avoir un problème avec mon i pad mini

    Bonsoir, c'est la première fois que je viens sur un forum j'ai un problème avec mon i pad mini je viens de perdre une partie de mes icônes tel que facebook, la messagerie, mon appareil photo ... je ne sais pas ce qu'il y a lieu de faire