Pipes vs. sync

I am studying inter-thread communication, and all i read about are sync blocks (and volatile). But what about PipedStreams ?
Are there ever debates: "shall we use pipes, or synchronization" Or, is the choice so obvious there is never a debate? Or is it impossible to compare a Pipe with a sync block (ike "apples vs. oranges")? I can only imagine very simple test cases for pipes. Maybe, its almost similar to opening a socket with a different thread on the same host. (Except for possible firewall issues) one could maybe use circular sockets in a similar way to a standard pipes???? Anyway, thanks for reading.

Thank you for your insight regarding Pipes . I think I will put pipe knowledge near the bottom of my long list of "Things to Learn" in Java. Since I made the test code tonight, here it is. I am not really sure if it attests to my point:
public class Main extends Thread {
  public static void main(String[] args) {  new Main().start();  }
  public void run() {
    PipedInputStream pin = new PipedInputStream();
    PipedOutputStream pout = new PipedOutputStream(pin);
    CopyMe copyMe = new CopyMe();
    copyMe.id = -1;
    ObjectOutputStream oos = new ObjectOutputStream(pout);
    oos.writeObject(copyMe);
    ObjectInputStream ois = new ObjectInputStream(pin);
    CopyMe copyMe2 = (CopyMe) ois.readObject();
    copyMe2.id = 15;
    copyMe.start();
    copyMe2.start();
public class CopyMe extends Thread implements Serializable {
  public int id = -1;
  public void run() {
    List<Integer> list = new ArrayList<Integer>();
    for (;;) {
      if (id > 0) {  for (int i = 1; i < id; i += 2) {  list.add(i); }  }
      System.out.println("________--> " + list.size());
      Thread.sleep(1221);
}I read in the API, "twisting / serializing" two pipes in one thread is deadlock prone. But, since I started studying pipes (again) I thought about deadlock safety with pipes between 2 threads. And I just got conflicted feeling about deep-copy and serialization and cloning. I am ok, and thank you for your time.

Similar Messages

  • Issue creating ConnectionPool as per documentation in 974949.1

    Hello all,
    I am using AIA 2.5 PMDM PIP to sync OPH and Seibel/BRM.
    We are configuring the connectionPool as described in 974949.1 in the SOA server (OC4J 10.3.1.4) hosting the AIA.
    However we are facing the below error as soon as we are trying to create the same.
    An error has occurred.
    Error invoking method: replaceProperties on MBean: oc4j:j2eeType=JDBCDriver,name="MyAppsDataSourceConnectionPool1-Connection Factory",J2EEApplication=default,J2EEServer=standalone
    Error invoking method: replaceProperties on MBean: oc4j:j2eeType=JDBCDriver,name="MyAppsDataSourceConnectionPool1-Connection Factory",J2EEApplication=default,J2EEServer=standalone
    Hide Additional Trace Information
    oracle.oc4j.admin.jmx.shared.exceptions.JMXRuntimeException: Error invoking method: replaceProperties on MBean: oc4j:j2eeType=JDBCDriver,name="MyAppsDataSourceConnectionPool1-Connection Factory",J2EEApplication=default,J2EEServer=standalone at oracle.oc4j.admin.jmx.distributed.SimpleInstanceMBeanServerDelegate.invoke(SimpleInstanceMBeanServerDelegate.java:970) at oracle.oc4j.admin.jmx.server.state.LocalizationFilterMBeanServer.invoke(LocalizationFilterMBeanServer.java:579)
    The same error mentioned by someone in https://kr.forums.oracle.com/forums/thread.jspa?threadID=2316596
    I checked the same in Oracle KM and found a note ID 1065009.1, which suggested the follwoing action:
    1> Replace GWYUID=APPLSYSPUB/null with GWYUID=APPLSYSPUB/PUB in the dbcFile if needed
    Make sure it is valid
    2> Restart default application or the entire server via the oc4j admin console, and retest the issue.
    If I ceck my dbFile, it has the following entry (I have removed the IP and Port), which is already conforming point1 mentioned above.
    bash-3.00$ more PRO_APPL_SOA.dbc
    #Desktop DB Settings
    #Fri Jan 26 14:14:23 SGT 2012
    FNDNAM=APPS
    APPL_SERVER_ID=B6F2AFF74FF75CF6E04400144F77FD0C14956825240300268321962714852956
    APPS_JDBC_URL=jdbc\:oracle\:thin\:@XXX.XXX.XXX.XXX\:YYYY\:PRO
    GWYUID=APPLSYSPUB/PUB
    bash-3.00$
    Any idea, how to resolve it?
    /Ed

    Anyone have any idea? we are stuck with the issue. Thanks, Ed

  • P35: Which one?

    Hi,
    I'm looking for a motherboard that supports the Core 2 Quad Q9xxx processors. A P35 board seems good, but there are nine of them. Where do I find a page with the differences between them?
    I don't have to manually compare all 9 details pages and play a game of 'find the differences', do I?

    Quote from: AaronYuri on 08-May-08, 01:15:25
    I can recommend either the >>P35 Platinum<< or the >>P35 Neo2-FR/FIR<<.
    i think you would be more than happy with either of those choices....if your looking for a great way to save alil $ on your new build than i would say to go with the neo2 FR/FIR
    both boards are actaully the exact same boards except for the Circu-Pipe heat sync and a few minor options(theres even a lil red sticker that says P35 neo2 just under your main pci slot...if you peel off this sticker you will find the word Platinum under it)

  • Broken pipe error in Sync Send JDBC Receiver:   Extremely Serious issue

    Hi forum,
    I have a serious error in a JDBC->XI--> JDBC scenario,
    Step1: I use a sender JDBC channel to select some distinct values from  a table say X, and update the same rows,
    Query SQL Statement: select distinct Branch from dbo.X where status = 0
    Update SQL statement: update dbo.X set Status = 2 where Status = 0
    Step 2: enter BPM
    Step 3: enter a loop
    Step 4:make a synchronous call to the same table X, to fetch some records,
    SQL query: select * from X where status = 0 and Branch = i; Update X set status = 9 where Branch = i
    Step 5: close loop,  this loop iterates for 5 or 6 times depending on i, which is no. of branches selected by the sender JDBC channel
    so all the calls are to the same table, same databsse(SQL Server)
    the problem is when this sync calls happens in the loop, it some times gives following error, which i se in RWB:
    <b>Error Unable to execute statement for table or stored procedure. 'X' (Structure 'STATEMENT_X') due to com.microsoft.sqlserver.jdbc.SQLServerException: An exception occurred during the DBComms.transmit operation. Exception:Broken pipe (errno:32). Context:(2217)</b>
    i have no way to trace the cause of the error, the database is perfect and the error logs in the SQL server shows no trace of any error,
    Note: It works sometimes
    i dont know whom to approach, pls help
    the issue is very very serious as its in production system,

    Hi Sudeep,
    SAP Note 846079 - XI 3.0 JDBC Receiver: # of Retries on SQL Error w/o Effect
    Please check the following SAP note also - 831162
    Some info which i found there and can be relevant in to your scenario.....
    Q: I am using a JDBC Receiver Adapter in conjunction with the  Lotus Domino Driver for JDBC perform an INSERT or UPDATE operation on a database. When sending a message to the receiver, the Adapter Monitoring shows the following error message:
    "java.sql.SQLException: [Lotus][Domino Driver for JDBC]Invalid cursor state"
    Is there a fix for this issue?
    A: To work around this JDBC driver problem, activate the Advanced Mode for the respective JDBC Receiver channel and configure the setting "Number of Retries of Database Transaction on SQL Error" to a value > 0. Additionally, make sure that the setting "Database Auto-Commit Enabled" is also active as the Lotus Domino Driver for JDBC does not support transactions.
    Apply note 846079 before configuring this scenario.
    Q: The TCP/IP connection to my database host is running over an unreliable network connection, i.e. the connection is sometimes interrupted. Consequently, I sporadically receive an SQLException regarding a closed connection in the system trace or audit log or the connection as well as the JDBC Adapter channel are hanging.
    How can I work around this connectivity issue?
    A: Enable the "Advanced Mode" for the respective JDBC Adapter channel and select the option "Disconnect from Database After Processing each Message".
    Note that this might put additional load on your DBMS due to the creation of a new database connection for each message.
    I dont have access to a database right now, so i am not able to check this.
    Also check the JDBC driver compatability as mentioned in the above note.
    Cheer's

  • Premiere CC, PIP Out of Sync on Export

    I have this problem that's been driving me crazy the past few days. I have a basic sequence in my Premiere project that features some picture-in-picture. When viewing it in Premiere, the PIPs are perfectly synced how I want them with the main picture, however on export it is out of sync by a few seconds towards the end (the first few PIPs are perfect, though). I have tried multiple formats with the same result. Even creating a new sequence using that sequence (so that there is only one video and audio track and therefore should not logically be able to be out of sync) has failed. I even tried moving the PIPs that are towards the end earlier and later on the timeline coprresponding to how out of sync they are in the exported file, however that doesn't work either.
    I have searched extensively and have not been able to find my problem. Are there any ideas?

    UPDATE:
    I tried re-editing the entire sequence from scratch in a new project and it still has this problem. It seems as though the picture-in-picture runs more quickly than the main picture while having weird lag spikes. I exported it at 240p and 15 frames per second and the video is perfect (besides looking awful). This seems like an annoying bug that is on Adobe's end having to do with encoding. I will try exporting as different file types and report back.

  • Ideas to sync two camera (mini DV) feeds for PIP iMovie

    I am going to film , at the same time, with two seperate cameras. I will insert one feed as a Picture in Picture.
    Does anybody have a quick and easy solution for syncing the two?

    I am going to film , at the same time, with two seperate cameras. I will insert one feed as a Picture in Picture.
    Does anybody have a quick and easy solution for syncing the two?

  • "Kernel panic - not syncing: Attempted to kill init!" on shutdown

    For several years now, I've been happily using Arch. I'm quite a seasoned user. I've solved countless errors and problems with my systems on 3 different machines, but I don't know how to fix this one. I've searched the forum and asked google -- got no answer.
    Since systemd upgrade on my Asus laptop, shutdown and reboot broke down. The other machine with Arch works fine (systemd installed), but that's a stationary computer.
    I don't know what may be wrong... The system is upgraded to the full. The error displayed by kernel is as follows:
    Kernel panic - not syncing: Attempted to kill init!
    And photo of it happening: http://i.imgur.com/kewfbYv.jpg
    This happens every time I try to shut down or reboot the laptop. (I'm using the poweroff and reboot commands). I have to press the power button for a while to force poweroff. It's really annoying.
    Everything works just fine except this kernel panic. I'm using catalyst drivers. Other than that - nothing "unusual".
    Boot journal:
    -- Logs begin at Mon 2012-12-31 05:00:25 CET, end at Sat 2013-01-26 12:27:00 CET. --
    Jan 26 12:20:45 further systemd-journal[145]: Allowing runtime journal files to grow to 171.5M.
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys cpuset
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys cpu
    Jan 26 12:20:45 further kernel: Linux version 3.7.4-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Mon Jan 21 23:05:29 CET 2013
    Jan 26 12:20:45 further kernel: Command line: root=/dev/sda6 ro nomodeset init=/sbin/init rootfstype=ext4
    Jan 26 12:20:45 further kernel: e820: BIOS-provided physical RAM map:
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008f6bffff] usable
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f6c0000-0x000000008f702fff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f703000-0x000000008f711fff] ACPI data
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f712000-0x000000008f828fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f829000-0x000000008f838fff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f839000-0x000000008f867fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f868000-0x000000008f868fff] usable
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f869000-0x000000008f871fff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f872000-0x000000008f883fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f884000-0x000000008f891fff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f892000-0x000000008f893fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f894000-0x000000008f89afff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f89b000-0x000000008f89dfff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f89e000-0x000000008f8a6fff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f8a7000-0x000000008f8cdfff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f8ce000-0x000000008fad0fff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008fad1000-0x000000008fd45fff] usable
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008fd46000-0x000000008fef6fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008fef7000-0x000000008fefffff] usable
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000fed61000-0x00000000fed70fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x0000000100001000-0x000000014effffff] usable
    Jan 26 12:20:45 further kernel: NX (Execute Disable) protection: active
    Jan 26 12:20:45 further kernel: DMI 2.7 present.
    Jan 26 12:20:45 further kernel: DMI: ASUSTeK Computer Inc. K43TA/K43TA, BIOS 214 04/06/2012
    Jan 26 12:20:45 further kernel: e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    Jan 26 12:20:45 further kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jan 26 12:20:45 further kernel: No AGP bridge found
    Jan 26 12:20:45 further kernel: e820: last_pfn = 0x14f000 max_arch_pfn = 0x400000000
    Jan 26 12:20:45 further kernel: MTRR default type: uncachable
    Jan 26 12:20:45 further kernel: MTRR fixed ranges enabled:
    Jan 26 12:20:45 further kernel: 00000-9FFFF write-back
    Jan 26 12:20:45 further kernel: A0000-BFFFF write-through
    Jan 26 12:20:45 further kernel: C0000-CEFFF write-protect
    Jan 26 12:20:45 further kernel: CF000-E7FFF uncachable
    Jan 26 12:20:45 further kernel: E8000-FFFFF write-protect
    Jan 26 12:20:45 further kernel: MTRR variable ranges enabled:
    Jan 26 12:20:45 further kernel: 0 base 0000000000 mask FF80000000 write-back
    Jan 26 12:20:45 further kernel: 1 base 0080000000 mask FFF0000000 write-back
    Jan 26 12:20:45 further kernel: 2 base 008FF00000 mask FFFFF00000 uncachable
    Jan 26 12:20:45 further kernel: 3 disabled
    Jan 26 12:20:45 further kernel: 4 disabled
    Jan 26 12:20:45 further kernel: 5 disabled
    Jan 26 12:20:45 further kernel: 6 disabled
    Jan 26 12:20:45 further kernel: 7 disabled
    Jan 26 12:20:45 further kernel: TOM2: 000000014f000000 aka 5360M
    Jan 26 12:20:45 further kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jan 26 12:20:45 further kernel: e820: update [mem 0x8ff00000-0xffffffff] usable ==> reserved
    Jan 26 12:20:45 further kernel: e820: last_pfn = 0x8ff00 max_arch_pfn = 0x400000000
    Jan 26 12:20:45 further kernel: found SMP MP-table at [mem 0x000fce90-0x000fce9f] mapped at [ffff8800000fce90]
    Jan 26 12:20:45 further kernel: initial memory mapped: [mem 0x00000000-0x1fffffff]
    Jan 26 12:20:45 further kernel: Base memory trampoline at [ffff880000097000] 97000 size 24576
    Jan 26 12:20:45 further kernel: Using GB pages for direct mapping
    Jan 26 12:20:45 further kernel: init_memory_mapping: [mem 0x00000000-0x8fefffff]
    Jan 26 12:20:45 further kernel: [mem 0x00000000-0x7fffffff] page 1G
    Jan 26 12:20:45 further kernel: [mem 0x80000000-0x8fdfffff] page 2M
    Jan 26 12:20:45 further kernel: [mem 0x8fe00000-0x8fefffff] page 4k
    Jan 26 12:20:45 further kernel: kernel direct mapping tables up to 0x8fefffff @ [mem 0x1fffd000-0x1fffffff]
    Jan 26 12:20:45 further kernel: init_memory_mapping: [mem 0x100001000-0x14effffff]
    Jan 26 12:20:45 further kernel: [mem 0x100001000-0x1001fffff] page 4k
    Jan 26 12:20:45 further kernel: [mem 0x100200000-0x14effffff] page 2M
    Jan 26 12:20:45 further kernel: kernel direct mapping tables up to 0x14effffff @ [mem 0x8fefc000-0x8fefffff]
    Jan 26 12:20:45 further kernel: RAMDISK: [mem 0x37d07000-0x37feffff]
    Jan 26 12:20:45 further kernel: ACPI: RSDP 00000000000f0450 00024 (v02 _ASUS_)
    Jan 26 12:20:45 further kernel: ACPI: XSDT 000000008f703068 00054 (v01 _ASUS_ Notebook 01072009 AMI 00010013)
    Jan 26 12:20:45 further kernel: ACPI: FACP 000000008f70f1a0 000F4 (v04 _ASUS_ Notebook 01072009 AMI 00010013)
    Jan 26 12:20:45 further kernel: ACPI BIOS Bug: Warning: Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20120913/tbfadt-598)
    Jan 26 12:20:45 further kernel: ACPI: DSDT 000000008f703150 0C050 (v02 _ASUS_ Notebook 00000000 INTL 20091112)
    Jan 26 12:20:45 further kernel: ACPI: FACS 000000008f89af80 00040
    Jan 26 12:20:45 further kernel: ACPI: APIC 000000008f70f298 00072 (v03 _ASUS_ Notebook 01072009 AMI 00010013)
    Jan 26 12:20:45 further kernel: ACPI: MCFG 000000008f70f310 0003C (v01 _ASUS_ GMCH945. 01072009 MSFT 00000097)
    Jan 26 12:20:45 further kernel: ACPI: HPET 000000008f70f350 00038 (v01 _ASUS_ Notebook 01072009 AMI 00000004)
    Jan 26 12:20:45 further kernel: ACPI: SSDT 000000008f70f388 00726 (v01 _ASUS_ POWERNOW 00000001 AMD 00000001)
    Jan 26 12:20:45 further kernel: ACPI: SSDT 000000008f70fab0 0190A (v02 _ASUS_ ALIB 00000001 MSFT 04000000)
    Jan 26 12:20:45 further kernel: ACPI: Local APIC address 0xfee00000
    Jan 26 12:20:45 further kernel: No NUMA configuration found
    Jan 26 12:20:45 further kernel: Faking a node at [mem 0x0000000000000000-0x000000014effffff]
    Jan 26 12:20:45 further kernel: Initmem setup node 0 [mem 0x00000000-0x14effffff]
    Jan 26 12:20:45 further kernel: NODE_DATA [mem 0x14effc000-0x14effffff]
    Jan 26 12:20:45 further kernel: [ffffea0000000000-ffffea00053fffff] PMD -> [ffff88014ae00000-ffff88014e5fffff] on node 0
    Jan 26 12:20:45 further kernel: Zone ranges:
    Jan 26 12:20:45 further kernel: DMA [mem 0x00010000-0x00ffffff]
    Jan 26 12:20:45 further kernel: DMA32 [mem 0x01000000-0xffffffff]
    Jan 26 12:20:45 further kernel: Normal [mem 0x100000000-0x14effffff]
    Jan 26 12:20:45 further kernel: Movable zone start for each node
    Jan 26 12:20:45 further kernel: Early memory node ranges
    Jan 26 12:20:45 further kernel: node 0: [mem 0x00010000-0x0009cfff]
    Jan 26 12:20:45 further kernel: node 0: [mem 0x00100000-0x8f6bffff]
    Jan 26 12:20:45 further kernel: node 0: [mem 0x8f868000-0x8f868fff]
    Jan 26 12:20:45 further kernel: node 0: [mem 0x8fad1000-0x8fd45fff]
    Jan 26 12:20:45 further kernel: node 0: [mem 0x8fef7000-0x8fefffff]
    Jan 26 12:20:45 further kernel: node 0: [mem 0x100001000-0x14effffff]
    Jan 26 12:20:45 further kernel: On node 0 totalpages: 911563
    Jan 26 12:20:45 further kernel: DMA zone: 64 pages used for memmap
    Jan 26 12:20:45 further kernel: DMA zone: 6 pages reserved
    Jan 26 12:20:45 further kernel: DMA zone: 3911 pages, LIFO batch:0
    Jan 26 12:20:45 further kernel: DMA32 zone: 16320 pages used for memmap
    Jan 26 12:20:45 further kernel: DMA32 zone: 567679 pages, LIFO batch:31
    Jan 26 12:20:45 further kernel: Normal zone: 5056 pages used for memmap
    Jan 26 12:20:45 further kernel: Normal zone: 318527 pages, LIFO batch:31
    Jan 26 12:20:45 further kernel: ACPI: PM-Timer IO Port: 0x808
    Jan 26 12:20:45 further kernel: ACPI: Local APIC address 0xfee00000
    Jan 26 12:20:45 further kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Jan 26 12:20:45 further kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Jan 26 12:20:45 further kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    Jan 26 12:20:45 further kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] disabled)
    Jan 26 12:20:45 further kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    Jan 26 12:20:45 further kernel: ACPI: IOAPIC (id[0x03] address[0xfec00000] gsi_base[0])
    Jan 26 12:20:45 further kernel: IOAPIC[0]: apic_id 3, version 33, address 0xfec00000, GSI 0-23
    Jan 26 12:20:45 further kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jan 26 12:20:45 further kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Jan 26 12:20:45 further kernel: ACPI: IRQ0 used by override.
    Jan 26 12:20:45 further kernel: ACPI: IRQ2 used by override.
    Jan 26 12:20:45 further kernel: ACPI: IRQ9 used by override.
    Jan 26 12:20:45 further kernel: Using ACPI (MADT) for SMP configuration information
    Jan 26 12:20:45 further kernel: ACPI: HPET id: 0xffffffff base: 0xfed00000
    Jan 26 12:20:45 further kernel: smpboot: Allowing 4 CPUs, 2 hotplug CPUs
    Jan 26 12:20:45 further kernel: nr_irqs_gsi: 40
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f6c0000 - 000000008f703000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f703000 - 000000008f712000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f712000 - 000000008f829000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f829000 - 000000008f839000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f839000 - 000000008f868000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f869000 - 000000008f872000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f872000 - 000000008f884000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f884000 - 000000008f892000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f892000 - 000000008f894000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f894000 - 000000008f89b000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f89b000 - 000000008f89e000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f89e000 - 000000008f8a7000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f8a7000 - 000000008f8ce000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f8ce000 - 000000008fad1000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008fd46000 - 000000008fef7000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008ff00000 - 00000000e0000000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fec11000 - 00000000fed00000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fed00000 - 00000000fed01000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fed01000 - 00000000fed61000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fed61000 - 00000000fed71000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fed71000 - 00000000fed80000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fed80000 - 00000000fed90000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fed90000 - 00000000ff000000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 0000000100000000 - 0000000100001000
    Jan 26 12:20:45 further kernel: e820: [mem 0x8ff00000-0xdfffffff] available for PCI devices
    Jan 26 12:20:45 further kernel: Booting paravirtualized kernel on bare hardware
    Jan 26 12:20:45 further kernel: setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    Jan 26 12:20:45 further kernel: PERCPU: Embedded 28 pages/cpu @ffff88014ec00000 s84544 r8192 d21952 u524288
    Jan 26 12:20:45 further kernel: pcpu-alloc: s84544 r8192 d21952 u524288 alloc=1*2097152
    Jan 26 12:20:45 further kernel: pcpu-alloc: [0] 0 1 2 3
    Jan 26 12:20:45 further kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 890117
    Jan 26 12:20:45 further kernel: Policy zone: Normal
    Jan 26 12:20:45 further kernel: Kernel command line: root=/dev/sda6 ro nomodeset init=/sbin/init rootfstype=ext4
    Jan 26 12:20:45 further kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jan 26 12:20:45 further kernel: __ex_table already sorted, skipping sort
    Jan 26 12:20:45 further kernel: Checking aperture...
    Jan 26 12:20:45 further kernel: No AGP bridge found
    Jan 26 12:20:45 further kernel: Calgary: detecting Calgary via BIOS EBDA area
    Jan 26 12:20:45 further kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Jan 26 12:20:45 further kernel: Memory: 3508092k/5488640k available (4832k kernel code, 1842388k absent, 138160k reserved, 4077k data, 808k init)
    Jan 26 12:20:45 further kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Jan 26 12:20:45 further kernel: Preemptible hierarchical RCU implementation.
    Jan 26 12:20:45 further kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jan 26 12:20:45 further kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jan 26 12:20:45 further kernel: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
    Jan 26 12:20:45 further kernel: NR_IRQS:4352 nr_irqs:712 16
    Jan 26 12:20:45 further kernel: Extended CMOS year: 2000
    Jan 26 12:20:45 further kernel: Console: colour VGA+ 80x25
    Jan 26 12:20:45 further kernel: console [tty0] enabled
    Jan 26 12:20:45 further kernel: allocated 14680064 bytes of page_cgroup
    Jan 26 12:20:45 further kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jan 26 12:20:45 further kernel: hpet clockevent registered
    Jan 26 12:20:45 further kernel: tsc: Fast TSC calibration using PIT
    Jan 26 12:20:45 further kernel: tsc: Detected 1896.600 MHz processor
    Jan 26 12:20:45 further kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3794.25 BogoMIPS (lpj=6322000)
    Jan 26 12:20:45 further kernel: pid_max: default: 32768 minimum: 301
    Jan 26 12:20:45 further kernel: Security Framework initialized
    Jan 26 12:20:45 further kernel: AppArmor: AppArmor disabled by boot time parameter
    Jan 26 12:20:45 further kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Jan 26 12:20:45 further kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Jan 26 12:20:45 further kernel: Mount-cache hash table entries: 256
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys cpuacct
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys memory
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys devices
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys freezer
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys net_cls
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys blkio
    Jan 26 12:20:45 further kernel: tseg: 008ff00000
    Jan 26 12:20:45 further kernel: CPU: Physical Processor ID: 0
    Jan 26 12:20:45 further kernel: CPU: Processor Core ID: 0
    Jan 26 12:20:45 further kernel: mce: CPU supports 6 MCE banks
    Jan 26 12:20:45 further kernel: [120B blob data]
    Jan 26 12:20:45 further kernel: Freeing SMP alternatives: 16k freed
    Jan 26 12:20:45 further kernel: ACPI: Core revision 20120913
    Jan 26 12:20:45 further kernel: ftrace: allocating 18585 entries in 73 pages
    Jan 26 12:20:45 further kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jan 26 12:20:45 further kernel: smpboot: CPU0: AMD A4-3300M APU with Radeon(tm) HD Graphics (fam: 12, model: 01, stepping: 00)
    Jan 26 12:20:45 further kernel: Performance Events: AMD PMU driver.
    Jan 26 12:20:45 further kernel: ... version: 0
    Jan 26 12:20:45 further kernel: ... bit width: 48
    Jan 26 12:20:45 further kernel: ... generic registers: 4
    Jan 26 12:20:45 further kernel: ... value mask: 0000ffffffffffff
    Jan 26 12:20:45 further kernel: ... max period: 00007fffffffffff
    Jan 26 12:20:45 further kernel: ... fixed-purpose events: 0
    Jan 26 12:20:45 further kernel: ... event mask: 000000000000000f
    Jan 26 12:20:45 further kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jan 26 12:20:45 further kernel: smpboot: Booting Node 0, Processors #1
    Jan 26 12:20:45 further kernel: Brought up 2 CPUs
    Jan 26 12:20:45 further kernel: smpboot: Total of 2 processors activated (7589.50 BogoMIPS)
    Jan 26 12:20:45 further kernel: devtmpfs: initialized
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f6c0000-0x8f702fff] (274432 bytes)
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f829000-0x8f838fff] (65536 bytes)
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f869000-0x8f871fff] (36864 bytes)
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f884000-0x8f891fff] (57344 bytes)
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f894000-0x8f89afff] (28672 bytes)
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f89e000-0x8f8a6fff] (36864 bytes)
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f8ce000-0x8fad0fff] (2109440 bytes)
    Jan 26 12:20:45 further kernel: NET: Registered protocol family 16
    Jan 26 12:20:45 further kernel: ACPI: bus type pci registered
    Jan 26 12:20:45 further kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Jan 26 12:20:45 further kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Jan 26 12:20:45 further kernel: PCI: Using configuration type 1 for base access
    Jan 26 12:20:45 further kernel: bio: create slab <bio-0> at 0
    Jan 26 12:20:45 further kernel: ACPI: Added _OSI(Module Device)
    Jan 26 12:20:45 further kernel: ACPI: Added _OSI(Processor Device)
    Jan 26 12:20:45 further kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jan 26 12:20:45 further kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jan 26 12:20:45 further kernel: ACPI: EC: Look up EC in DSDT
    Jan 26 12:20:45 further kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Jan 26 12:20:45 further kernel: ACPI: Interpreter enabled
    Jan 26 12:20:45 further kernel: ACPI: (supports S0 S3 S4 S5)
    Jan 26 12:20:45 further kernel: ACPI: Using IOAPIC for interrupt routing
    Jan 26 12:20:45 further kernel: [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    Jan 26 12:20:45 further kernel: [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    Jan 26 12:20:45 further kernel: ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
    Jan 26 12:20:45 further kernel: ACPI: No dock devices found.
    Jan 26 12:20:45 further kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Jan 26 12:20:45 further kernel: \_SB_.PCI0:_OSC request failed
    Jan 26 12:20:45 further kernel: _OSC request data:1 8 1f
    Jan 26 12:20:45 further kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jan 26 12:20:45 further kernel: PCI host bridge to bus 0000:00
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x03af]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [io 0x03b0-0x03df]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [io 0x1778-0xffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [mem 0xb0000000-0xffffffff]
    Jan 26 12:20:45 further kernel: pci 0000:00:00.0: [1022:1705] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:01.0: [1002:9648] type 00 class 0x030000
    Jan 26 12:20:45 further kernel: pci 0000:00:01.0: reg 10: [mem 0xb0000000-0xbfffffff pref]
    Jan 26 12:20:45 further kernel: pci 0000:00:01.0: reg 14: [io 0xf000-0xf0ff]
    Jan 26 12:20:45 further kernel: pci 0000:00:01.0: reg 18: [mem 0xfeb00000-0xfeb3ffff]
    Jan 26 12:20:45 further kernel: pci 0000:00:01.0: supports D1 D2
    Jan 26 12:20:45 further kernel: pci 0000:00:01.1: [1002:1714] type 00 class 0x040300
    Jan 26 12:20:45 further kernel: pci 0000:00:01.1: reg 10: [mem 0xfeb44000-0xfeb47fff]
    Jan 26 12:20:45 further kernel: pci 0000:00:01.1: supports D1 D2
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: [1022:1707] type 01 class 0x060400
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: [1022:1709] type 01 class 0x060400
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:05.0: [1022:170a] type 01 class 0x060400
    Jan 26 12:20:45 further kernel: pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:10.0: [1022:7812] type 00 class 0x0c0330
    Jan 26 12:20:45 further kernel: pci 0000:00:10.0: reg 10: [mem 0xfeb48000-0xfeb49fff 64bit]
    Jan 26 12:20:45 further kernel: pci 0000:00:10.0: PME# supported from D0 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: [1022:7801] type 00 class 0x010601
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: reg 10: [io 0xf140-0xf147]
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: reg 14: [io 0xf130-0xf133]
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: reg 18: [io 0xf120-0xf127]
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: reg 1c: [io 0xf110-0xf113]
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: reg 20: [io 0xf100-0xf10f]
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: reg 24: [mem 0xfeb4d000-0xfeb4d7ff]
    Jan 26 12:20:45 further kernel: pci 0000:00:12.0: [1022:7807] type 00 class 0x0c0310
    Jan 26 12:20:45 further kernel: pci 0000:00:12.0: reg 10: [mem 0xfeb4c000-0xfeb4cfff]
    Jan 26 12:20:45 further kernel: pci 0000:00:12.2: [1022:7808] type 00 class 0x0c0320
    Jan 26 12:20:45 further kernel: pci 0000:00:12.2: reg 10: [mem 0xfeb4b000-0xfeb4b0ff]
    Jan 26 12:20:45 further kernel: pci 0000:00:12.2: supports D1 D2
    Jan 26 12:20:45 further kernel: pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    Jan 26 12:20:45 further kernel: pci 0000:00:14.0: [1022:780b] type 00 class 0x0c0500
    Jan 26 12:20:45 further kernel: pci 0000:00:14.2: [1022:780d] type 00 class 0x040300
    Jan 26 12:20:45 further kernel: pci 0000:00:14.2: reg 10: [mem 0xfeb40000-0xfeb43fff 64bit]
    Jan 26 12:20:45 further kernel: pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:14.3: [1022:780e] type 00 class 0x060100
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: [1022:780f] type 01 class 0x060401
    Jan 26 12:20:45 further kernel: pci 0000:00:14.7: [1022:7806] type 00 class 0x080501
    Jan 26 12:20:45 further kernel: pci 0000:00:14.7: reg 10: [mem 0xfeb4a000-0xfeb4a0ff 64bit]
    Jan 26 12:20:45 further kernel: pci 0000:00:18.0: [1022:1700] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.1: [1022:1701] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.2: [1022:1702] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.3: [1022:1703] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.4: [1022:1704] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.5: [1022:1718] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.6: [1022:1716] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.7: [1022:1719] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: [1002:6741] type 00 class 0x030000
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: reg 10: [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: reg 18: [mem 0xfea20000-0xfea3ffff 64bit]
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: reg 20: [io 0xe000-0xe0ff]
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: reg 30: [mem 0xfea00000-0xfea1ffff pref]
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: supports D1 D2
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: PCI bridge to [bus 01]
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
    Jan 26 12:20:45 further kernel: pci 0000:02:00.0: reg 10: [io 0xd000-0xd0ff]
    Jan 26 12:20:45 further kernel: pci 0000:02:00.0: reg 18: [mem 0xd0004000-0xd0004fff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:02:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:02:00.0: supports D1 D2
    Jan 26 12:20:45 further kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:03:00.0: [168c:002b] type 00 class 0x028000
    Jan 26 12:20:45 further kernel: pci 0000:03:00.0: reg 10: [mem 0xfe900000-0xfe90ffff 64bit]
    Jan 26 12:20:45 further kernel: pci 0000:03:00.0: supports D1
    Jan 26 12:20:45 further kernel: pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:05.0: PCI bridge to [bus 03]
    Jan 26 12:20:45 further kernel: pci 0000:00:05.0: bridge window [mem 0xfe900000-0xfe9fffff]
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: PCI bridge to [bus 04] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [io 0x0000-0x03af] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [io 0x03b0-0x03df] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [io 0x1778-0xffff] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [mem 0xb0000000-0xffffffff] (subtractive decode)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR14._PRT]
    Jan 26 12:20:45 further kernel: \_SB_.PCI0:_OSC request failed
    Jan 26 12:20:45 further kernel: _OSC request data:1 1f 1f
    Jan 26 12:20:45 further kernel: pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Jan 26 12:20:45 further kernel: pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN24] (IRQs *24)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN25] (IRQs *25)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN26] (IRQs *26)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN27] (IRQs *27)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN28] (IRQs *28)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN29] (IRQs *29)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN30] (IRQs *30)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN31] (IRQs *31)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN32] (IRQs *32)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN33] (IRQs *33)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN34] (IRQs *34)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN35] (IRQs *35)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN36] (IRQs *36)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN37] (IRQs *37)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN38] (IRQs *38)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN39] (IRQs *39)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN40] (IRQs *40)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN41] (IRQs *41)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN42] (IRQs *42)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN43] (IRQs *43)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN44] (IRQs *44)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN45] (IRQs *45)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN46] (IRQs *46)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN47] (IRQs *47)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN48] (IRQs *48)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN49] (IRQs *49)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN50] (IRQs *50)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN51] (IRQs *51)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN52] (IRQs *52)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN53] (IRQs *53)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN54] (IRQs *54)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN55] (IRQs *55)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    Jan 26 12:20:45 further kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    Jan 26 12:20:45 further kernel: vgaarb: loaded
    Jan 26 12:20:45 further kernel: vgaarb: bridge control possible 0000:01:00.0
    Jan 26 12:20:45 further kernel: vgaarb: no bridge control possible 0000:00:01.0
    Jan 26 12:20:45 further kernel: PCI: Using ACPI for IRQ routing
    Jan 26 12:20:45 further kernel: PCI: pci_cache_line_size set to 64 bytes
    Jan 26 12:20:45 further kernel: e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    Jan 26 12:20:45 further kernel: e820: reserve RAM buffer [mem 0x8f6c0000-0x8fffffff]
    Jan 26 12:20:45 further kernel: e820: reserve RAM buffer [mem 0x8f869000-0x8fffffff]
    Jan 26 12:20:45 further kernel: e820: reserve RAM buffer [mem 0x8fd46000-0x8fffffff]
    Jan 26 12:20:45 further kernel: e820: reserve RAM buffer [mem 0x8ff00000-0x8fffffff]
    Jan 26 12:20:45 further kernel: e820: reserve RAM buffer [mem 0x14f000000-0x14fffffff]
    Jan 26 12:20:45 further kernel: NetLabel: Initializing
    Jan 26 12:20:45 further kernel: NetLabel: domain hash size = 128
    Jan 26 12:20:45 further kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jan 26 12:20:45 further kernel: NetLabel: unlabeled traffic allowed by default
    Jan 26 12:20:45 further kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    Jan 26 12:20:45 further kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    Jan 26 12:20:45 further kernel: Switching to clocksource hpet
    Jan 26 12:20:45 further kernel: pnp: PnP ACPI init
    Jan 26 12:20:45 further kernel: ACPI: bus type pnp registered
    Jan 26 12:20:45 further kernel: pnp 00:00: [bus 00-ff]
    Jan 26 12:20:45 further kernel: pnp 00:00: [io 0x0cf8-0x0cff]
    Jan 26 12:20:45 further kernel: pnp 00:00: [io 0x0000-0x03af window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [io 0x03e0-0x0cf7 window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [io 0x03b0-0x03df window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [io 0x1778-0xffff window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [mem 0x000a0000-0x000bffff window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [mem 0x000c0000-0x000dffff window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [mem 0xb0000000-0xffffffff window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [mem 0x00000000 window]
    Jan 26 12:20:45 further kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    Jan 26 12:20:45 further kernel: pnp 00:01: [mem 0xe0000000-0xefffffff]
    Jan 26 12:20:45 further kernel: system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0010-0x001f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0022-0x003f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0063]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0065]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0067-0x006f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0072-0x007f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0080]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0084-0x0086]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0088]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x008c-0x008e]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0090-0x009f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x00a2-0x00bf]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x00b1]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x00e0-0x00ef]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x04d0-0x04d1]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x040b]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x04d6]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0c00-0x0c01]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0c14]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0c50-0x0c51]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0c52]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0c6c]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0c6f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0cd0-0x0cd1]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0cd2-0x0cd3]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0cd4-0x0cd5]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0cd6-0x0cd7]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0cd8-0x0cdf]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0800-0x089f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0000-0xffffffffffffffff disabled]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0000-0x000f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0b20-0x0b3f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0900-0x090f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0910-0x091f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0xfe00-0xfefe]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0060-0x005f disabled]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0064-0x0063 disabled]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xfec00000-0xfec00fff]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xfee00000-0xfee00fff]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xfed80000-0xfed8ffff]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xfed61000-0xfed70fff]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xfec10000-0xfec10fff]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xfed00000-0xfed00fff]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xff000000-0xffffffff]
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x04d0-0x04d1] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x040b] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x04d6] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0c00-0x0c01] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0c14] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0c50-0x0c51] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0c52] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0c6c] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0c6f] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0cd0-0x0cd1] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0cd2-0x0cd3] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0cd4-0x0cd5] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0cd6-0x0cd7] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0cd8-0x0cdf] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0800-0x089f] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0b20-0x0b3f] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0900-0x090f] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0910-0x091f] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0xfe00-0xfefe] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xfed80000-0xfed8ffff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xfed61000-0xfed70fff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xfec10000-0xfec10fff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xfed00000-0xfed00fff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xff000000-0xffffffff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 26 12:20:45 further kernel: pnp 00:03: [dma 4]
    Jan 26 12:20:45 further kernel: pnp 00:03: [io 0x0000-0x000f]
    Jan 26 12:20:45 further kernel: pnp 00:03: [io 0x0081-0x0083]
    Jan 26 12:20:45 further kernel: pnp 00:03: [io 0x0087]
    Jan 26 12:20:45 further kernel: pnp 00:03: [io 0x0089-0x008b]
    Jan 26 12:20:45 further kernel: pnp 00:03: [io 0x008f]
    Jan 26 12:20:45 further kernel: pnp 00:03: [io 0x00c0-0x00df]
    Jan 26 12:20:45 further kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    Jan 26 12:20:45 further kernel: pnp 00:04: [io 0x0070-0x0071]
    Jan 26 12:20:45 further kernel: pnp 00:04: [irq 8]
    Jan 26 12:20:45 further kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jan 26 12:20:45 further kernel: pnp 00:05: [io 0x0061]
    Jan 26 12:20:45 further kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0010-0x001f]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0022-0x003f]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0044-0x005f]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0072-0x007f]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0080]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0084-0x0086]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0088]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x008c-0x008e]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0090-0x009f]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x00a2-0x00bf]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x00e0-0x00ef]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x04d0-0x04d1]
    Jan 26 12:20:45 further kernel: system 00:06: [io 0x04d0-0x04d1] has been reserved
    Jan 26 12:20:45 further kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 26 12:20:45 further kernel: pnp 00:07: [io 0x00f0-0x00ff]
    Jan 26 12:20:45 further kernel: pnp 00:07: [irq 13]
    Jan 26 12:20:45 further kernel: pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jan 26 12:20:45 further kernel: pnp 00:08: [io 0x1770-0x1777]
    Jan 26 12:20:45 further kernel: system 00:08: [io 0x1770-0x1777] has been reserved
    Jan 26 12:20:45 further kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 26 12:20:45 further kernel: pnp 00:09: [irq 12]
    Jan 26 12:20:45 further kernel: pnp 00:09: Plug and Play ACPI device, IDs ETD0102 PNP0f13 (active)
    Jan 26 12:20:45 further kernel: pnp 00:0a: [io 0x0060]
    Jan 26 12:20:45 further kernel: pnp 00:0a: [io 0x0064]
    Jan 26 12:20:45 further kernel: pnp 00:0a: [irq 1]
    Jan 26 12:20:45 further kernel: pnp 00:0a: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    Jan 26 12:20:45 further kernel: pnp 00:0b: [mem 0x00000000-0xffffffffffffffff disabled]
    Jan 26 12:20:45 further kernel: pnp 00:0b: [mem 0x00000000-0xffffffffffffffff disabled]
    Jan 26 12:20:45 further kernel: system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 26 12:20:45 further kernel: pnp 00:0c: [mem 0xfed00000-0xfed003ff]
    Jan 26 12:20:45 further kernel: pnp 00:0c: Plug and Play ACPI device, IDs PNP0103 (active)
    Jan 26 12:20:45 further kernel: pnp: PnP ACPI: found 13 devices
    Jan 26 12:20:45 further kernel: ACPI: ACPI bus type pnp unregistered
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: PCI bridge to [bus 01]
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:00:05.0: PCI bridge to [bus 03]
    Jan 26 12:20:45 further kernel: pci 0000:00:05.0: bridge window [mem 0xfe900000-0xfe9fffff]
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: PCI bridge to [bus 04]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 7 [io 0x1778-0xffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 10 [mem 0xb0000000-0xffffffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd00fffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci_bus 0000:03: resource 1 [mem 0xfe900000-0xfe9fffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 4 [io 0x0000-0x03af]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 5 [io 0x03e0-0x0cf7]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 6 [io 0x03b0-0x03df]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 7 [io 0x1778-0xffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 8 [mem 0x000a0000-0x000bffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 9 [mem 0x000c0000-0x000dffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 10 [mem 0xb0000000-0xffffffff]
    Jan 26 12:20:45 further kernel: NET: Registered protocol family 2
    Jan 26 12:20:45 further kernel: TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    Jan 26 12:20:45 further kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Jan 26 12:20:45 further kernel: TCP: Hash tables configured (established 524288 bind 65536)
    Jan 26 12:20:45 further kernel: TCP: reno registered
    Jan 26 12:20:45 further kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Jan 26 12:20:45 further kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Jan 26 12:20:45 further kernel: NET: Registered protocol family 1
    Jan 26 12:20:45 further kernel: pci 0000:00:01.0: Boot video device
    Jan 26 12:20:45 further kernel: PCI: CLS 64 bytes, default 64
    Jan 26 12:20:45 further kernel: Unpacking initramfs...
    Jan 26 12:20:45 further kernel: Freeing initrd memory: 2980k freed
    Jan 26 12:20:45 further kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Jan 26 12:20:45 further kernel: software IO TLB [mem 0x8b6c0000-0x8f6bffff] (64MB) mapped at [ffff88008b6c0000-ffff88008f6bffff]
    Jan 26 12:20:45 further kernel: LVT offset 0 assigned for vector 0x400
    Jan 26 12:20:45 further kernel: perf: AMD IBS detected (0x000000ff)
    Jan 26 12:20:45 further kernel: audit: initializing netlink socket (disabled)
    Jan 26 12:20:45 further kernel: type=2000 audit(1359202838.726:1): initialized
    Jan 26 12:20:45 further kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Jan 26 12:20:45 further kernel: VFS: Disk quotas dquot_6.5.2
    Jan 26 12:20:45 further kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jan 26 12:20:45 further kernel: msgmni has been set to 6857
    Jan 26 12:20:45 further kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jan 26 12:20:45 further kernel: io scheduler noop registered
    Jan 26 12:20:45 further kernel: io scheduler deadline registered
    Jan 26 12:20:45 further kernel: io scheduler cfq registered (default)
    Jan 26 12:20:45 further kernel: GHES: HEST is not enabled!
    Jan 26 12:20:45 further kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jan 26 12:20:45 further kernel: Linux agpgart interface v0.103
    Jan 26 12:20:45 further kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Jan 26 12:20:45 further kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jan 26 12:20:45 further kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jan 26 12:20:45 further kernel: mousedev: PS/2 mouse device common for all mice
    Jan 26 12:20:45 further kernel: rtc_cmos 00:04: RTC can wake from S4
    Jan 26 12:20:45 further kernel: rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    Jan 26 12:20:45 further kernel: rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    Jan 26 12:20:45 further kernel: cpuidle: using governor ladder
    Jan 26 12:20:45 further kernel: cpuidle: using governor menu
    Jan 26 12:20:45 further kernel: drop_monitor: Initializing network drop monitor service
    Jan 26 12:20:45 further kernel: TCP: cubic registered
    Jan 26 12:20:45 further kernel: NET: Registered protocol family 10
    Jan 26 12:20:45 further kernel: NET: Registered protocol family 17
    Jan 26 12:20:45 further kernel: Key type dns_resolver registered
    Jan 26 12:20:45 further kernel: PM: Hibernation image not present or could not be loaded.
    Jan 26 12:20:45 further kernel: registered taskstats version 1
    Jan 26 12:20:45 further kernel: rtc_cmos 00:04: setting system clock to 2013-01-26 12:20:39 UTC (1359202839)
    Jan 26 12:20:45 further kernel: Freeing unused kernel memory: 808k freed
    Jan 26 12:20:45 further kernel: Write protecting the kernel read-only data: 8192k
    Jan 26 12:20:45 further kernel: Freeing unused kernel memory: 1300k freed
    Jan 26 12:20:45 further kernel: Freeing unused kernel memory: 492k freed
    Jan 26 12:20:45 further kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jan 26 12:20:45 further systemd-udevd[46]: starting version 197
    Jan 26 12:20:45 further kernel: ACPI: bus type usb registered
    Jan 26 12:20:45 further kernel: usbcore: registered new interface driver usbfs
    Jan 26 12:20:45 further kernel: usbcore: registered new interface driver hub
    Jan 26 12:20:45 further kernel: SCSI subsystem initialized
    Jan 26 12:20:45 further kernel: usbcore: registered new device driver usb
    Jan 26 12:20:45 further kernel: sdhci: Secure Digital Host Controller Interface driver
    Jan 26 12:20:45 further kernel: sdhci: Copyright(c) Pierre Ossman
    Jan 26 12:20:45 further kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jan 26 12:20:45 further kernel: ehci_hcd 0000:00:12.2: EHCI Host Controller
    Jan 26 12:20:45 further kernel: ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    Jan 26 12:20:45 further kernel: QUIRK: Enable AMD PLL fix
    Jan 26 12:20:45 further kernel: ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Jan 26 12:20:45 further kernel: ehci_hcd 0000:00:12.2: debug port 1
    Jan 26 12:20:45 further kernel: ehci_hcd 0000:00:12.2: irq 17, io mem 0xfeb4b000
    Jan 26 12:20:45 further kernel: ACPI: bus type scsi registered
    Jan 26 12:20:45 further kernel: libata version 3.00 loaded.
    Jan 26 12:20:45 further kernel: ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    Jan 26 12:20:45 further kernel: hub 1-0:1.0: USB hub found
    Jan 26 12:20:45 further kernel: hub 1-0:1.0: 5 ports detected
    Jan 26 12:20:45 further kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Jan 26 12:20:45 further kernel: ohci_hcd 0000:00:12.0: OHCI Host Controller
    Jan 26 12:20:45 further kernel: ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 2
    Jan 26 12:20:45 further kernel: ohci_hcd 0000:00:12.0: irq 18, io mem 0xfeb4c000
    Jan 26 12:20:45 further kernel: hub 2-0:1.0: USB hub found
    Jan 26 12:20:45 further kernel: hub 2-0:1.0: 5 ports detected
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: xHCI Host Controller
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 3
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: irq 18, io mem 0xfeb48000
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: irq 40 for MSI/MSI-X
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: irq 41 for MSI/MSI-X
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: irq 42 for MSI/MSI-X
    Jan 26 12:20:45 further kernel: xHCI xhci_add_endpoint called for root hub
    Jan 26 12:20:45 further kernel: xHCI xhci_check_bandwidth called for root hub
    Jan 26 12:20:45 further kernel: hub 3-0:1.0: USB hub found
    Jan 26 12:20:45 further kernel: hub 3-0:1.0: 2 ports detected
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: xHCI Host Controller
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 4
    Jan 26 12:20:45 further kernel: xHCI xhci_add_endpoint called for root hub
    Jan 26 12:20:45 further kernel: xHCI xhci_check_bandwidth called for root hub
    Jan 26 12:20:45 further kernel: hub 4-0:1.0: USB hub found
    Jan 26 12:20:45 further kernel: hub 4-0:1.0: 2 ports detected
    Jan 26 12:20:45 further kernel: sdhci-pci 0000:00:14.7: SDHCI controller found [1022:7806] (rev 0)
    Jan 26 12:20:45 further kernel: Registered led device: mmc0::
    Jan 26 12:20:45 further kernel: mmc0: SDHCI controller on PCI [0000:00:14.7] using ADMA
    Jan 26 12:20:45 further kernel: ahci 0000:00:11.0: version 3.0
    Jan 26 12:20:45 further kernel: ahci 0000:00:11.0: irq 43 for MSI/MSI-X
    Jan 26 12:20:45 further kernel: ahci 0000:00:11.0: AHCI 0001.0300 32 slots 3 ports 3 Gbps 0x7 impl SATA mode
    Jan 26 12:20:45 further kernel: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs
    Jan 26 12:20:45 further kernel: scsi0 : ahci
    Jan 26 12:20:45 further kernel: scsi1 : ahci
    Jan 26 12:20:45 further kernel: scsi2 : ahci
    Jan 26 12:20:45 further kernel: ata1: SATA max UDMA/133 abar m2048@0xfeb4d000 port 0xfeb4d100 irq 43
    Jan 26 12:20:45 further kernel: ata2: SATA max UDMA/133 abar m2048@0xfeb4d000 port 0xfeb4d180 irq 43
    Jan 26 12:20:45 further kernel: ata3: SATA max UDMA/133 abar m2048@0xfeb4d000 port 0xfeb4d200 irq 43
    Jan 26 12:20:45 further kernel: usb 1-3: new high-speed USB device number 2 using ehci_hcd
    Jan 26 12:20:45 further kernel: ata3: SATA link down (SStatus 0 SControl 300)
    Jan 26 12:20:45 further kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jan 26 12:20:45 further kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jan 26 12:20:45 further kernel: ata2.00: ATAPI: MATSHITADVD-RAM UJ8B0, 1.00, max UDMA/100
    Jan 26 12:20:45 further kernel: ata1.00: ATA-8: WDC WD5000BPVT-80HXZT3, 01.01A01, max UDMA/133
    Jan 26 12:20:45 further kernel: ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Jan 26 12:20:45 further kernel: ata1.00: failed to get Identify Device Data, Emask 0x1
    Jan 26 12:20:45 further kernel: ata2.00: configured for UDMA/100
    Jan 26 12:20:45 further kernel: ata1.00: failed to get Identify Device Data, Emask 0x1
    Jan 26 12:20:45 further kernel: ata1.00: configured for UDMA/133
    Jan 26 12:20:45 further kernel: scsi 0:0:0:0: Direct-Access ATA WDC WD5000BPVT-8 01.0 PQ: 0 ANSI: 5
    Jan 26 12:20:45 further kernel: scsi 1:0:0:0: CD-ROM MATSHITA DVD-RAM UJ8B0 1.00 PQ: 0 ANSI: 5
    Jan 26 12:20:45 further kernel: sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    Jan 26 12:20:45 further kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
    Jan 26 12:20:45 further kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jan 26 12:20:45 further kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jan 26 12:20:45 further kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jan 26 12:20:45 further kernel: sda: sda1 sda2 sda3 < sda5 sda6 sda7 sda8 >
    Jan 26 12:20:45 further kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jan 26 12:20:45 further kernel: sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Jan 26 12:20:45 further kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Jan 26 12:20:45 further kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Jan 26 12:20:45 further kernel: usb 1-5: new high-speed USB device number 4 using ehci_hcd
    Jan 26 12:20:45 further kernel: tsc: Refined TSC clocksource calibration: 1896.550 MHz
    Jan 26 12:20:45 further kernel: Switching to clocksource tsc
    Jan 26 12:20:45 further kernel: Initializing USB Mass Storage driver...
    Jan 26 12:20:45 further kernel: usbcore: registered new interface driver usb-storage
    Jan 26 12:20:45 further kernel: USB Mass Storage support registered.
    Jan 26 12:20:45 further kernel: usb 2-4: new full-speed USB device number 2 using ohci_hcd
    Jan 26 12:20:45 further kernel: EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    Jan 26 12:20:45 further systemd[1]: RTC configured in localtime, applying delta of 60 minutes to system time.
    Jan 26 12:20:45 further systemd[1]: systemd 197 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Jan 26 12:20:45 further systemd[1]: Set hostname to <further>.
    Jan 26 12:20:45 further systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    Jan 26 12:20:45 further systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Jan 26 12:20:45 further systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Jan 26 12:20:45 further systemd[1]: Starting Remote File Systems.
    Jan 26 12:20:45 further systemd[1]: Reached target Remote File Systems.
    Jan 26 12:20:45 further systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Jan 26 12:20:45 further systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Jan 26 12:20:45 further systemd[1]: Starting Delayed Shutdown Socket.
    Jan 26 12:20:45 further systemd[1]: Listening on Delayed Shutdown Socket.
    Jan 26 12:20:45 further systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Jan 26 12:20:45 further systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Jan 26 12:20:45 further systemd[1]: Starting udev Kernel Socket.
    Jan 26 12:20:45 further systemd[1]: Listening on udev Kernel Socket.
    Jan 26 12:20:45 further systemd[1]: Starting udev Control Socket.
    Jan 26 12:20:45 further systemd[1]: Listening on udev Control Socket.
    Jan 26 12:20:45 further systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Jan 26 12:20:45 further systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Jan 26 12:20:45 further systemd[1]: Starting Encrypted Volumes.
    Jan 26 12:20:45 further systemd[1]: Reached target Encrypted Volumes.
    Jan 26 12:20:45 further systemd[1]: Expecting device dev-disk-by\x2duuid-f71c0eee\x2da4ec\x2d43a0\x2d89c7\x2d51f13a79169a.device...
    Jan 26 12:20:45 further systemd[1]: Expecting device dev-disk-by\x2duuid-26f87130\x2d99b7\x2d4a00\x2d997c\x2de177c335f448.device...
    Jan 26 12:20:45 further systemd[1]: Expecting device dev-disk-by\x2duuid-6c6af8e9\x2dbd25\x2d463b\x2dae87\x2dc894d7b092b5.device...
    Jan 26 12:20:45 further systemd[1]: Starting Journal Socket.
    Jan 26 12:20:45 further systemd[1]: Listening on Journal Socket.
    Jan 26 12:20:45 further systemd[1]: Started File System Check on Root Device.
    Jan 26 12:20:45 further systemd[1]: Starting Remount Root and Kernel File Systems...
    Jan 26 12:20:45 further systemd[1]: Starting Load Kernel Modules...
    Jan 26 12:20:45 further systemd[1]: Mounting Huge Pages File System...
    Jan 26 12:20:45 further systemd[1]: Starting udev Coldplug all Devices...
    Jan 26 12:20:45 further systemd[1]: Started Set Up Additional Binary Formats.
    Jan 26 12:20:45 further systemd[1]: Starting Setup Virtual Console...
    Jan 26 12:20:45 further systemd[1]: Mounting POSIX Message Queue File System...
    Jan 26 12:20:45 further systemd[1]: Starting udev Kernel Device Manager...
    Jan 26 12:20:45 further systemd[1]: Starting Apply Kernel Variables...
    Jan 26 12:20:45 further systemd[1]: Mounting Debug File System...
    Jan 26 12:20:45 further systemd[1]: Starting Journal Service...
    Jan 26 12:20:45 further systemd[1]: Started Journal Service.
    Jan 26 12:20:45 further systemd-udevd[142]: starting version 197
    Jan 26 12:20:45 further systemd-journal[145]: Journal started
    Jan 26 12:20:45 further systemd[1]: Started Apply Kernel Variables.
    Jan 26 12:20:45 further systemd[1]: Mounted Debug File System.
    Jan 26 12:20:45 further systemd[1]: Mounted Huge Pages File System.
    Jan 26 12:20:45 further systemd[1]: Started udev Coldplug all Devices.
    Jan 26 12:20:45 further systemd[1]: Mounted POSIX Message Queue File System.
    Jan 26 12:20:45 further systemd[1]: Started udev Kernel Device Manager.
    Jan 26 12:20:45 further kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
    Jan 26 12:20:45 further kernel: ACPI: Power Button [PWRB]
    Jan 26 12:20:45 further kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
    Jan 26 12:20:45 further kernel: ACPI: Sleep Button [SLPB]
    Jan 26 12:20:45 further kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
    Jan 26 12:20:45 further kernel: ACPI: Lid Switch [LID]
    Jan 26 12:20:45 further kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Jan 26 12:20:45 further kernel: ACPI: Power Button [PWRF]
    Jan 26 12:20:45 further kernel: AMD IOMMUv2 driver by Joerg Roedel <[email protected]>
    Jan 26 12:20:45 further kernel: AMD IOMMUv2 functionality not available on this system
    Jan 26 12:20:45 further kernel: EXT4-fs (sda6): re-mounted. Opts: barrier=0
    Jan 26 12:20:45 further systemd[1]: Started Remount Root and Kernel File Systems.
    Jan 26 12:20:45 further systemd[1]: Starting Local File Systems (Pre).
    Jan 26 12:20:45 further systemd[1]: Reached target Local File Systems (Pre).
    Jan 26 12:20:45 further systemd[1]: Mounting /tmp...
    Jan 26 12:20:45 further systemd[1]: Starting Load Random Seed...
    Jan 26 12:20:45 further systemd[1]: Mounted /tmp.
    Jan 26 12:20:45 further kernel: fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    Jan 26 12:20:45 further kernel: Disabling lock debugging due to kernel taint
    Jan 26 12:20:45 further systemd-modules-load[136]: Inserted module 'fglrx'
    Jan 26 12:20:45 further kernel: <6>[fglrx] Maximum main memory to use for locked dma buffers: 3278 MBytes.
    Jan 26 12:20:45 further kernel: <6>[fglrx] vendor: 1002 device: 9648 count: 1
    Jan 26 12:20:45 further kernel: <6>[fglrx] vendor: 1002 device: 6741 count: 2
    Jan 26 12:20:45 further kernel: <6>[fglrx] ioport: bar 1, base 0xf000, size: 0x100
    Jan 26 12:20:45 further kernel: <6>[fglrx] ioport: bar 4, base 0xe000, size: 0x100
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: enabling device (0000 -> 0003)
    Jan 26 12:20:45 further kernel: <6>[fglrx] Kernel PAT support is enabled
    Jan 26 12:20:45 further kernel: <6>[fglrx] module loaded - fglrx 9.1.11 [Dec 19 2012] with 2 minors
    Jan 26 12:20:45 further systemd[1]: Started Load Kernel Modules.
    Jan 26 12:20:45 further systemd[1]: Mounted FUSE Control File System.
    Jan 26 12:20:45 further systemd[1]: Mounted Configuration File System.
    Jan 26 12:20:45 further systemd[1]: Started Load Random Seed.
    Jan 26 12:20:45 further

    During boot there is a problem with your fglrx driver. It tries to use MSI interrupts instead of old pin-based method, but it is allready enabled and it warns you http://lxr.linux.no/linux+v3.7.4/drivers/pci/msi.c#L811 in line 828
    And during shutdown there is a problem with pci_msi_shutdown. Maybe this problems related with each other?
    try to disable globaly msi by adding nomsi to kernel options. If this help try to disable msi just for catalyst after boot by echo 0 in /sys/bus/pci/devices/[faulty device]/msi_bus
    try to raise debug level to see message dev_dbg(dev, "shutdown\n"); here http://lxr.linux.no/linux+v3.7.4/drivers/base/core.c#L , open an entry in bugzilla
    try do upgrade or downgrade catalyst if possible
    switch to open source driver

  • Lost everything on my 3G, after I tried to sync from a new computer

    A while back my laptop crashed, so I am now using my dads laptop.
    I downloaded iTunes 10, then plugged in my phone. It started a backup but froze. I updaated the software on the iPhone to iPhone1,24.1_8B117Restore
    I started to sync some new podcast and apps that I found, and releazed that all my data on the iphone was gone, even before I started the sync.
    I tried to restore with a backup, but it does not work.
    I tried to restore with "RESTORE" because my iPhone no longer appears in iTunes, but it did not work either.
    I also uninstalled iTunes and reinstalled, I shut down the iPhone and started it again, I shut down the computer, and nothing, is my data somewhere in my dads computer? Can I restore any info? I tried to restore the contacts, but it is not working either. And now I can no longer access my iPhone in iTunes, my computer only recognizes it as a camera.
    Here is a list of the actions I took:
    2010-09-29 16:36:32.131 [5548:13f8]: restore library built Aug 6 2010 at 11:14:46
    2010-09-29 16:36:32.131 [5548:13f8]: iTunes: iTunes 10.0.1.22
    2010-09-29 16:36:32.627 [5548:13f8]: iTunes: Current software version: 7E18
    2010-09-29 16:36:32.627 [5548:13f8]: iTunes: Software payload version: 8B117
    2010-09-29 16:36:49.977 [5548:15e4]: iTunes: Specifying UOI boot image
    2010-09-29 16:36:50.069 [5548:15e4]: requested restore behavior: Erase
    2010-09-29 16:36:50.080 [5548:15e4]: amai: AMAuthInstallPlatformCreateDataFromFileURL: can't resolve file
    2010-09-29 16:36:50.083 [5548:15e4]: amai: AMAuthInstallDebugWriteObject: debug object written: C:\Users\KATHER~1\AppData\Local\Temp\Per3B44.tmp\amai\debug\tss-request.plist
    2010-09-29 16:36:51.041 [5548:15e4]: amai: AMAuthInstallRequestSendSync: received tss response (server version: 0.6.31-b2)
    2010-09-29 16:36:51.043 [5548:15e4]: amai: AMAuthInstallDebugWriteObject: debug object written: C:\Users\KATHER~1\AppData\Local\Temp\Per3B44.tmp\amai\debug\tss-response.plist
    2010-09-29 16:36:51.645 [5548:13f8]: iTunes: Entering recovery mode, device 06707588
    2010-09-29 16:37:22.115 [5548:13f8]: iTunes: received kAMDeviceDetached action, device 06707588
    2010-09-29 16:37:50.967 [5548:15ec]: WinAMRestore::OnInterfaceArrival: \\?\USB#VID05AC&PID1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#d02e12d9
    2010-09-29 16:37:50.967 [5548:15ec]: WinAMRestore::AddAppleDeviceToDeviceList: \\?\USB#VID05AC&PID1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#d02e12d9
    2010-09-29 16:37:51.279 [5548:15ec]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2010-09-29 16:37:51.302 [5548:15ec]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2010-09-29 16:37:51.311 [5548:15ec]: AppleDevice::SetNotification: CONNECT, interface type: 1, id: \\?\USB#VID05AC&PID1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#d02e12d9, inst: 0xfb970c8
    2010-09-29 16:37:51.312 [5548:15ec]: WinAMRestore::AddAppleDeviceToDeviceList, empty list, new device
    2010-09-29 16:37:51.312 [5548:15ec]: WinAMRestore::ProcessDevNodesChanges: device: 0x0fb970c8, notify: 1, connected: 0
    2010-09-29 16:37:51.312 [5548:15ec]: AppleDevice::NotifyConnect: Device type: 2, Interfaces total: 2, arrived: 1
    2010-09-29 16:37:51.312 [5548:15ec]: AppleDevice::NotifyConnect: Interfaces total != arrived, no notification
    2010-09-29 16:37:51.427 [5548:15ec]: WinAMRestore::OnInterfaceArrival: \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#d02e12d9
    2010-09-29 16:37:51.427 [5548:15ec]: WinAMRestore::AddAppleDeviceToDeviceList: \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#d02e12d9
    2010-09-29 16:37:51.459 [5548:15ec]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2010-09-29 16:37:51.484 [5548:15ec]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2010-09-29 16:37:51.492 [5548:15ec]: WinAMRestore::AddAppleDeviceToDeviceList, device already connected, new interface
    2010-09-29 16:37:51.492 [5548:15ec]: AppleDevice::SetDeviceID: AMDINTERFACEDFU \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#d02e12d9, inst: 0xfb970c8
    2010-09-29 16:37:51.492 [5548:15ec]: AppleDevice::SetNotification: CONNECT, interface type: 1, id: \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#d02e12d9, inst: 0xfb970c8
    2010-09-29 16:37:51.492 [5548:15ec]: WinAMRestore::ProcessDevNodesChanges: device: 0x0fb970c8, notify: 1, connected: 1
    2010-09-29 16:37:51.492 [5548:15ec]: AppleDevice::NotifyConnect: Device type: 2, Interfaces total: 2, arrived: 2
    2010-09-29 16:37:51.492 [5548:15ec]: AppleDevice::NotifyConnect: IBOOT, IBOOT \\?\USB#VID05AC&PID1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#d02e12d9, inst: 0xfb970c8
    2010-09-29 16:37:51.492 [5548:15ec]: IBOOT, DFU \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#d02e12d9, inst: 0xfb970c8
    2010-09-29 16:37:51.494 [5548:13f8]: iTunes: SCEP 5
    2010-09-29 16:37:51.595 [5548:1228]: iBoot build-version = iBoot-636.66.33
    2010-09-29 16:37:51.596 [5548:1228]: iBoot build-style = RELEASE
    2010-09-29 16:37:51.597 [5548:1228]: AMDeviceIoControl: GetOverlappedResult failed
    2010-09-29 16:37:51.597 [5548:1228]: AMDeviceIoControl: pipe stall
    2010-09-29 16:37:51.597 [5548:1228]: USBControlTransfer: error 31, usbd status c0000004
    2010-09-29 16:37:51.597 [5548:1228]: command device request for 'getenv radio-error' failed: 2008
    2010-09-29 16:37:51.597 [5548:1228]: radio-error not set
    2010-09-29 16:37:51.597 [5548:1228]: <Recovery Mode Device 1037B520>: operation 44 progress -1
    2010-09-29 16:37:51.597 [5548:1228]: requested restore behavior: Erase
    2010-09-29 16:37:51.604 [5548:1228]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    2010-09-29 16:37:51.627 [5548:1228]: unable to open device_map.txt: No such file or directory
    2010-09-29 16:37:51.628 [5548:1228]: <Recovery Mode Device 1037B520>: production fused device
    2010-09-29 16:37:51.629 [5548:1228]: interface has 1 endpoints, file pipe = 1
    2010-09-29 16:37:51.629 [5548:1228]: <Recovery Mode Device 1037B520>: operation 4 progress -1
    2010-09-29 16:37:51.793 [5548:1228]: bootstrapping restore with iBEC
    2010-09-29 16:37:51.799 [5548:1228]: <Recovery Mode Device 1037B520>: operation 31 progress -1
    2010-09-29 16:37:52.799 [5548:1228]: <Recovery Mode Device 1037B520>: Recovery mode succeeded
    2010-09-29 16:37:53.085 [5548:15ec]: WinAMRestore::OnInterfaceRemoval: \\?\USB#VID05AC&PID1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#d02e12d9
    2010-09-29 16:37:53.086 [5548:15ec]: WinAMRestore::ProcessDevNodesChanges: device: 0x0fb970c8, notify: 2, connected: 1
    2010-09-29 16:37:53.086 [5548:15ec]: AppleDevice::NotifyDisconnect: IBOOT, IBOOT \\?\USB#VID05AC&PID1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#d02e12d9, inst: 0xfb970c8
    2010-09-29 16:37:53.086 [5548:15ec]: IBOOT, DFU \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#d02e12d9, inst: 0xfb970c8
    2010-09-29 16:37:53.090 [5548:15ec]: _AMRecoveryModeDeviceFinalize: 1037B520
    2010-09-29 16:37:53.102 [5548:15ec]: WinAMRestore::OnInterfaceRemoval: \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#d02e12d9
    2010-09-29 16:37:53.103 [5548:15ec]: WinAMRestore::ProcessDevNodesChanges: device: 0x0fb970c8, notify: 2, connected: 0
    2010-09-29 16:38:05.932 [5548:15ec]: WinAMRestore::OnInterfaceArrival: \\?\USB#VID05AC&PID1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#19a8489a
    2010-09-29 16:38:05.932 [5548:15ec]: WinAMRestore::AddAppleDeviceToDeviceList: \\?\USB#VID05AC&PID1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#19a8489a
    2010-09-29 16:38:05.962 [5548:15ec]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2010-09-29 16:38:05.986 [5548:15ec]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2010-09-29 16:38:05.995 [5548:15ec]: AppleDevice::SetNotification: CONNECT, interface type: 1, id: \\?\USB#VID05AC&PID1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#19a8489a, inst: 0xfb97208
    2010-09-29 16:38:05.995 [5548:15ec]: WinAMRestore::AddAppleDeviceToDeviceList, new device
    2010-09-29 16:38:05.995 [5548:15ec]: WinAMRestore::ProcessDevNodesChanges: device: 0x0fb970c8, notify: 2, connected: 0
    2010-09-29 16:38:05.995 [5548:15ec]: WinAMRestore::ProcessDevNodesChanges: device: 0x0fb97208, notify: 1, connected: 0
    2010-09-29 16:38:05.995 [5548:15ec]: AppleDevice::NotifyConnect: Device type: 2, Interfaces total: 2, arrived: 1
    2010-09-29 16:38:05.995 [5548:15ec]: AppleDevice::NotifyConnect: Interfaces total != arrived, no notification
    2010-09-29 16:38:06.061 [5548:15ec]: WinAMRestore::OnInterfaceArrival: \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#19a8489a
    2010-09-29 16:38:06.061 [5548:15ec]: WinAMRestore::AddAppleDeviceToDeviceList: \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#19a8489a
    2010-09-29 16:38:06.096 [5548:15ec]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2010-09-29 16:38:06.117 [5548:15ec]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2010-09-29 16:38:06.126 [5548:15ec]: WinAMRestore::AddAppleDeviceToDeviceList, device already connected, new interface
    2010-09-29 16:38:06.126 [5548:15ec]: AppleDevice::SetDeviceID: AMDINTERFACEDFU \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#19a8489a, inst: 0xfb97208
    2010-09-29 16:38:06.126 [5548:15ec]: AppleDevice::SetNotification: CONNECT, interface type: 1, id: \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#19a8489a, inst: 0xfb97208
    2010-09-29 16:38:06.126 [5548:15ec]: WinAMRestore::ProcessDevNodesChanges: device: 0x0fb970c8, notify: 2, connected: 0
    2010-09-29 16:38:06.126 [5548:15ec]: WinAMRestore::ProcessDevNodesChanges: device: 0x0fb97208, notify: 1, connected: 1
    2010-09-29 16:38:06.126 [5548:15ec]: AppleDevice::NotifyConnect: Device type: 2, Interfaces total: 2, arrived: 2
    2010-09-29 16:38:06.126 [5548:15ec]: AppleDevice::NotifyConnect: IBOOT, IBOOT \\?\USB#VID05AC&PID1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#19a8489a, inst: 0xfb97208
    2010-09-29 16:38:06.126 [5548:15ec]: IBOOT, DFU \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#19a8489a, inst: 0xfb97208
    2010-09-29 16:38:06.126 [5548:13f8]: iTunes: SCEP 5
    2010-09-29 16:38:06.270 [5548:1478]: iBoot build-version = iBoot-931.18.27
    2010-09-29 16:38:06.272 [5548:1478]: iBoot build-style = RELEASE
    2010-09-29 16:38:06.273 [5548:1478]: AMDeviceIoControl: GetOverlappedResult failed
    2010-09-29 16:38:06.273 [5548:1478]: AMDeviceIoControl: pipe stall
    2010-09-29 16:38:06.273 [5548:1478]: USBControlTransfer: error 31, usbd status c0000004
    2010-09-29 16:38:06.273 [5548:1478]: command device request for 'getenv radio-error' failed: 2008
    2010-09-29 16:38:06.273 [5548:1478]: radio-error not set
    2010-09-29 16:38:06.273 [5548:1478]: <Recovery Mode Device 1037B520>: operation 44 progress -1
    2010-09-29 16:38:06.273 [5548:1478]: requested restore behavior: Erase
    2010-09-29 16:38:06.324 [5548:1478]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    2010-09-29 16:38:06.337 [5548:1478]: unable to open device_map.txt: No such file or directory
    2010-09-29 16:38:06.338 [5548:1478]: <Recovery Mode Device 1037B520>: production fused device
    2010-09-29 16:38:06.339 [5548:1478]: interface has 1 endpoints, file pipe = 1
    2010-09-29 16:38:06.339 [5548:1478]: <Recovery Mode Device 1037B520>: operation 4 progress -1
    2010-09-29 16:38:06.585 [5548:1478]: <Recovery Mode Device 1037B520>: operation 42 progress -1
    2010-09-29 16:38:07.639 [5548:1478]: <Recovery Mode Device 1037B520>: operation 5 progress -1
    2010-09-29 16:38:08.300 [5548:1478]: AMDeviceIoControl: GetOverlappedResult failed
    2010-09-29 16:38:08.300 [5548:1478]: AMDeviceIoControl: pipe stall
    2010-09-29 16:38:08.300 [5548:1478]: USBControlTransfer: error 31, usbd status c0000004
    2010-09-29 16:38:08.300 [5548:1478]: command device request for 'getenv ramdisk-delay' failed: 2008
    2010-09-29 16:38:10.558 [5548:1478]: <Recovery Mode Device 1037B520>: operation 6 progress -1
    2010-09-29 16:38:11.573 [5548:1478]: <Recovery Mode Device 1037B520>: operation 7 progress -1
    2010-09-29 16:38:11.808 [5548:1478]: <Recovery Mode Device 1037B520>: operation 8 progress -1
    2010-09-29 16:38:11.809 [5548:1478]: <Recovery Mode Device 1037B520>: operation 9 progress -1
    2010-09-29 16:38:11.809 [5548:1478]: <Recovery Mode Device 1037B520>: Recovery mode succeeded
    2010-09-29 16:38:13.786 [5548:15ec]: WinAMRestore::OnInterfaceRemoval: \\?\USB#VID05AC&PID1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#19a8489a
    2010-09-29 16:38:13.788 [5548:15ec]: WinAMRestore::ProcessDevNodesChanges: device: 0x0fb970c8, notify: 2, connected: 0
    2010-09-29 16:38:13.788 [5548:15ec]: WinAMRestore::ProcessDevNodesChanges: device: 0x0fb97208, notify: 2, connected: 1
    2010-09-29 16:38:13.788 [5548:15ec]: AppleDevice::NotifyDisconnect: IBOOT, IBOOT \\?\USB#VID05AC&PID1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#19a8489a, inst: 0xfb97208
    2010-09-29 16:38:13.788 [5548:15ec]: IBOOT, DFU \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#19a8489a, inst: 0xfb97208
    2010-09-29 16:38:13.790 [5548:15ec]: _AMRecoveryModeDeviceFinalize: 1037B520
    2010-09-29 16:38:13.805 [5548:15ec]: WinAMRestore::OnInterfaceRemoval: \\?\USB#VID05AC&PID1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#19a8489a
    2010-09-29 16:38:13.807 [5548:15ec]: WinAMRestore::ProcessDevNodesChanges: device: 0x0fb970c8, notify: 2, connected: 0
    2010-09-29 16:38:13.807 [5548:15ec]: WinAMRestore::ProcessDevNodesChanges: device: 0x0fb97208, notify: 2, connected: 0
    2010-09-29 16:38:19.521 [5548:13f8]: iTunes: received kAMDeviceAttached action, device 102C26D0, AFC error 0XE8000028
    2010-09-29 16:38:19.521 [5548:13f8]: iTunes: Restore-mode device appeared, device 102C26D0
    2010-09-29 16:38:19.522 [5548:13f8]: iTunes: Creating restore mode device with usbMuxDeviceID 0X2
    2010-09-29 16:38:19.555 [5548:13f8]: <Restore Device 068A1358>: operation 3 progress -1
    2010-09-29 16:38:19.560 [5548:13f8]: <Restore Device 068A1358>: operation 4 progress -1
    2010-09-29 16:38:19.573 [5548:13f8]: Supports value queries: 1
    2010-09-29 16:38:19.588 [5548:9b4]: <Restore Device 068A1358>: operation 44 progress -1
    2010-09-29 16:38:19.588 [5548:9b4]: requested restore behavior: Erase
    2010-09-29 16:38:19.616 [5548:9b4]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    2010-09-29 16:38:19.622 [5548:9b4]: device did not return saved USB log
    2010-09-29 16:38:19.622 [5548:9b4]: device did not return saved panic log
    2010-09-29 16:38:19.639 [5548:9b4]: connected to service com.apple.mobile.restored
    2010-09-29 16:38:19.639 [5548:9b4]: using protocol version 12
    2010-09-29 16:38:19.650 [5548:9b4]: unable to open device_map.txt: No such file or directory
    2010-09-29 16:38:19.651 [5548:9b4]: board config = n82ap
    2010-09-29 16:38:19.685 [5548:9b4]: <Restore Device 068A1358>: operation 28 progress -1
    2010-09-29 16:38:33.901 [5548:9b4]: <Restore Device 068A1358>: operation 11 progress -1
    2010-09-29 16:38:35.114 [5548:9b4]: <Restore Device 068A1358>: operation 12 progress -1
    2010-09-29 16:38:44.500 [5548:9b4]: <Restore Device 068A1358>: operation 12 progress -1
    2010-09-29 16:38:55.055 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 0
    2010-09-29 16:39:05.099 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 1
    2010-09-29 16:39:05.099 [5548:9b4]: ASR progress: Initialized communication with client
    2010-09-29 16:39:09.803 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 5
    2010-09-29 16:39:09.803 [5548:9b4]: ASR progress: Starting to send payload
    2010-09-29 16:39:10.484 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 6
    2010-09-29 16:39:10.484 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:11.961 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 7
    2010-09-29 16:39:11.961 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:13.544 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 8
    2010-09-29 16:39:13.544 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:17.185 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 9
    2010-09-29 16:39:17.185 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:18.159 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 10
    2010-09-29 16:39:18.159 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:19.626 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 11
    2010-09-29 16:39:19.626 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:20.996 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 12
    2010-09-29 16:39:20.996 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:22.803 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 13
    2010-09-29 16:39:22.803 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:24.372 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 14
    2010-09-29 16:39:24.372 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:26.214 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 15
    2010-09-29 16:39:26.214 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:27.687 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 16
    2010-09-29 16:39:27.687 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:29.639 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 17
    2010-09-29 16:39:29.639 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:31.075 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 18
    2010-09-29 16:39:31.076 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:33.556 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 19
    2010-09-29 16:39:33.556 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:35.323 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 20
    2010-09-29 16:39:35.323 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:37.562 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 21
    2010-09-29 16:39:37.563 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:39.164 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 22
    2010-09-29 16:39:39.164 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:40.949 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 23
    2010-09-29 16:39:40.949 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:42.287 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 24
    2010-09-29 16:39:42.287 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:44.560 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 25
    2010-09-29 16:39:44.560 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:48.792 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 26
    2010-09-29 16:39:48.792 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:51.544 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 27
    2010-09-29 16:39:51.544 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:53.549 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 28
    2010-09-29 16:39:53.549 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:55.651 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 29
    2010-09-29 16:39:55.651 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:57.446 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 30
    2010-09-29 16:39:57.446 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:39:59.329 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 31
    2010-09-29 16:39:59.329 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:01.144 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 32
    2010-09-29 16:40:01.144 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:03.169 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 33
    2010-09-29 16:40:03.169 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:04.805 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 34
    2010-09-29 16:40:04.805 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:07.160 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 35
    2010-09-29 16:40:07.160 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:08.916 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 36
    2010-09-29 16:40:08.916 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:10.922 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 37
    2010-09-29 16:40:10.923 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:12.632 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 38
    2010-09-29 16:40:12.632 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:14.885 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 39
    2010-09-29 16:40:14.885 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:16.411 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 40
    2010-09-29 16:40:16.411 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:18.385 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 41
    2010-09-29 16:40:18.385 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:20.335 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 42
    2010-09-29 16:40:20.335 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:21.908 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 43
    2010-09-29 16:40:21.908 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:23.776 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 44
    2010-09-29 16:40:23.776 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:25.674 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 45
    2010-09-29 16:40:25.674 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:26.916 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 46
    2010-09-29 16:40:26.916 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:28.389 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 47
    2010-09-29 16:40:28.389 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:29.381 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 48
    2010-09-29 16:40:29.381 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:30.416 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 49
    2010-09-29 16:40:30.416 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:32.242 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 50
    2010-09-29 16:40:32.242 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:33.957 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 51
    2010-09-29 16:40:33.957 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:35.511 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 52
    2010-09-29 16:40:35.511 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:37.519 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 53
    2010-09-29 16:40:37.519 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:39.248 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 54
    2010-09-29 16:40:39.248 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:40.923 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 55
    2010-09-29 16:40:40.923 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:42.585 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 56
    2010-09-29 16:40:42.585 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:44.381 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 57
    2010-09-29 16:40:44.381 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:46.117 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 58
    2010-09-29 16:40:46.117 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:47.940 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 59
    2010-09-29 16:40:47.940 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:49.752 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 60
    2010-09-29 16:40:49.752 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:51.192 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 61
    2010-09-29 16:40:51.192 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:52.732 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 62
    2010-09-29 16:40:52.732 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:54.795 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 63
    2010-09-29 16:40:54.795 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:56.263 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 64
    2010-09-29 16:40:56.263 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:57.970 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 65
    2010-09-29 16:40:57.970 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:40:59.994 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 66
    2010-09-29 16:40:59.994 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:01.828 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 67
    2010-09-29 16:41:01.828 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:03.155 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 68
    2010-09-29 16:41:03.155 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:05.064 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 69
    2010-09-29 16:41:05.064 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:06.791 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 70
    2010-09-29 16:41:06.791 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:08.440 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 71
    2010-09-29 16:41:08.441 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:10.492 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 72
    2010-09-29 16:41:10.492 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:12.449 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 73
    2010-09-29 16:41:12.449 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:14.749 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 74
    2010-09-29 16:41:14.749 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:16.761 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 75
    2010-09-29 16:41:16.761 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:18.565 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 76
    2010-09-29 16:41:18.565 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:20.732 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 77
    2010-09-29 16:41:20.732 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:22.939 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 78
    2010-09-29 16:41:22.939 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:24.939 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 79
    2010-09-29 16:41:24.939 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:26.899 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 80
    2010-09-29 16:41:26.900 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:33.416 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 81
    2010-09-29 16:41:33.416 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:33.904 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 82
    2010-09-29 16:41:33.904 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:35.750 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 83
    2010-09-29 16:41:35.750 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:38.660 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 84
    2010-09-29 16:41:38.661 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:40.216 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 85
    2010-09-29 16:41:40.216 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:41.769 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 86
    2010-09-29 16:41:41.769 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:43.600 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 87
    2010-09-29 16:41:43.600 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:45.427 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 88
    2010-09-29 16:41:45.427 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:47.456 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 89
    2010-09-29 16:41:47.456 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:49.336 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 90
    2010-09-29 16:41:49.337 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:51.741 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 91
    2010-09-29 16:41:51.741 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:53.599 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 92
    2010-09-29 16:41:53.599 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:55.174 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 93
    2010-09-29 16:41:55.174 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:57.216 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 94
    2010-09-29 16:41:57.217 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:41:59.050 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 95
    2010-09-29 16:41:59.050 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:42:00.651 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 96
    2010-09-29 16:42:00.651 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:42:03.520 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 97
    2010-09-29 16:42:03.520 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:42:05.392 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 98
    2010-09-29 16:42:05.392 [5548:9b4]: ASR progress: Sending payload
    2010-09-29 16:42:08.436 [5548:9b4]: <Restore Device 068A1358>: operation 13 progress 100
    2010-09-29 16:42:08.436 [5548:9b4]: ASR progress: Finished
    2010-09-29 16:42:12.259 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 2
    2010-09-29 16:42:13.845 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 4
    2010-09-29 16:42:15.439 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 6
    2010-09-29 16:42:17.031 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 8
    2010-09-29 16:42:18.621 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 10
    2010-09-29 16:42:20.213 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 12
    2010-09-29 16:42:21.805 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 14
    2010-09-29 16:42:23.400 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 16
    2010-09-29 16:42:24.988 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 18
    2010-09-29 16:42:26.581 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 20
    2010-09-29 16:42:28.172 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 22
    2010-09-29 16:42:29.765 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 24
    2010-09-29 16:42:31.357 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 26
    2010-09-29 16:42:32.684 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 28
    2010-09-29 16:42:34.276 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 30
    2010-09-29 16:42:35.869 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 32
    2010-09-29 16:42:37.461 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 34
    2010-09-29 16:42:39.051 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 36
    2010-09-29 16:42:40.643 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 38
    2010-09-29 16:42:42.235 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 40
    2010-09-29 16:42:43.826 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 42
    2010-09-29 16:42:45.421 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 44
    2010-09-29 16:42:47.011 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 46
    2010-09-29 16:42:48.603 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 48
    2010-09-29 16:42:50.195 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 50
    2010-09-29 16:42:51.786 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 52
    2010-09-29 16:42:53.115 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 54
    2010-09-29 16:42:54.705 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 56
    2010-09-29 16:42:56.297 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 58
    2010-09-29 16:42:57.888 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 60
    2010-09-29 16:42:59.483 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 62
    2010-09-29 16:43:01.072 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 64
    2010-09-29 16:43:02.664 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 66
    2010-09-29 16:43:04.257 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 68
    2010-09-29 16:43:05.850 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 70
    2010-09-29 16:43:07.444 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 72
    2010-09-29 16:43:09.033 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 74
    2010-09-29 16:43:10.625 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 76
    2010-09-29 16:43:12.218 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 78
    2010-09-29 16:43:13.546 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 80
    2010-09-29 16:43:15.136 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 82
    2010-09-29 16:43:16.727 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 84
    2010-09-29 16:43:18.319 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 86
    2010-09-29 16:43:19.912 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 88
    2010-09-29 16:43:21.506 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 90
    2010-09-29 16:43:23.096 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 92
    2010-09-29 16:43:24.688 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 94
    2010-09-29 16:43:26.281 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 96
    2010-09-29 16:43:27.874 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 98
    2010-09-29 16:43:29.230 [5548:9b4]: <Restore Device 068A1358>: operation 14 progress 100
    2010-09-29 16:43:29.407 [5548:9b4]: <Restore Device 068A1358>: operation 15 progress -1
    2010-09-29 16:43:46.753 [5548:9b4]: <Restore Device 068A1358>: operation 16 progress -1
    2010-09-29 16:43:46.905 [5548:9b4]: <Restore Device 068A1358>: operation 15 progress -1
    2010-09-29 16:43:51.222 [5548:9b4]: <Restore Device 068A1358>: operation 16 progress -1
    2010-09-29 16:43:51.379 [5548:9b4]: <Restore Device 068A1358>: operation 27 progress -1
    2010-09-29 16:43:53.495 [5548:9b4]: <Restore Device 068A1358>: operation 27 progress -1
    2010-09-29 16:43:53.604 [5548:9b4]: <Restore Device 068A1358>: operation 17 progress -1
    2010-09-29 16:43:55.028 [5548:9b4]: <Restore Device 068A1358>: operation 25 progress -1
    2010-09-29 16:43:55.939 [5548:9b4]: <Restore Device 068A1358>: operation 35 progress -1
    2010-09-29 16:43:56.353 [5548:9b4]: <Restore Device 068A1358>: operation 18 progress -1
    2010-09-29 16:45:07.316 [5548:9b4]: <Restore Device 068A1358>: operation 49 progress -1
    2010-09-29 16:45:08.101 [5548:9b4]: <Restore Device 068A1358>: operation 46 progress -1
    2010-09-29 16:45:08.114 [5548:9b4]: <Restore Device 068A1358>: operation 19 progress -1
    2010-09-29 16:48:22.427 [5548:9b4]: <Restore Device 068A1358>: operation 32 progress -1
    2010-09-29 16:48:22.608 [5548:9b4]: <Restore Device 068A1358>: operation 29 progress -1
    2010-09-29 16:48:22.633 [5548:9b4]: <Restore Device 068A1358>: operation 29 progress -1
    2010-09-29 16:48:22.647 [5548:9b4]: device returned *AMR error 0*2010-09-29 16:48:22.647 [5548:9b4]: <Restore Device 068A1358>: Restore succeeded

    Can I get my stuff back?

  • Problems syncing TV Shows to iPod Touch

    I am having issues syncing my TV shows that I've purchased on iTunes into my iPod Touch. I get a pop up window that says: The episode was not copied to the iPod because it cannot be played on this iPod.
    I just purchased this iPod yesterday, I've updated the software and everything else that I have synced has worked. What is going on?!?

    squarebubble wrote:
    all the options they list in "Other video sources" are grayed out...
    edit
    don't give up so easily
    first take a look @ iTunes. do you see this ?
    if so, check your iTunes media (or music folder). open the folder for the tv show in finder. do you see this ?
    if not, the SD versions may still be in the pipe. check your settings in iTunes > preferences > store. is +automatically check for available downloads+ enabled ?
    you can check any time you like from the store menu.
    if still no joy, access your +purchase history+ via (your) account in the iTMS and click on +report a problem+. report the problem.
    JGG
    edited by the Jolly Green Giant (where Green stands for environmentally friendly)

  • IPhone is lost while syncing with iTunes

    Hi there,
    for the longest time my iPhone hasnt been very friendly when syncing with iTunes.
    It often disconnects, the iPhone plays that "I'm connected" sound out of nothing, then a few seconds later iTunes hangs and displays various error messages like "can't sync the device '', there is none" or so (in German of course, sorry for my bad translation).
    Here's what Console.app tells me:
    18.06.09 20:56:42 [0x0-0xe00e].com.apple.systemuiserver[226] DigiHub:sendChargingCommandToDevice RequestExtraPower(kUSBPowerDuringWake) returned 500
    18.06.09 20:56:42 [0x0-0xe00e].com.apple.systemuiserver[226] DigiHub:sendChargingCommandToDevice sending command with sleep: 0, wake 500
    18.06.09 20:56:42 [0x0-0xe00e].com.apple.systemuiserver[226] DigiHub:sendChargingCommandToDevice sending command with sleep: 0, wake 500
    18.06.09 20:57:55 com.apple.usbmuxd[404] MuxClearPipeStall Can't clear pipe stall 2. Error: 0xe00002ed
    18.06.09 20:57:55 com.apple.usbmuxd[404] MuxClearPipeStall device is gone
    18.06.09 20:57:55 com.apple.usbmuxd[404] MuxReceivedUSBData couldn't clear pipe stall (0xe00002cd), giving up on this interface
    18.06.09 20:57:56 [0x0-0xe00e].com.apple.systemuiserver[226] DigiHub:sendChargingCommandToDevice RequestExtraPower(kUSBPowerDuringWake) returned 500
    18.06.09 20:57:56 [0x0-0xe00e].com.apple.systemuiserver[226] DigiHub:sendChargingCommandToDevice sending command with sleep: 0, wake 500
    18.06.09 20:57:57 com.apple.usbmuxd[404] HandleUSBMuxConnect Client 0x10c0f0 (iTunes/com.apple.iTunes) requesting attach to 0x1:32498 failed, no such device
    18.06.09 20:57:57 com.apple.usbmuxd[404] HandleUSBMuxConnect Client 0x10c0f0 (iTunes/com.apple.iTunes) requesting attach to 0x1:32498 failed, no such device
    18.06.09 20:57:58 com.apple.usbmuxd[404] HandleUSBMuxConnect Client 0x10af80 (iTunes/com.apple.iTunes) requesting attach to 0x1:32498 failed, no such device
    18.06.09 20:57:58 com.apple.usbmuxd[404] HandleUSBMuxConnect Client 0x10c0f0 (iTunes/com.apple.iTunes) requesting attach to 0x1:32498 failed, no such device
    18.06.09 20:57:58 com.apple.usbmuxd[404] HandleUSBMuxConnect Client 0x10c0f0 (iTunes/com.apple.iTunes) requesting attach to 0x1:32498 failed, no such device
    18.06.09 20:58:13 com.apple.usbmuxd[404] MuxClearPipeStall Can't clear pipe stall 2. Error: 0xe00002ed
    18.06.09 20:57:57 [0x0-0x25025].com.apple.iTunes[457] MobileDevice: receive_message: Could not receive size of message: 0 Unknown error: 0
    18.06.09 20:57:57 [0x0-0x25025].com.apple.iTunes[457] MobileDevice: connect_toport: Could not connect to USB mux port 32498 for device 1: Device not configured
    18.06.09 20:57:58 [0x0-0x25025].com.apple.iTunes[457] MobileDevice: connect_toport: Could not connect to USB mux port 32498 for device 1: Device not configured
    18.06.09 20:57:58 [0x0-0x25025].com.apple.iTunes[457] MobileDevice: connect_toport: Could not connect to USB mux port 32498 for device 1: Device not configured
    18.06.09 20:57:59 [0x0-0x25025].com.apple.iTunes[457] MobileDevice: send_message: Could not send message size: Bad file descriptor
    18.06.09 20:58:13 [0x0-0x25025].com.apple.iTunes[457] MobileDevice: lockssl_handshake: SSL handshake controlled failure 0: SSLERRORSYSCALL (Early EOF reached)
    18.06.09 20:58:13 [0x0-0x25025].com.apple.iTunes[457] MobileDevice: AMDeviceStartSession: Could not start session: kAMDInvalidPairRecordError
    18.06.09 20:58:13 [0x0-0x25025].com.apple.iTunes[457] MobileDevice: sendmessage: Could not send message size 342: Broken pipe
    18.06.09 20:58:13 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[460] 460:2684798752|DeviceLinkListener.c:_setMobileDeviceValue| ERROR: Could not start session with device: InvalidPairRecord (92)
    18.06.09 20:58:13 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[460] 460:2684798752|AppleMobileDeviceHelper.m:_setTetheredSyncLockdownInfoForTarget| ERROR: Could not set tethered sync info (<CFDictionary 0x1fa150 [0xa05101a0]>{type = mutable, count = 2, capacity = 3, pairs = (
    1 : <CFString 0x130fb0 [0xa05101a0]>{contents = "DisableTethered"} = <CFBoolean 0xa05103f8 [0xa05101a0]>{value = false}
    2 : <CFString 0x1fa1e0 [0xa05101a0]>{contents = "SyncingOS"} = <CFString 0x133e8 [0xa05101a0]>{contents = "OSX"}
    )}) in lockdown for com.apple.Contacts (Contacts): -402653092
    18.06.09 20:58:17 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[460] 460:2684798752|AppleMobileDeviceHelper.m:_setTetheredSyncLockdownInfoForTarget| ERROR: Could not find a device with the target identifier 3c335fe6df52bd23e4723e99731ad5602fe67640. Assuming there are no disabled data classes.
    18.06.09 20:58:17 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[460] 460:2684798752|AppleMobileDeviceHelper.m:_setTetheredSyncLockdownInfoForTarget| ERROR: Could not find a device with the target identifier 3c335fe6df52bd23e4723e99731ad5602fe67640. Assuming there are no disabled data classes.
    18.06.09 20:58:21 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[460] 460:2684798752|AppleMobileDeviceHelper.m:_setTetheredSyncLockdownInfoForTarget| ERROR: Could not find a device with the target identifier 3c335fe6df52bd23e4723e99731ad5602fe67640. Assuming there are no disabled data classes.
    18.06.09 20:58:25 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[460] 460:2684798752|AppleMobileDeviceHelper.m:_setTetheredSyncLockdownInfoForTarget| ERROR: Could not find a device with the target identifier 3c335fe6df52bd23e4723e99731ad5602fe67640. Assuming there are no disabled data classes.
    18.06.09 20:58:25 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[460] 460:2684798752|AppleMobileDeviceHelper.m:_setTetheredSyncLockdownInfoForTarget| ERROR: Could not find a device with the target identifier 3c335fe6df52bd23e4723e99731ad5602fe67640. Assuming there are no disabled data classes.
    18.06.09 20:58:29 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[460] 460:2684798752|AppleMobileDeviceHelper.m:_setTetheredSyncLockdownInfoForTarget| ERROR: Could not find a device with the target identifier 3c335fe6df52bd23e4723e99731ad5602fe67640. Assuming there are no disabled data classes.
    18.06.09 20:58:29 [0x0-0x25025].com.apple.iTunes[457] MobileDevice: disable_sigpipe: Could not disable SIGPIPE on socket
    18.06.09 20:58:29 [0x0-0x25025].com.apple.iTunes[457] MobileDevice: disable_sigpipe: Could not disable SIGPIPE on socket
    18.06.09 20:58:29 com.apple.usbmuxd[404] HandleUSBMuxConnect Client 0x10ae00 (iTunes/com.apple.iTunes) requesting attach to 0x2:32498 failed, no such device
    18.06.09 20:58:29 com.apple.usbmuxd[404] HandleUSBMuxConnect Client 0x10ae00 (iTunes/com.apple.iTunes) requesting attach to 0x2:32498 failed, no such device
    18.06.09 20:58:29 [0x0-0x25025].com.apple.iTunes[457] MobileDevice: connect_toport: Could not connect to USB mux port 32498 for device 2: Device not configured
    18.06.09 20:58:29 [0x0-0x25025].com.apple.iTunes[457] MobileDevice: receive_message: Could not receive size of message: 0 No such file or directory
    18.06.09 20:58:34 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/Resources/MDCrashReportTool[473] 473:2684798752|IPodCrashReportTool.m:_cancelCopySubmitCrashReports| ERROR: No crash report copier running for target 3c335fe6df52bd23e4723e99731ad5602fe67640
    18.06.09 20:58:34 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/Resources/MDCrashReportTool[473] 473:2684798752|IPodCrashReportTool.m:_cancelCopySubmitCrashReports| ERROR: No crash report copier running for target 3c335fe6df52bd23e4723e99731ad5602fe67640
    18.06.09 20:58:34 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/Resources/MDCrashReportTool[473] 473:2684798752|CrashReportCopierPrivate.m:-[CrashReportCopierPrivate device]| ERROR: Could not find a device with UID 3c335fe6df52bd23e4723e99731ad5602fe67640
    18.06.09 20:58:34 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/Resources/MDCrashReportTool[473] 473:2684798752|CrashReportCopierPrivate.m:-[CrashReportCopierPrivate device]| ERROR: Could not find a device with UID 3c335fe6df52bd23e4723e99731ad5602fe67640
    18.06.09 20:58:37 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/Resources/MDCrashReportTool[473] 473:2684798752|CrashReportCopierPrivate.m:-[CrashReportCopierPrivate device]| ERROR: Could not find a device with UID 3c335fe6df52bd23e4723e99731ad5602fe67640
    (note: the items after 20:58:17 are after I physically disconnected the iPhone)
    This has long been a problem for me (since I had it), I've been re-installing iTunes for several times - it only got better once when I had 8.1 fresh reinstalled, but that's history now since there's iOS 3.0 and iTunes 8.2.
    I've also checked this post: http://discussions.apple.com/thread.jspa?threadID=1988855&start=0&tstart=0
    The error messages are not quite the same, it also didn't fix my problem. Have removed all stuff from MobileDeviceService and MobileDevice.framework and so on rebooted afterwards, reinstalled iTunes 8.2 - nothing helps - it only keeps getting worse.
    What can I do to make my iPhone sync again!?
    Thanks in advance,
    mat.i.am

    Plugged phone in this morning and Console shows the following messages:
    7/10/09 7:54:52 AM com.apple.usbmuxd[31] MuxClearPipeStall Can't clear pipe stall 2. Error: 0xe00002ed
    7/10/09 7:54:52 AM com.apple.usbmuxd[31] MuxTCPSendRST MuxInterfaceSend failed: 0xffffffff
    7/10/09 7:54:52 AM /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[290] 290:2692392736|DeviceLinkListener.c:_setMobileDeviceValue| ERROR: Could not start session with device: InvalidPairRecord (92)
    7/10/09 7:54:52 AM /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[290] 290:2692392736|AppleMobileDeviceHelper.m:_setTetheredSyncLockdownInfoForTarget| ERROR: Could not set tethered sync info (<CFDictionary 0x30eac0 [0xa03361a0]>{type = mutable, count = 2, capacity = 3, pairs = (
    1 : <CFString 0x30eaa0 [0xa03361a0]>{contents = "DisableTethered"} = <CFNumber 0x10f000 [0xa03361a0]>{value = +1, type = kCFNumberSInt32Type}
    2 : <CFString 0x126720 [0xa03361a0]>{contents = "SyncingOS"} = <CFString 0x133d8 [0xa03361a0]>{contents = "iPhone"}
    )}) in lockdown for com.apple.Bookmarks (Bookmarks): -402653092
    7/10/09 7:54:52 AM /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[290] 290:2692392736|AppleMobileDeviceHelper.m:_setTetheredSyncLockdownInfoForTarget| ERROR: Could not set tethered sync info (<CFDictionary 0x30eac0 [0xa03361a0]>{type = mutable, count = 2, capacity = 3, pairs = (
    1 : <CFString 0x30eaa0 [0xa03361a0]>{contents = "DisableTethered"} = <CFNumber 0x10f000 [0xa03361a0]>{value = +1, type = kCFNumberSInt32Type}
    2 : <CFString 0x126720 [0xa03361a0]>{contents = "SyncingOS"} = <CFString 0x133d8 [0xa03361a0]>{contents = "iPhone"}
    )}) in lockdown for com.apple.Bookmarks (Bookmarks): -402653092
    7/10/09 7:54:54 AM /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[290] 290:2692392736|AppleMobileDeviceHelper.m:_setTetheredSyncLockdownInfoForTarget| ERROR: Could not find a device with the target identifier 3411946e713a2b2e0ac342d8faa77da5d4c7da0a. Assuming there are no disabled data classes.
    7/10/09 7:54:54 AM /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[290] 290:2692392736|AppleMobileDeviceHelper.m:_setTetheredSyncLockdownInfoForTarget| ERROR: Could not find a device with the target identifier 3411946e713a2b2e0ac342d8faa77da5d4c7da0a. Assuming there are no disabled data classes.
    7/10/09 7:54:56 AM /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper[290] 290:2692392736|AppleMobileDeviceHelper.m:_setTetheredSyncLockdownInfoForTarget| ERROR: Could not find a device with the target identifier 3411946e713a2b2e0ac342d8faa77da5d4c7da0a. Assuming there are no disabled data classes.
    7/10/09 7:54:52 AM [0x0-0x20020].com.apple.iTunes[284] MobileDevice: lockssl_handshake: SSL handshake controlled failure 0: SSLERRORSYSCALL (Early EOF reached)
    7/10/09 7:54:52 AM [0x0-0x20020].com.apple.iTunes[284] MobileDevice: send_message: Could not send message size: Broken pipe

  • XI SOAP SocketException:There is no process to read data written to a pipe.

    Hi guys!
    I get this error and have no idea, where it comes from..
    It occurs in scenario: SAR/3P->IntegrationProcess->SAPR/3, wher in integration process I map r/3 message to soap call synchronously external web service, map soap response to target sap msg and send it into R/3.
    Message is sent from r/3 correctly, received by IP correctly, problem occurs in SOAP communication.
    Log from messaging system - received messages - sync:
    2007-07-12 15:29:36 Success Message successfully received by messaging system. Profile: XI URL: http://xxxx:50200/MessagingSystem/receive/AFW/XI Credential (User): PIISUSER
    2007-07-12 15:29:36 Success Using connection SOAP_http://sap.com/xi/XI/System. Trying to put the message into the request queue.
    2007-07-12 15:29:36 Success Message successfully put into the queue.
    2007-07-12 15:29:36 Success The message was successfully retrieved from the request queue.
    2007-07-12 15:29:36 Success The message status set to DLNG.
    2007-07-12 15:29:36 Success Delivering to channel: CC_IS2SOAP
    2007-07-12 15:29:36 Success SOAP: request message entering the adapter
    2007-07-12 15:29:37 Error SOAP: call failed
    2007-07-12 15:29:37 Error SOAP: error occured: com.sap.aii.af.ra.ms.api.RecoverableException: java.net.SocketException: There is no process to read data written to a pipe.
    2007-07-12 15:29:37 Error Exception caught by adapter framework: java.net.SocketException: There is no process to read data written to a pipe.
    2007-07-12 15:29:37 Error Delivery of the message to the application using connection SOAP_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: java.net.SocketException: There is no process to read data written to a pipe.. Setting message to status failed.
    2007-07-12 15:29:37 Error The message status set to FAIL.
    2007-07-12 15:29:37 Error Returning synchronous error message to calling application: com.sap.aii.af.ra.ms.api.RecoverableException: java.net.SocketException: There is no process to read data written to a pipe..
    Any idea, what could be wrong?  Thanx a lot!
    Olian

    Olian,
    You can also do the same process as mentioned in the weblog:
    /people/bhavesh.kantilal/blog/2006/11/20/webservice-calls-from-a-user-defined-function
    Regards,
    ---Satish

  • Best way to use PIP in FCP6?

    I have a quick question. Say I have a large clip of someone giving a presentation--about 30 minutes long. During the presentation I superimpose slides full-screen intermittently for emphasis, but during those shots I also want a small PIP of the presenter in the corner of the slide.
    I have achieved this so far by copying the clip in another track, scaling it down, trimming the clip, and lining it up with the audio, but this seems like a very cumbersome workflow. Is there an easier way to do this? Can I just make a video "window" during the slide display and set the main clip video as its source?
    Thanks so much.
    Message was edited by: Justin Belcher

    Justin,
    Two thoughts on this.
    1. You can use keyframes on your original track to grow and shrink at the right times or
    2. Duplicate your entire video track (that you want to PIP) on V3, put your graphics on V2, and your full frame video on V1, sync your audio, use the motion tab to place this video in the right spot, then use the blade tool to cut out the sections that you want full frame, highlight those sections and delete. Lock that track. Now when you want your PIP it will play on top of your graphics. Make sense?
    You may have to play with fades, etc. to get it perfect but I think that this will work
    OOO, just thought of a third,
    On V2, place your full frame video, graphics on V1. When you want to go PIP, use the blade tool and cut on either side of what you want in the corner. Set your motion tab on the the first time. Select that portion of the track and Apple-C to copy. Go to the next spot, use blade, select the section, right click, paste attributes, check Basic Motion and paste. Voila!
    Hope one of these helped.
    K

  • I can't install my HTC Sync application using Adobe AIR

    I am having same issue installing HTC sync software - It was running fine until I updated to latest version, did you find a solution to problem? I have pu=t run log below:-
    [2012-04-03:17:41:42] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-03:17:41:42] Commandline is: -silent
    [2012-04-03:17:41:42] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-04-03:17:41:42] Starting silent runtime update. Updating runtime from version 3.1.0.4880 to version 3.2.0.2070
    [2012-04-03:17:41:43] Installing msi at c:\users\paul\appdata\local\temp\air5c61.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-03:17:41:46] Runtime Installer end with exit code 0
    [2012-04-09:13:01:08] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:13:01:08] Commandline is:
    [2012-04-09:13:01:08] No installed runtime detected
    [2012-04-09:13:01:11] Relaunching with elevation
    [2012-04-09:13:01:11] Launching subprocess with commandline c:\users\paul\appdata\local\temp\air1778.tmp\adobe air installer.exe -ei
    [2012-04-09:13:01:14] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:13:01:14] Commandline is: -stdio \\.\pipe\AIR_6188_0 -ei
    [2012-04-09:13:01:14] No installed runtime detected
    [2012-04-09:13:01:14] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:13:01:14] Installing msi at c:\users\paul\appdata\local\temp\air1778.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:13:01:14] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:01:14] Rolling back install of c:\users\paul\appdata\local\temp\air1778.tmp\setup.msi
    [2012-04-09:13:01:15] Rollback complete
    [2012-04-09:13:01:15] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:01:15] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:01:15] Runtime Installer end with exit code 7
    [2012-04-09:13:01:20] Runtime Installer end with exit code 7
    [2012-04-09:13:01:31] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:13:01:31] Commandline is:
    [2012-04-09:13:01:31] No installed runtime detected
    [2012-04-09:13:01:35] Relaunching with elevation
    [2012-04-09:13:01:35] Launching subprocess with commandline c:\users\paul\appdata\local\temp\air6d93.tmp\adobe air installer.exe -ei
    [2012-04-09:13:01:37] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:13:01:37] Commandline is: -stdio \\.\pipe\AIR_7932_0 -ei
    [2012-04-09:13:01:37] No installed runtime detected
    [2012-04-09:13:01:37] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:13:01:37] Installing msi at c:\users\paul\appdata\local\temp\air6d93.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:13:01:37] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:01:37] Rolling back install of c:\users\paul\appdata\local\temp\air6d93.tmp\setup.msi
    [2012-04-09:13:01:37] Rollback complete
    [2012-04-09:13:01:37] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:01:37] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:01:37] Runtime Installer end with exit code 7
    [2012-04-09:13:01:39] Runtime Installer end with exit code 7
    [2012-04-09:13:02:11] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:13:02:11] Commandline is:
    [2012-04-09:13:02:11] No installed runtime detected
    [2012-04-09:13:02:14] Relaunching with elevation
    [2012-04-09:13:02:14] Launching subprocess with commandline c:\users\paul\appdata\local\temp\aire63.tmp\adobe air installer.exe -ei
    [2012-04-09:13:02:16] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:13:02:16] Commandline is: -stdio \\.\pipe\AIR_6504_0 -ei
    [2012-04-09:13:02:16] No installed runtime detected
    [2012-04-09:13:02:16] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:13:02:16] Installing msi at c:\users\paul\appdata\local\temp\aire63.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:13:02:16] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:02:16] Rolling back install of c:\users\paul\appdata\local\temp\aire63.tmp\setup.msi
    [2012-04-09:13:02:16] Rollback complete
    [2012-04-09:13:02:16] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:02:16] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:02:16] Runtime Installer end with exit code 7
    [2012-04-09:13:02:18] Runtime Installer end with exit code 7
    [2012-04-09:13:02:31] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:13:02:31] Commandline is:
    [2012-04-09:13:02:31] No installed runtime detected
    [2012-04-09:13:02:34] Relaunching with elevation
    [2012-04-09:13:02:34] Launching subprocess with commandline c:\users\paul\appdata\local\temp\air5958.tmp\adobe air installer.exe -ei
    [2012-04-09:13:02:34] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:13:02:34] Commandline is: -stdio \\.\pipe\AIR_3712_0 -ei
    [2012-04-09:13:02:34] No installed runtime detected
    [2012-04-09:13:02:34] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:13:02:34] Installing msi at c:\users\paul\appdata\local\temp\air5958.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:13:02:34] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:02:34] Rolling back install of c:\users\paul\appdata\local\temp\air5958.tmp\setup.msi
    [2012-04-09:13:02:34] Rollback complete
    [2012-04-09:13:02:34] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:02:34] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:02:34] Runtime Installer end with exit code 7
    [2012-04-09:13:02:41] Runtime Installer end with exit code 7
    [2012-04-09:13:02:51] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:13:02:51] Commandline is:
    [2012-04-09:13:02:51] No installed runtime detected
    [2012-04-09:13:02:55] Relaunching with elevation
    [2012-04-09:13:02:55] Launching subprocess with commandline c:\users\paul\appdata\local\temp\aira880.tmp\adobe air installer.exe -ei
    [2012-04-09:13:02:57] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:13:02:57] Commandline is: -stdio \\.\pipe\AIR_7248_0 -ei
    [2012-04-09:13:02:57] No installed runtime detected
    [2012-04-09:13:02:57] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:13:02:57] Installing msi at c:\users\paul\appdata\local\temp\aira880.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:13:02:57] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:02:57] Rolling back install of c:\users\paul\appdata\local\temp\aira880.tmp\setup.msi
    [2012-04-09:13:02:57] Rollback complete
    [2012-04-09:13:02:57] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:02:57] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:02:57] Runtime Installer end with exit code 7
    [2012-04-09:13:02:59] Runtime Installer end with exit code 7
    [2012-04-09:13:09:06] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:13:09:06] Commandline is:
    [2012-04-09:13:09:06] No installed runtime detected
    [2012-04-09:13:09:09] Relaunching with elevation
    [2012-04-09:13:09:09] Launching subprocess with commandline c:\users\paul\appdata\local\temp\air6318.tmp\adobe air installer.exe -ei
    [2012-04-09:13:09:10] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:13:09:10] Commandline is: -stdio \\.\pipe\AIR_6544_0 -ei
    [2012-04-09:13:09:10] No installed runtime detected
    [2012-04-09:13:09:10] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:13:09:10] Installing msi at c:\users\paul\appdata\local\temp\air6318.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:13:09:10] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:09:10] Rolling back install of c:\users\paul\appdata\local\temp\air6318.tmp\setup.msi
    [2012-04-09:13:09:10] Rollback complete
    [2012-04-09:13:09:10] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:09:10] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:09:10] Runtime Installer end with exit code 7
    [2012-04-09:13:09:12] Runtime Installer end with exit code 7
    [2012-04-09:13:12:59] Runtime Installer begin with version 3.2.0.2070 on Windows XP x86
    [2012-04-09:13:12:59] Commandline is:
    [2012-04-09:13:12:59] No installed runtime detected
    [2012-04-09:13:13:20] Starting runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:13:13:20] Installing msi at c:\users\paul\appdata\local\temp\aire7f0.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:13:13:20] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:13:20] Rolling back install of c:\users\paul\appdata\local\temp\aire7f0.tmp\setup.msi
    [2012-04-09:13:13:20] Rollback complete
    [2012-04-09:13:13:20] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:13:22] Runtime Installer end with exit code 7
    [2012-04-09:13:57:50] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:13:57:50] Commandline is: -silent
    [2012-04-09:13:57:50] No installed runtime detected
    [2012-04-09:13:57:50] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:13:57:50] Installing msi at c:\users\paul\appdata\local\temp\airfdc2.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:13:57:50] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:57:50] Rolling back install of c:\users\paul\appdata\local\temp\airfdc2.tmp\setup.msi
    [2012-04-09:13:57:50] Rollback complete
    [2012-04-09:13:57:50] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:13:57:50] Runtime Installer end with exit code 7
    [2012-04-09:14:03:12] Runtime Installer begin with version 3.2.0.2070 on Windows XP x86
    [2012-04-09:14:03:12] Commandline is:
    [2012-04-09:14:03:12] No installed runtime detected
    [2012-04-09:14:03:16] Starting runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:14:03:16] Installing msi at c:\users\paul\appdata\local\temp\air54d3.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:14:03:17] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:14:03:17] Rolling back install of c:\users\paul\appdata\local\temp\air54d3.tmp\setup.msi
    [2012-04-09:14:03:17] Rollback complete
    [2012-04-09:14:03:17] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:14:03:19] Runtime Installer end with exit code 7
    [2012-04-09:14:57:58] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-04-09:14:57:58] Commandline is: -silent
    [2012-04-09:14:57:58] No installed runtime detected
    [2012-04-09:14:57:58] Starting silent runtime install. Installing runtime version 3.1.0.4880
    [2012-04-09:14:57:58] Installing msi at c:\users\paul\appdata\local\temp\air85a4.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2012-04-09:14:57:59] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2012-04-09:14:57:59] Rolling back install of c:\users\paul\appdata\local\temp\air85a4.tmp\setup.msi
    [2012-04-09:14:57:59] Rollback complete
    [2012-04-09:14:57:59] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2012-04-09:14:57:59] Runtime Installer end with exit code 7
    [2012-04-09:20:14:15] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:20:14:15] Commandline is:
    [2012-04-09:20:14:15] No installed runtime detected
    [2012-04-09:20:14:18] Relaunching with elevation
    [2012-04-09:20:14:18] Launching subprocess with commandline c:\users\paul\appdata\local\temp\air3b79.tmp\adobe air installer.exe -ei
    [2012-04-09:20:14:20] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:20:14:20] Commandline is: -stdio \\.\pipe\AIR_7756_0 -ei
    [2012-04-09:20:14:20] No installed runtime detected
    [2012-04-09:20:14:20] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:20:14:21] Installing msi at c:\users\paul\appdata\local\temp\air3b79.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:20:14:21] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:14:21] Rolling back install of c:\users\paul\appdata\local\temp\air3b79.tmp\setup.msi
    [2012-04-09:20:14:21] Rollback complete
    [2012-04-09:20:14:21] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:14:21] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:14:21] Runtime Installer end with exit code 7
    [2012-04-09:20:14:24] Runtime Installer end with exit code 7
    [2012-04-09:20:14:43] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:20:14:43] Commandline is:
    [2012-04-09:20:14:43] No installed runtime detected
    [2012-04-09:20:14:46] Relaunching with elevation
    [2012-04-09:20:14:46] Launching subprocess with commandline c:\users\paul\appdata\local\temp\air9a4b.tmp\adobe air installer.exe -ei
    [2012-04-09:20:14:48] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:20:14:48] Commandline is: -stdio \\.\pipe\AIR_2392_0 -ei
    [2012-04-09:20:14:48] No installed runtime detected
    [2012-04-09:20:14:48] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:20:14:48] Installing msi at c:\users\paul\appdata\local\temp\air9a4b.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:20:14:49] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:14:49] Rolling back install of c:\users\paul\appdata\local\temp\air9a4b.tmp\setup.msi
    [2012-04-09:20:14:49] Rollback complete
    [2012-04-09:20:14:49] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:14:49] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:14:49] Runtime Installer end with exit code 7
    [2012-04-09:20:14:54] Runtime Installer end with exit code 7
    [2012-04-09:20:29:22] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:20:29:22] Commandline is:
    [2012-04-09:20:29:22] No installed runtime detected
    [2012-04-09:20:29:26] Relaunching with elevation
    [2012-04-09:20:29:26] Launching subprocess with commandline c:\users\paul\appdata\local\temp\air6180.tmp\adobe air installer.exe -ei
    [2012-04-09:20:29:26] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-09:20:29:26] Commandline is: -stdio \\.\pipe\AIR_1184_0 -ei
    [2012-04-09:20:29:26] No installed runtime detected
    [2012-04-09:20:29:26] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:20:29:26] Installing msi at c:\users\paul\appdata\local\temp\air6180.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:20:29:26] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:29:26] Rolling back install of c:\users\paul\appdata\local\temp\air6180.tmp\setup.msi
    [2012-04-09:20:29:26] Rollback complete
    [2012-04-09:20:29:26] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:29:26] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:29:26] Runtime Installer end with exit code 7
    [2012-04-09:20:29:28] Runtime Installer end with exit code 7
    [2012-04-09:20:29:46] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:20:29:46] Commandline is:
    [2012-04-09:20:29:46] No installed runtime detected
    [2012-04-09:20:29:49] Relaunching with elevation
    [2012-04-09:20:29:49] Launching subprocess with commandline c:\users\paul\appdata\local\temp\airba2a.tmp\adobe air installer.exe -ei
    [2012-04-09:20:29:49] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:20:29:49] Commandline is: -stdio \\.\pipe\AIR_11768_0 -ei
    [2012-04-09:20:29:49] No installed runtime detected
    [2012-04-09:20:29:49] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:20:29:49] Installing msi at c:\users\paul\appdata\local\temp\airba2a.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:20:29:49] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:29:49] Rolling back install of c:\users\paul\appdata\local\temp\airba2a.tmp\setup.msi
    [2012-04-09:20:29:49] Rollback complete
    [2012-04-09:20:29:49] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:29:49] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:29:49] Runtime Installer end with exit code 7
    [2012-04-09:20:29:54] Runtime Installer end with exit code 7
    [2012-04-09:20:38:05] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:20:38:05] Commandline is:
    [2012-04-09:20:38:05] No installed runtime detected
    [2012-04-09:20:38:13] Relaunching with elevation
    [2012-04-09:20:38:13] Launching subprocess with commandline c:\users\paul\appdata\local\temp\air4f28.tmp\adobe air installer.exe -ei
    [2012-04-09:20:38:13] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:20:38:13] Commandline is: -stdio \\.\pipe\AIR_6196_0 -ei
    [2012-04-09:20:38:13] No installed runtime detected
    [2012-04-09:20:38:13] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:20:38:13] Installing msi at c:\users\paul\appdata\local\temp\air4f28.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:20:38:14] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:38:14] Rolling back install of c:\users\paul\appdata\local\temp\air4f28.tmp\setup.msi
    [2012-04-09:20:38:14] Rollback complete
    [2012-04-09:20:38:14] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:38:14] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:38:14] Runtime Installer end with exit code 7
    [2012-04-09:20:38:32] Runtime Installer end with exit code 7
    [2012-04-09:20:45:17] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:20:45:17] Commandline is:
    [2012-04-09:20:45:17] No installed runtime detected
    [2012-04-09:20:45:20] Relaunching with elevation
    [2012-04-09:20:45:20] Launching subprocess with commandline c:\users\paul\appdata\local\temp\airf131.tmp\adobe air installer.exe -ei
    [2012-04-09:20:45:20] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:20:45:20] Commandline is: -stdio \\.\pipe\AIR_3616_0 -ei
    [2012-04-09:20:45:20] No installed runtime detected
    [2012-04-09:20:45:20] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:20:45:20] Installing msi at c:\users\paul\appdata\local\temp\airf131.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:20:45:21] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:45:21] Rolling back install of c:\users\paul\appdata\local\temp\airf131.tmp\setup.msi
    [2012-04-09:20:45:21] Rollback complete
    [2012-04-09:20:45:21] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:45:21] Runtime Installer end with exit code 7
    [2012-04-09:20:45:23] Runtime Installer end with exit code 7
    [2012-04-09:20:50:46] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:20:50:46] Commandline is:
    [2012-04-09:20:50:46] No installed runtime detected
    [2012-04-09:20:50:49] Relaunching with elevation
    [2012-04-09:20:50:49] Launching subprocess with commandline c:\users\paul\appdata\local\temp\airf4ca.tmp\adobe air installer.exe -ei
    [2012-04-09:20:50:49] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:20:50:49] Commandline is: -stdio \\.\pipe\AIR_11928_0 -ei
    [2012-04-09:20:50:49] No installed runtime detected
    [2012-04-09:20:50:49] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:20:50:49] Installing msi at c:\users\paul\appdata\local\temp\airf4ca.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:20:50:49] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:50:49] Rolling back install of c:\users\paul\appdata\local\temp\airf4ca.tmp\setup.msi
    [2012-04-09:20:50:49] Rollback complete
    [2012-04-09:20:50:49] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:50:49] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:20:50:50] Runtime Installer end with exit code 7
    [2012-04-09:20:50:52] Runtime Installer end with exit code 7
    [2012-04-09:21:06:19] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:21:06:19] Commandline is:
    [2012-04-09:21:06:19] No installed runtime detected
    [2012-04-09:21:06:25] Relaunching with elevation
    [2012-04-09:21:06:25] Launching subprocess with commandline c:\users\paul\appdata\local\temp\air3340.tmp\adobe air installer.exe -ei
    [2012-04-09:21:06:25] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-09:21:06:25] Commandline is: -stdio \\.\pipe\AIR_11716_0 -ei
    [2012-04-09:21:06:25] No installed runtime detected
    [2012-04-09:21:06:26] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-09:21:06:26] Installing msi at c:\users\paul\appdata\local\temp\air3340.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-09:21:06:26] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:21:06:26] Rolling back install of c:\users\paul\appdata\local\temp\air3340.tmp\setup.msi
    [2012-04-09:21:06:26] Rollback complete
    [2012-04-09:21:06:26] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:21:06:26] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-09:21:06:26] Runtime Installer end with exit code 7
    [2012-04-09:21:06:29] Runtime Installer end with exit code 7
    [2012-04-10:11:42:47] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-10:11:42:47] Commandline is:
    [2012-04-10:11:42:47] No installed runtime detected
    [2012-04-10:11:42:51] Relaunching with elevation
    [2012-04-10:11:42:51] Launching subprocess with commandline c:\users\paul\appdata\local\temp\air4a29.tmp\adobe air installer.exe -ei
    [2012-04-10:11:42:51] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-10:11:42:51] Commandline is: -stdio \\.\pipe\AIR_10628_0 -ei
    [2012-04-10:11:42:51] No installed runtime detected
    [2012-04-10:11:42:51] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-10:11:42:51] Installing msi at c:\users\paul\appdata\local\temp\air4a29.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-10:11:42:51] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:11:42:51] Rolling back install of c:\users\paul\appdata\local\temp\air4a29.tmp\setup.msi
    [2012-04-10:11:42:51] Rollback complete
    [2012-04-10:11:42:51] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:11:42:51] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:11:42:51] Runtime Installer end with exit code 7
    [2012-04-10:11:42:54] Runtime Installer end with exit code 7
    [2012-04-10:11:50:13] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-10:11:50:13] Commandline is:
    [2012-04-10:11:50:13] No installed runtime detected
    [2012-04-10:11:50:15] Relaunching with elevation
    [2012-04-10:11:50:15] Launching subprocess with commandline c:\users\paul\appdata\local\temp\air1ad0.tmp\adobe air installer.exe -ei
    [2012-04-10:11:50:15] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-10:11:50:15] Commandline is: -stdio \\.\pipe\AIR_9172_0 -ei
    [2012-04-10:11:50:15] No installed runtime detected
    [2012-04-10:11:50:16] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-10:11:50:16] Installing msi at c:\users\paul\appdata\local\temp\air1ad0.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-10:11:50:16] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:11:50:16] Rolling back install of c:\users\paul\appdata\local\temp\air1ad0.tmp\setup.msi
    [2012-04-10:11:50:16] Rollback complete
    [2012-04-10:11:50:16] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:11:50:16] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:11:50:16] Runtime Installer end with exit code 7
    [2012-04-10:11:50:18] Runtime Installer end with exit code 7
    [2012-04-10:11:57:20] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-10:11:57:20] Commandline is:
    [2012-04-10:11:57:20] No installed runtime detected
    [2012-04-10:11:57:23] Relaunching with elevation
    [2012-04-10:11:57:23] Launching subprocess with commandline c:\users\paul\appdata\local\temp\aira100.tmp\adobe air installer.exe -ei
    [2012-04-10:11:57:23] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-10:11:57:23] Commandline is: -stdio \\.\pipe\AIR_7152_0 -ei
    [2012-04-10:11:57:23] No installed runtime detected
    [2012-04-10:11:57:24] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-10:11:57:24] Installing msi at c:\users\paul\appdata\local\temp\aira100.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-10:11:57:24] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:11:57:24] Rolling back install of c:\users\paul\appdata\local\temp\aira100.tmp\setup.msi
    [2012-04-10:11:57:24] Rollback complete
    [2012-04-10:11:57:24] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:11:57:24] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:11:57:24] Runtime Installer end with exit code 7
    [2012-04-10:11:57:30] Runtime Installer end with exit code 7
    [2012-04-10:11:57:43] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-10:11:57:43] Commandline is:
    [2012-04-10:11:57:43] No installed runtime detected
    [2012-04-10:11:57:46] Relaunching with elevation
    [2012-04-10:11:57:46] Launching subprocess with commandline c:\users\paul\appdata\local\temp\airf8cf.tmp\adobe air installer.exe -ei
    [2012-04-10:11:57:47] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-10:11:57:47] Commandline is: -stdio \\.\pipe\AIR_6900_0 -ei
    [2012-04-10:11:57:47] No installed runtime detected
    [2012-04-10:11:57:47] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-10:11:57:47] Installing msi at c:\users\paul\appdata\local\temp\airf8cf.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-10:11:57:47] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:11:57:47] Rolling back install of c:\users\paul\appdata\local\temp\airf8cf.tmp\setup.msi
    [2012-04-10:11:57:47] Rollback complete
    [2012-04-10:11:57:47] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:11:57:47] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:11:57:47] Runtime Installer end with exit code 7
    [2012-04-10:11:57:49] Runtime Installer end with exit code 7
    [2012-04-10:13:40:11] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-10:13:40:11] Commandline is:
    [2012-04-10:13:40:11] No installed runtime detected
    [2012-04-10:13:40:17] Relaunching with elevation
    [2012-04-10:13:40:17] Launching subprocess with commandline c:\users\paul\appdata\local\temp\airae38.tmp\adobe air installer.exe -ei
    [2012-04-10:13:40:17] Runtime Installer begin with version 3.2.0.2070 on Windows Vista x86
    [2012-04-10:13:40:17] Commandline is: -stdio \\.\pipe\AIR_2060_0 -ei
    [2012-04-10:13:40:17] No installed runtime detected
    [2012-04-10:13:40:17] Starting silent runtime install. Installing runtime version 3.2.0.2070
    [2012-04-10:13:40:18] Installing msi at c:\users\paul\appdata\local\temp\airae38.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    [2012-04-10:13:40:18] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:13:40:18] Rolling back install of c:\users\paul\appdata\local\temp\airae38.tmp\setup.msi
    [2012-04-10:13:40:18] Rollback complete
    [2012-04-10:13:40:18] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:13:40:18] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2012-04-10:13:40:18] Runtime Installer end with exit code 7
    [2012-04-10:13:40:45] Runtime Installer end with exit code 7

    I'm sorry you're running into installation issues with AIR.  Microsoft has just released a new utility that can help resolve installation problems.  Would you mind giving this a try and let us know how it works for you?  When running the Fix it, go through the uninstall process and try to remove Adobe AIR from your system.  Once finished, download the latest version of AIR and install again.
    Microsoft Install and Uninstall Fix It
    If you still encounter problems, we'll need to review the AIR installer log to better diagnose the issue.  Please post back with the log contents.  You can find instructions for finding these logs here:
    AIR Installer Log Instructions

  • Password Sync using Waveset

    Hello All,
    I am trying use the password sync util which is part of the Identity Manager aka Waveset Lighthouse to capture the password changes on Active Directory and pass it to an LDAP server.
    It intercepts the password change on the Active Directory side but then throws the following error
    Can not create the object of the CLSID_IDMgrClient! CoCreateInstance: 0X80040154: , , Class not registered
    02/02/2005 16.54.57.547000 [2068] (../../../../src/wps/passwordsync/service/pwicsvc.cpp,321): Exit: GetClient
    02/02/2005 16.54.57.547000 [2068] (../../../../src/wps/passwordsync/service/pwicsvc.cpp,450): **ERROR: Failed to get soap client.
    02/02/2005 16.54.57.547000 [2068] (../../../../src/wps/passwordsync/service/pwicsvc.cpp,402): Waiting for client.Requests Processed: 1 failures: 0
    The AD is on a Windows 2003.
    Has anyone tried to use the password sync util, if so can you tell me what I am doing wrong?
    Thank you
    Cheers
    Vamsi

    Hi..
    Here is what I have done.. and the error log
    I have upgraded Sun IDM 5.0 to SP3 and also installed PwSync with .NET 1.1. That went fine. I have also gone through the registry, and changed the 'tracelevel' attribute to level 4.
    Now here are the questions-
    1) No where I could see the two parameters, 'passwordSyncThreshold' and 'passwordSyncExcludeList' , to which according to the .pdf we have to set. So from where I should set those parameter's values?
    2) Some times I get the trace file with errors like ---
    07/20/2005 17.46.18.232000 [1940] (../../../src/wps/passwordsync/WSTrace.cpp,150): trace active, level: 4, file: C:\Program Files\Sun\Identity Manager\PasswordSync\pwicsvc.log, maxSize: 10000 KB
    07/20/2005 17.46.18.232000 [1940] (../../../src/wps/passwordsync/WSTrace.cpp,109): In WSTrace::init()
    07/20/2005 17.46.18.232000 [1940] (../../../src/wps/passwordsync/WSTrace.cpp,110): Version: 'Sun Identity Manager 5.0 (20041020 SP 2)'
    07/20/2005 17.46.18.232000 [1940] (../../../../src/wps/passwordsync/service/pwicsvc.cpp,594): Enter: ReadRegisterySettings
    07/20/2005 17.46.18.232000 [1940] (../../../../src/wps/passwordsync/service/pwicsvc.cpp,637): Error reading USE_SSL from registry.
    07/20/2005 17.46.18.232000 [1940] (../../../../src/wps/passwordsync/service/pwicsvc.cpp,666): Proxy Port: 8080
    07/20/2005 17.46.18.232000 [1940] (../../../../src/wps/passwordsync/service/pwicsvc.cpp,751): Error reading SecurityFlags from registry.
    07/20/2005 17.46.18.232000 [1940] (../../../../src/wps/passwordsync/service/pwicsvc.cpp,763): Error reading ConnectionFlags from registry.
    07/20/2005 17.46.18.242000 [1940] (../../../../src/wps/passwordsync/service/pwicsvc.cpp,779): Exit: ReadRegisterySettings
    07/20/2005 17.46.18.252000 [1940] (../../../../src/wps/passwordsync/service/pwicsvc.cpp,511): WINVER: Windows Active Directory
    07/20/2005 17.46.18.262000 [1940] (../../../../src/wps/passwordsync/service/pwicsvc.cpp,557): Service::svc
    07/20/2005 17.46.18.272000 [1940] (../../../../src/wps/passwordsync/service/pwicsvc.cpp,374): Enter: waitForIntercepts
    07/20/2005 17.46.18.282000 [1940] (../../../../src/wps/passwordsync/service/pwicsvc.cpp,402): Waiting for client.Requests Processed: 0 failures: 0
    4) And some times :
    after registering DotNetWrapper.DLL file manually i get this trace..
    read from pipe
    Request: TSALL2600J238DMKGK2JDJJ2
    Getting new soap client
    Enter: GetClient
    Soap client created.
    Client timesout: 10000
    Proxy Server not specified.
    Endpont URL: http://10.0.0.10:8080/idm/servlet/rpcrouter2
    SSL Disabled
    RAEncryptor: Decrypt3DES :Input length (16) moded to 2
    Login failed error code: -2147221164 (I am giving Username : configurator, passwd: configurator)
    Disassemblling Client
    Exit : Get Client
    "ERROR: Failed to get soap client
    Waiting for client. Request proccessed : 1 Failure: 0
    Am I going wrong somewhere...
    Plz help me to overcome he problem..
    Thanking You in advance...

  • Password sync error using SSL

    Hello All,
    I installed password sync in a Windows 2003 server SE.
    The application server(websphere 5) is using SSL.
    The waveset version is 5.5.
    I manualy registered the dll DotNetWrapper.dll but I am still getting the following log:
    ,110): Version: 'Sun Identity Manager 5.0 (20041020 SP 2)'
    pwicsvc.cpp,594): Enter: ReadRegisterySettings
    pwicsvc.cpp,637): Error reading USE_SSL from registry.
    pwicsvc.cpp,666): Proxy Port: 8080
    pwicsvc.cpp,751): Error reading SecurityFlags from registry.
    pwicsvc.cpp,763): Error reading ConnectionFlags from registry.
    pwicsvc.cpp,779): Exit: ReadRegisterySettings
    pwicsvc.cpp,511): WINVER: Windows Active Directory
    pwicsvc.cpp,557): Service::svc
    pwicsvc.cpp,374): Enter: waitForIntercepts
    pwicsvc.cpp,402): Waiting for client.Requests Processed: 0 failures: 0
    pwicsvc.cpp,416): read from pipe
    pwicsvc.cpp,420): REQUEST: SRTCTkASGZP1++W/mobdreEAtquTHmFJDTpZ+1fsztFSWSU2j5QdZw==
    pwicsvc.cpp,441):           GETTING NEW SOAP CLIENT
    pwicsvc.cpp,228): Enter: GetClient
    pwicsvc.cpp,245): Soap client created
    pwicsvc.cpp,246): ClientTimeout: 10000
    pwicsvc.cpp,256): Proxy server not specified
    pwicsvc.cpp,260): EndpointURL: https://servername:443/idm/servlet/rpcrouter2
    pwicsvc.cpp,287): SSL Enabled
    ptor.cpp,67): RAEncryptor::Decrypt3DES: input length (16) moded to 2
    pwicsvc.cpp,301): Login failed error code : -2147467259. Disassembing client
    pwicsvc.cpp,321): Exit: GetClient
    pwicsvc.cpp,450): **ERROR: Failed to get soap client.
    pwicsvc.cpp,402): Waiting for client.Requests Processed: 1 failures: 0
    Any help will be appreciated.
    Itay.

    I would like to add that .NET and IE 6 are installed with the OS (Win2003) by default.
    When I surf to the to the endpointURL I get the following message:
    ERROR: org.openspml.server.SOAPRouter: GET is unsupported

