Opera 9, Java, and NY Times Sudoku

I'm having a hard time loading the NY Times Sudoku page with Opera 9 under Arch Linux. It is obviously a Java problem, and I don't seem to have this problem under Fedora Core 5 running jre 1.5.0 there.
To find that page, load nytimes.com, then choose the Crossword/Games link in the left column. Then choose the Sudoku link in the body of the page.
My experience under Arch is that the page either locks up Opera 9 or crashes it.

Titus wrote:
in extra repo there is 9.02 build
extra/opera 9.0-2 The Opera web browser
That's opera 9.0 but the pkg has pkgrel 2, you're kinda confused
A package of the weekly build is here

Similar Messages

  • Second posting - spent hours on this - yesterday and today - I have downloaded the FlashPlayer upgrade (now 10 times), in Security - no pop-ups are checked, the "allow Java" and "allow other other plug-ins" are both checked.  I have re-booted after the Fl

    Repeat message - I have downloaded the FlashPlayer upgrade (now 10 times), in Security - no pop-ups are checked, the "allow Java" and "allow other other plug-ins" are both checked.  I have re-booted after the Flash-Player upgrades - still "pop=ups blocked"

    Hello,
    Please provide the following information:
    Your operating system & version
    Your web browser(s) & version
    Your Flash Player version
    Explain your problem in step-by-step detail if possible
    A direct link to a page that demonstrates the problem
    If you get error messages, please quote them exactly, or provide a screenshot: http://forums.adobe.com/thread/1070933
    Thank you.
    Maria

  • Why can't I use WebCT chat with my computer?  I get the 'spiral of death' every time I try to type in my chat.  I have a feeling it has to do with compatibility issues between Java and Tiger.

    Why can't I use WebCT chat with my computer?  I get the 'spiral of death' every time I try to type in my chat.  I have a feeling it has to do with compatibility issues between Java and Tiger.

    Hi Elizabeth,
    Do your Mac meet any of these requirements?
    http://www.wvnet.edu/services/webct/requirements.html
    From this it appears to be PC only!???
    http://sourceforge.net/projects/awebctcclient/files/Pancake%20%28it%20own%20proj ect%20now%29/Pancake%20Console%20V1.0.0/PancakeConsole-1.0.0-src.zip/download
    Can you provide any more info on which bersion or file you have?
    Can you tell us why you need this for your use?

  • Java and binary operations (roll)

    Is there any roll operations in java?
    1011 rolled to the right would become 1101
    1011 rolled to the left would bcome 0111
    How can I accomplish this?

    Why do you need that?I'm making a huffman encoder and need binary paths. I shift individual paths into a long path, but when an individual path exceeds the total number of bits I need to store the highest bits into the remaining of the path. Its easier to mask the lower segment than the higher in a collection of bits, so I would like to roll the path to the high bits end up at the lower part of the path and then mask the path so it contains a correct number of bits and shift it into the remaining bits.
    example:
    current path - 10110010110010000
    path - 1000
    notice the three last bits (000). This is where I want to 'store' 1000. Since 1000 is four bits I need to take the 3 highest bits (100) store these and store the last bit in a new long path. I can mask the lowest by doing 'path &= ((int)Math.pow(2, bit) - 1)' but this is not possible with high bits.
    Nille

  • CS 4 Dynamic Link to Encore doesn't work most of the time.  Encore stops operating after opening and periodically Premier Pro stops working.  I'm told that there has been a problem with CS4 when using Dynamic Link to go to Encore and build CD's.  Is there

    CS 4 Dynamic Link to Encore doesn't work most of the time.  Encore stops operating after opening and periodically Premier Pro stops working.  I'm told that there has been a problem with CS4 when using Dynamic Link to go to Encore and build CD's.  Is there a way around this?  Is there a patch to correct it?

    To build CD's???
    What problem does Encore have with DL?
    If DL is not working properly for you the way around this is to export from Premiere to either mpeg2-dvd for DVD or BluRay H.264 for BD-disks and import the files in Encore.

  • I have a MAC, Ive just installed OS10.10.3 operating system in it and I can't open Photoshop.  This is a wide spread problem that involves Java and Photoshop software.  Since you produce both these products , I turn toward you to direct me to the best "Fi

    I have a MAC, Ive just installed OS10.10.3 operating system in it and I can't open Photoshop.  This is a wide spread problem that involves Java and Photoshop software.  Since you produce both these products , I turn toward you to direct me to the best "Fix"?

    Go here Mac OS X Yosemite (10.10) compatibility FAQs | CC

  • Quick Time 7.0 Pro (7.7.3) on Win 7 Home Prem 64-bit, Pro paid for, valid registration code, Open Image Sequence (and resulting time-lapse movies) has quit working after several successful operations.  What do?  How fix? Thanks.

    Quick Time 7.0 Pro (7.7.3) on Win 7 Home Prem 64-bit, Pro paid for, valid registration code, Open Image Sequence (and resulting time-lapse movies) has quit working after several successful operations.  What do?  How fix? Thanks.

    This tip is ready for submission.
    It REPLACES the prior version in the Time Machine forum, at: http://discussions.apple.com/thread.jspa?threadID=2057525
    Additions/wording changes to items C3, C4, C5, D4
    New topics C9, C10, C11, and E4

  • I'm new to Java and can't get javac command working

    Ok first of all hello ( i'm new to the forum ), second i'm reading a book about Java and im trying to compile a sample code from the book, but javac command gained life and it's against me. So the book i'm reading is Sams Teach Yourself Java in 21 Days (YAY), and the code i want to compile is an application that works with another bit of code that mimics what a robot could do inside a volcano. So the Volcano program code is the following ( i'll post the robot code at the end of the post):
    1: class VolcanoApp {
    2: public static void main(String[] arguments) {
    3: VolcanoRobot dante = new VolcanoRobot();
    4: dante.status = ?exploring?;
    5: dante.speed = 2;
    6: dante.temperature = 510;
    7:
    8: dante.showAttributes();
    9: System.out.println(?Increasing speed to 3.?);
    10: dante.speed = 3;
    11: dante.showAttributes();
    12: System.out.println(?Changing temperature to 670.?);
    13: dante.temperature = 670;
    14: dante.showAttributes();
    15: System.out.println(?Checking the temperature.?);
    16: dante.checkTemperature();
    17: dante.showAttributes();
    18: }
    19: }
    Ignore the numbers they are used for explaining stuff in the book, and i din't copy the indentation.
    So what i do is that i creat a file with notepad ( no fancy stuff only plain old notepad ) and i copy this code, remove the numbers and make the indents.
    After that i save as .txt file with the apropriate name ( i know it's case sensitive ). After that i open command prompt and write:
    javac VolcanoApp.java
    And it tells me that "javac is not recognized as an internal or external command operable program or batch file".
    I managed to solve that by going to the control panel and by adding to the system variables for my user in the path variable this :
    ;C:\JAVAJDK\bin
    ( C:\JAVAJDK is where JDK is installed)
    And then i modified the system variables like this:
    In the CLASSPATH i entered this .;%JAVA_HOME%\lib\tools.jar
    In JAVA_HOME i entered this C:\JAVAJDK
    Setting the variables like this made the javac error go away but now when i write in command line
    javac VolcanoApp.java
    It gives me this error
    javac: file not found : VolcanoApp.java
    Usage: javac options source files
    use -help for a list of possible options
    And then i read that i can drop my java file directly in the javac file. So i did.
    When i drop my VolcanoApp.java in the javac file it open a command line window and writes a bunch of stuff in like a milisecond and shuts down. And no file is created.
    I wanted to know what was writen in that window so i did it again and took a print screen and pasted it on paint ( it writed so much text that i only got a little bit but enough to see what hapend)
    I read it and in the print screen it said it had 15 errors ( so far ) and then it point the errors with little arrows and there were characters that weren't present in the original code.
    What hapend the compiler added wierd letters?
    SO, my real question is, how the heck do i get javac working and compiling stuff properly?
    Plz help i'm getting mad at this! ; (
    And the code for the "robot":
    1: class VolcanoRobot {
    2: String status;
    3: int speed;
    4: float temperature;
    5:
    6: void checkTemperature() {
    7: if (temperature > 660) {
    8: status = ?returning home?;
    9: speed = 5;
    10: }
    11: }
    12:
    13: void showAttributes() {
    14: System.out.println(?Status: ? + status);
    15: System.out.println(?Speed: ? + speed);
    16: System.out.println(?Temperature: ? + temperature);
    17: }
    18: }
    Again no indents and ignore the numbers. In the book it only said to compile the VolcanoApp.java , and not the VolcanoRobot.java
    Edit:
    I'm using Windows Vista Home Premium 32 bit.
    Edited by: BBlop on Dec 13, 2009 11:29 AM

    guess what it says java file. So yes i'm sure. Sarcasm. Not the best way to encourage a total stranger to help you. Then there's
    Sorry if i wasn't more clear but was that response needed?No it wasn't needed, but I'm not the one asking for help so I have the luxury of not worrying too much about it. It's extremely frustrating trying to drag relevant information out of someone, and makes one less inclined to bother.
    Anyways, there's still nothing in this thread that actually explicitly says "there is a file called VolcanoApp.java in the directory where I'm running javac from" and I really can't be bothered banging my head against the wall any longer. You've made a silly mistake, or a false assumption. We all do it from time to time. My advice is, take a break, go for a walk and re-visit this in a while. You'll probably spot the mistake right away.

  • JMF example AVTransmit2.java and AVReceive2.java is not working for me?

    Dear all
    I want to develop a class which will capture my voice data from my microphone and then will send it to the sound system of my PC following RTP protocol. For that I tried both AVTransmit2.java and AVReceive2.java class from http://java.sun.com/products/java-media/jmf/2.1.1/solutions/ but they just not doing it how I want, I am sure I am making some mistake, please let me know.
    Moreover, when I try AudioBufferControl.java from the above link it is doing it for me what I want, let me hear what I am saying to my microphone, but it is using "javasound", I think that is not using RTP. Again if I use JMStudio even then I can hear my voice from microphone to sound system.
    Pls can you help me write a class and let me know what I am doing wrong!
    With care
    Arif.

    Try to follow these steps:
    1. make sure db tables have the pk and fk's pre-existing.
    2. create a brand new workspace
    a) Select New Business Components: business components from tables.
    b) Select these two tables
    c) on the define view pages (step 2), push both objects over, then just click [finish]
    3. Open the ViewController Node
    a) expand Web Content, then WEB-INF
    b) double click struts-config.xml to open it
    4. In Struts-config.xml
    a) drop a datapage, name it BrowseRoster, double click it, then drag and drop the Roster table from your DataControl Palette, as a READ only table.
    b) insert a column as the first cell in the table and drop the operation: setCurrentRowWithKey as a find Row link. This should create the ANCHOR link, i.e.
    ">Show Emps</a>
    c) create another page, EditOneEmp, double click to open that, and EXPAND the Roster table in the Data Control Palette. Drop the Emp table on this as an input form.
    d) Now go back to the STruts-config.xml and draw a forward from the browse to the detail and name the forward setCurrentRowWithKey.
    e) run the browse page from the struts-config.xml file (right click and run). Click on the hyperlink and you should go to the detail input page.
    You may have messed up in Step 4(c). Also, when you run into these situations, as we've run into this NUMEROUS times at work, follow through the examine again, IN A NEW WORKSPACE, and redo each and every step. You must be EXACT or things don't work.
    Let me know if it works out.
    Thanks.

  • Java and Flash broken

    Forgive me if this is a redundant topic.
    For about a month now, both Safari and Firefox have been unable to play video in any player nor display any other flash based medium. While Safari displays a blank area where the player would be, Firefox usually displays this message:
    "Hello, you either have JavaScript turned off or an old version of Adobe's Flash Player. Get the latest Flash player."
    I know I have all of the latest updates for both Java and Flash. Any ideas? I've had a similar problem with my iMac in recent years, except instead of a blank space there would be a QuickTime logo with '?' in the center. This resolved itself after many months.
    For the time being I can switch to Opera to view video, but if you've used Opera before you can understand my pain a desperation to have Safari or Firefox back.

    Have you tried repairing permissions, or setting up a new User Account with Flash and JavaScript installed and testing there to see if the problem persists? Have you considered re-applying the 10.5.4 Combo Update (after repairing permissions)?
    Mulder

  • Java and "High Risk Activities"

    The java license says that it "is not designed, licensed, or intended for use in the design, construction, operation or maintenance of any nuclear facility ("High Risk Activities")."
    I think this must have something to do with GC? Can anyone explain what is required to make java suitable for "High Risk Activities"? I might have some work with the Russian atomic energy agency coming up.

    design, construction, operation or maintenance of any nuclear facility...
    "Design" and "construction" rule out CAD design tools written in Java, and UML design tools for software engineering, if you interpret the license very restrictively.
    It seems to me that it is a remain from the Cold War era.
    I can't say if they simply have written a disclaimer (we at Sun can not be responsabilized by the Three Mile Island or the Chernobyl incidents because Java can't be used at such sites...), or they think that Java is a weapon (like strong cryptography)...
    I agree with the conditions "operation" or "maintenance" - plain old Java, without real-time extensions, suffers with the unpredictability of response time due to garbage collection cycles - even if you pass a lot of parameters to the JVM, like -XX+UseParallelGC . (Plain old Linux has such problem as well, so you need to use some Linux distro that implements real-time extensions, or better, an operating system that is designed from the ground up to support real-time operations, like QNX).
    I am not a lawyer; please check the license with someone.

  • Appending and add time stamp at a time........

    Hi all,
    i am working on a scenario...
    it is file based..no mapping and bpm can be used.
    I need to pick up file through xi and append it and put in the target with time stamp to it.
    we can achieve this if mapping or bpm is allowed.....
    But,in file processing we can use only one option at a time.....
    I found a way:
    scenario one: files will be appened and kept in a temparory folder
    using another scenario we will pick up the appeneded file and add time stamp and keep in target structure...
    but i dont think this is advisable...
    please suggest me any other ways to achieve this...(can run operating system command be helpfull??)
    thanks in advance..
    Regards,
    Kiran.

    HI,
    Yes you are right, Appending and adding Time Stamp will not be possible simultaneously.
    Refer - this could help you
    Dynamic Filename with TimeStamp  
    Dynamic Filename with TimeStamp
    /people/william.li/blog/2006/04/18/dynamic-configuration-of-some-communication-channel-parameters-using-message-mapping
    But some how you have to use mapping for it. Then if its allowed to use the mapping then as you have suggested, should have to go for two scenarios. No alternative,
    Probably also you can try with Customized Adapter Module for this.
    Thanks
    swarup

  • ABAP , JAVA And XSLT Mapping Doc's

    Hi,
    I am new to SAP XI Any body please send me the Doc's Related to ABAP, JAVA And XSLT Mappings. Thanks in Advance.
    Regards
    Kiran.B

    Hi
    Refer to
    ABAP mapping:
    How to Use ABAP Mapping in XI 3.0
    JAVA mapping:
    http://help.sap.com/saphelp_nw04/helpdata/en/bd/c91241c738f423e10000000a155106/frameset.htm (Java mapping)
    XSLT mapping:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/01a57f0b-0501-0010-3ca9-d2ea3bb983c1
    /people/prasadbabu.nemalikanti3/blog/2006/03/30/xpath-functions-in-xslt-mapping
    /people/sreekanth.babu2/blog/2005/01/05/design-time-value-mappings-in-xslt
    /people/anish.abraham2/blog/2005/12/22/file-to-multiple-idocs-xslt-mapping
    XSLT Mapping with java enhancement
    /people/pooja.pandey/blog/2005/06/27/xslt-mapping-with-java-enhancement-for-beginners
    XSLT - /people/dirk.roeckmann/blog/2006/07/26/grouping-xml-with-xslt--from-muenchian-method-to-xslt-20
    Regards,
    Kumar.
    Reward points if helpful!!

  • My mac froze in an application so I shut it down by powering off with button, now when I try to turn it on I have a grey screen with Apple loge and the timer swirling but it doesn't get past this, please help!

    I Shut down my Mac by holding in the power button after my iMac froze and now when I try to turn it back it on all I get is the grey screen with Apple loge and the timer and doesn't get any further.  I have tried the diagnostic test but nothing was found.

    Take each of these steps that you haven't already tried. Stop when the problem is resolved.
    To restart an unresponsive computer, press and hold the power button for a few seconds until the power shuts off, then release, wait a few more seconds, and press it again briefly.
    Step 1
    The first step in dealing with a startup failure is to secure the data. If you want to preserve the contents of the startup drive, and you don't already have at least one current backup, you must try to back up now, before you do anything else. It may or may not be possible. If you don't care about the data that has changed since the last backup, you can skip this step.
    There are several ways to back up a Mac that is unable to start. You need an external hard drive to hold the backup data.
    a. Start up from the Recovery partition, or from a local Time Machine backup volume (option key at startup.) When the OS X Utilities screen appears, launch Disk Utility and follow the instructions in this support article, under “Instructions for backing up to an external hard disk via Disk Utility.” The article refers to starting up from a DVD, but the procedure in Recovery mode is the same. You don't need a DVD if you're running OS X 10.7 or later.
    b. If Step 1a fails because of disk errors, and no other Mac is available, then you may be able to salvage some of your files by copying them in the Finder. If you already have an external drive with OS X installed, start up from it. Otherwise, if you have Internet access, follow the instructions on this page to prepare the external drive and install OS X on it. You'll use the Recovery installer, rather than downloading it from the App Store.
    c. If you have access to a working Mac, and both it and the non-working Mac have FireWire or Thunderbolt ports, start the non-working Mac in target disk mode. Use the working Mac to copy the data to another drive. This technique won't work with USB, Ethernet, Wi-Fi, or Bluetooth.
    d. If the internal drive of the non-working Mac is user-replaceable, remove it and mount it in an external enclosure or drive dock. Use another Mac to copy the data.
    Step 2
    If the startup process stops at a blank gray screen with no Apple logo or spinning "daisy wheel," then the startup volume may be full. If you had previously seen warnings of low disk space, this is almost certainly the case. You might be able to start up in safe mode even though you can't start up normally. Otherwise, start up from an external drive, or else use the technique in Step 1b, 1c, or 1d to mount the internal drive and delete some files. According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation.
    Step 3
    Sometimes a startup failure can be resolved by resetting the NVRAM.
    Step 4
    If a desktop Mac hangs at a plain gray screen with a movable cursor, the keyboard may not be recognized. Press and hold the button on the side of an Apple wireless keyboard to make it discoverable. If need be, replace or recharge the batteries. If you're using a USB keyboard connected to a hub, connect it to a built-in port.
    Step 5
    If there's a built-in optical drive, a disc may be stuck in it. Follow these instructions to eject it.
    Step 6
    Press and hold the power button until the power shuts off. Disconnect all wired peripherals except those needed to start up, and remove all aftermarket expansion cards. Use a different keyboard and/or mouse, if those devices are wired. If you can start up now, one of the devices you disconnected, or a combination of them, is causing the problem. Finding out which one is a process of elimination.
    Step 7
    If you've started from an external storage device, make sure that the internal startup volume is selected in the Startup Disk pane of System Preferences.
    Start up in safe mode. Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Post for further instructions.
    Safe mode is much slower to start and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know the login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    When you start up in safe mode, it's normal to see a dark gray progress bar on a light gray background. If the progress bar gets stuck for more than a few minutes, or if the system shuts down automatically while the progress bar is displayed, the startup volume is corrupt and the drive is probably malfunctioning. In that case, go to Step 11. If you ever have another problem with the drive, replace it immediately.
    If you can start and log in in safe mode, empty the Trash, and then open the Finder Info window on the startup volume ("Macintosh HD," unless you gave it a different name.) Check that you have at least 9 GB of available space, as shown in the window. If you don't, copy as many files as necessary to another volume (not another folder on the same volume) and delete the originals. Deletion isn't complete until you empty the Trash again. Do this until the available space is more than 9 GB. Then restart as usual (i.e., not in safe mode.)
    If the startup process hangs again, the problem is likely caused by a third-party system modification that you installed. Post for further instructions.
    Step 8
    Launch Disk Utility in Recovery mode (see Step 1.) Select the startup volume, then run Repair Disk. If any problems are found, repeat until clear. If Disk Utility reports that the volume can't be repaired, the drive has malfunctioned and should be replaced. You might choose to tolerate one such malfunction in the life of the drive. In that case, erase the volume and restore from a backup. If the same thing ever happens again, replace the drive immediately.
    This is one of the rare situations in which you should also run Repair Permissions, ignoring the false warnings it may produce. Look for the line "Permissions repair complete" at the end of the output. Then restart as usual.
    Step 9
    If the startup device is an aftermarket SSD, it may need a firmware update and/or a forced "garbage collection." Instructions for doing this with a Crucial-branded SSD were posted here. Some of those instructions may apply to other brands of SSD, but you should check with the vendor's tech support.  
    Step 10
    Reinstall the OS. If the Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade.
    Step 11
    Do as in Step 9, but this time erase the startup volume in Disk Utility before installing. The system should automatically restart into the Setup Assistant. Follow the prompts to transfer the data from a Time Machine or other backup.
    Step 12
    This step applies only to models that have a logic-board ("PRAM") battery: all Mac Pro's and some others (not current models.) Both desktop and portable Macs used to have such a battery. The logic-board battery, if there is one, is separate from the main battery of a portable. A dead logic-board battery can cause a startup failure. Typically the failure will be preceded by loss of the settings for the startup disk and system clock. See the user manual for replacement instructions. You may have to take the machine to a service provider to have the battery replaced.
    Step 13
    If you get this far, you're probably dealing with a hardware fault. Make a "Genius" appointment at an Apple Store, or go to another authorized service provider.

  • Time machine on external drive will not back up itunes media file on a separate external drive. Have already reformated itunes media drive,dragged itunes media backup file from time machine (old copy) and removed time machine plist and restarted.

    Two external drives, one for time machine backups and a second (daisy chained firewire) for itunes media folder . Time machine fails to backup the media file saying could not be completed, with no error specified. Steps taken already include reformating drive with media, dragging older media backup file from time machine disc to media disc, and deleting time machine plist and starting time macine preferences upon startup. Media folder is approx 200 gb, mostly ripped dvd movies.
    Any help for this??
    Thanks

    Tks for the help. Tried to eliminate duplicates. Copy below.
    6/11/14 3:07:33.458 PM com.apple.backupd[532]: Found 2332 files (193.66 GB) needing backup
    6/11/14 3:07:33.488 PM com.apple.backupd[532]: 219.71 GB required (including padding), 539.32 GB available
    6/11/14 3:09:42.200 PM com.apple.backupd[532]: Copied 1201 items (51.5 MB) from volume Macintosh HD. Linked 2894.
    6/11/14 3:10:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:30.072 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Home Videos/2013 Trip To Kate and Jason - Large 1.m4v to (null)
    6/11/14 3:10:44.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:57.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:57.327 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Home Videos/2013 Trip To Kate and Jason - Large.m4v to (null)
    6/11/14 3:11:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:11:22.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:11:22.394 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Home Videos/IMG_0378.m4v to (null)
    6/11/14 3:11:57.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:12:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:12:09.872 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Home Videos/IMG_0398.m4v to (null)
    6/11/14 3:12:44.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:12:46.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:05.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:05.959 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/AAA 2.4.1.ipa to (null)
    6/11/14 3:13:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:46.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:51.325 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Air Sharing 3.4.3.ipa to (null)
    6/11/14 3:14:18.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:14:21.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:14:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:14:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:14:51.289 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Angie's List 3.0.2.ipa to (null)
    6/11/14 3:15:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:15:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:15:34.517 PM secd[422]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/11/14 3:15:34.517 PM secd[267]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/11/14 3:15:34.517 PM secd[267]:  securityd_xpc_dictionary_handler EscrowSecurityAl[581] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/11/14 3:15:34.517 PM secd[422]:  securityd_xpc_dictionary_handler EscrowSecurityAl[580] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/11/14 3:15:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:15:51.643 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/AP Mobile 6.2.1.ipa to (null)
    6/11/14 3:15:54.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:16:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:16:19.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:16:19.908 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Apple Store 120269.ipa to (null)
    6/11/14 3:16:35.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:16:50.710 PM com.apple.backupd-helper[533]: Not starting scheduled Time Machine backup: Backup already running
    6/11/14 3:16:53.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:00.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:00.552 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Archetype 1.6.2.ipa to (null)
    6/11/14 3:17:10.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:35.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:49.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:18:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:18:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:18:28.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:18:40.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:06.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:18.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:41.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:43.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:56.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:20:11.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:20:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:20:36.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:20:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:13.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:28.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:41.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:53.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:23:06.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:23:19.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:23:31.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:23:57.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:24:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:24:22.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:24:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:24:50.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:15.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:35.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:47.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:47.887 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Bloomberg 3.0.ipa to (null)
    6/11/14 3:26:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:13.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:13.942 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Calculator 3.4.ipa to (null)
    6/11/14 3:26:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:26.509 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Camera Zoom 3.1.ipa to (null)
    6/11/14 3:26:39.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:52.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:52.108 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Cards 2.0.1.ipa to (null)
    6/11/14 3:27:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:27:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:27:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:27:29.606 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Casino 2.5.ipa to (null)
    6/11/14 3:27:47.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:00.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:00.327 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Clear Day 2.6.ipa to (null)
    6/11/14 3:28:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:39.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:56.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:21.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:34.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:47.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:59.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:12.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:24.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:37.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:49.085 PM xpcproxy[629]: assertion failed: 13D65: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    6/11/14 3:30:49.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:50.194 PM syncdefaultsd[628]: Fixing push token
    6/11/14 3:30:52.507 PM xpcproxy[632]: assertion failed: 13D65: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    6/11/14 3:31:02.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:31:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:31:27.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:31:39.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:31:52.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:05.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:42.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:58.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:34:21.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:34:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:34:46.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:34:49.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:35:02.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:35:18.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:35:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:35:30.676 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Collection HD 1.7.ipa to (null)
    6/11/14 3:36:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:36:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:36:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:36:29.651 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/eCardExpress 2.1.ipa to (null)
    6/11/14 3:36:52.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:52.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:38:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:38:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:38:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:38:45.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:08.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:10.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:46.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:40:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:40:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:40:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:40:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:04.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:39.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:41.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:54.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:19.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:54.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:57.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:43:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:43:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:43:34.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:43:47.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:10.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:12.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:25.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:50.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:25.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:28.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:40.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:20.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:45.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:58.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:47:10.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:47:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:47:35.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:47:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:00.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:13.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:49:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:49:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:49:21.393 PM WindowServer[128]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280300 device: 0x7f8ef9d04e00  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/11/14 3:49:21.731 PM launchservicesd[52]: Application App:"System Preferences" asn:0x0-44044 pid:509 refs=7 @ 0x7fb5b9443730 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x45045 pid=513 "com.apple.prefs.backup.remoteservice"")), so denying. : LASSession.cp #1481 SetFrontApplication() q=LSSession 100019/0x186b3 queue
    6/11/14 3:49:21.731 PM WindowServer[128]: [cps/setfront] Failed setting the front application to System Preferences, psn 0x0-0x44044, securitySessionID=0x186b3, err=-13066
    6/11/14 3:49:21.733 PM WindowServer[128]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x7f8ef9e94e00(2001)
    6/11/14 3:49:21.795 PM WindowServer[128]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x7f8ef9e94e00(2001)
    6/11/14 3:49:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:50:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:50:48.546 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/GarageBand 1.1.ipa to (null)
    6/11/14 3:51:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:51:13.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:51:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:51:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:51:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:41.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:53:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:53:07.747 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Glympse 2.22.444.ipa to (null)
    6/11/14 3:53:20.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:53:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:53:32.869 PM com.apple.backupd[532]: Stopping backup.
    6/11/14 3:53:32.869 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Golf Channel 3.7.2.ipa to (null)
    6/11/14 3:53:33.357 PM com.apple.backupd[532]: Copied 127 items (2.24 GB) from volume Media. Linked 0.
    6/11/14 3:53:33.376 PM com.apple.backupd[532]: Copy stage failed with error:11
    6/11/14 3:53:34.607 PM com.apple.backupd[532]: Backup failed with error 11: 11
    6/11/14 3:55:53.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:56:05.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:56:18.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:56:33.000 PM kernel[0]: disk1s2: I/O error.

Maybe you are looking for

  • Trouble opening Itunes due to error messages?

    When I click on the Itunes icon on my pc desk top, I am getting tw messages as follows. "The program can't start because MSVCR80.dII is missing from my computer. Try re-installing the program to fix this problem." And then when I click ok, I get anot

  • PDF output vs. RTF Output

    I have a few form fields in my template which say only display this line if the data exists. When I output the report as PDF the lines with no data are hidden as I'd expect. When I output as RTF the lines are still there. Also, unticking the 'Allow r

  • How do I edit the hosts file in Lion

    I tried to edit the hosts file in Lion with: sudo nano /private/etc/hosts. Then entered Password. The window came up blank evev though I know there is data there.

  • Dispalying other users table propeties on the connect tab hangs

    I tried to display the table columns of another user on the connection tab, raptor hung with "loading". I tried to dragging the table on to sql worksheet to get the columns, again raptor hung. This table has 145 columns. Is it possible to select colu

  • System file is missing on my Satellite A60

    My Toshiba A6O is buggered! It keeps saying that the Windows SYSTEM file is missing so I reformat and it still says it??s missing! What can I do, because it won??t actually start up properly! The nearest I get is to a screen saying about starting in