Maybe you are looking for

  • Acrobat 8.1.5 crashes when scanning two-sided documents-help!

    Hi, I've been searching for some answer to this, but I'm not finding any yet... My problem is that I am trying to use Acrobat 8.1.5 to scan in a double-sided multi-page document using a Brother MFC-7420 with a document feeder. I'm on OS 10.5.8. Scann

  • How to create SR Queue and Custom User Role for technician only see which SR assigned Him/Her and Resolve

    Hi  I have created workitem SR advance and Criteria with ID [Assigned To ME] and created user role in Advance operators. But in technician Console showing which SR he/she created not service desk assigned to him/her. Please suggest... Regards Sheetla

  • How to change the package name for a msg class

    Can anybody tell me how to change the package name for a message class. and how will it effect in the rerport? thanks in advance kp

  • ABAP UNIT - Test Driven Development

    Dear ABAPers, I hope some of you may have also ventured into this area of Test Driven Development.  I have just started looking into this new and exciting way of development.  My understanding after having gone through the available blogs and some re

  • Where's the "Open Panel Vi"?

    Hi, I am looking for the �Open Panel Vi', which I found described in Help->Online Reference. I know that it existed in Labview 4.1, but after upgrading to 5.0 I can't find it anymore. So, can anybody tell me where it is located. Is there anybody who