Jms runni pro

Hi All
I am working with Oracle Application Server 10g.
Here I downloaded one jms example from oracle site.
while running i am getting following error :
C:\mg_jms\JMS1.1\JMS1.1>ant postMessage
Buildfile: build.xml
postMessage:
[input] Enter the message :
sriram
[java] javax.naming.NoInitialContextException: Cannot instantiate class: co
m.evermind.server.rmi.RMIInitialContextFactory [Root exception is java.lang.Clas
sNotFoundException: com.evermind.server.rmi.RMIInitialContextFactory]
[java] at javax.naming.spi.NamingManager.getInitialContext(NamingManage
r.java:657)
[java] at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.
java:247)
[java] at javax.naming.InitialContext.init(InitialContext.java:223)
[java] at javax.naming.InitialContext.<init>(InitialContext.java:197)
[java] at oracle.otnsamples.jms.JMSProducerConsumer.performMessagingOpe
rations(JMSProducerConsumer.java:98)
[java] at oracle.otnsamples.jms.JMSProducerConsumer.main(JMSProducerCon
sumer.java:71)
[java] Caused by: java.lang.ClassNotFoundException: com.evermind.server.rmi
.RMIInitialContextFactory
[java] at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
[java] at java.security.AccessController.doPrivileged(Native Method)
[java] at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
[java] at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
[java] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
[java] at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
[java] at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
[java] at java.lang.Class.forName0(Native Method)
[java] at java.lang.Class.forName(Class.java:242)
[java] at com.sun.naming.internal.VersionHelper12.loadClass(VersionHelp
er12.java:42)
[java] at javax.naming.spi.NamingManager.getInitialContext(NamingManage
r.java:654)
[java] ... 5 more
Please help me how to slove this

Hi Avi,
Thanks for your response.
Now i am able to run that example.But in coding of in this example i am unable to find out how the sender or publisher identifies the receiver or subscriber.please help me Avi. This is the url
http://www.oracle.com/technology/sample_code/tech/java/jms/index.html
this example.
JMS1.1 Domain Unification Sample
please help me.

Similar Messages

  • Pro's - Con's XI JMS adapter /IBM  WBI XI adapter

    Hi there,
    I would like to know what are the pro's /con's of the XI JMS adapter and IBM's WebSphere XI adapter.
    When and why to use which one..etc?
    Also appreciate if someone can share some thoughts/previous experiences with one of these two adapters?
    Tnx,
    Roberto.

    Hi,
    Check Below links,
    /people/bla.suranyi/blog/2006/06/08/sap-xi-supports-edifact
    http://www.seeburger.it/fileadmin/it/pdf/2005_04_sapphire_Ferrero_transcript.pdf
    http://www.seeburger.com/fileadmin/com/pdf/Butler_Group_SEEBURGER_Technology_Audit.pdf
    http://www.seeburger.com/fileadmin/com/pdf/AS2_General_Overview.pdf
    SAP Adapters
    Regards,
    Phani

  • How to scan with image runner 1023if and MacBook Pro

    It's been a nightmare using the Image Runner and my MacBoo Pro, any one knows how?

    Multifunction printer CANON Image Runner 1023if. I'm frustrated, I hate PC and I can scan in my MacBoock Pro, I'm getting very disappointed about scanning in a MacBook Pro, everything is a big deal trying to scan something even from a basic multifunction printer.  I really need help!!
    Thanks for asking.

  • Automator Runner is blocking my use of the HP Officejet Pro 8600 scanner

    iMac Serial Number W8947Q405PE can connect to my HP Officejet Pro 8600. I get a message that Automator Runner is blocking the connection.

    Hi Donnanz,
    If you click on this link, it will tell you which operating system you're running and from there, I can find the driver and software for you that you will need for your computer and printer.
    What's my Operating System?
    Another option for you, would be to click on this link to get to the driver website, select which operating system you are running and from there you can find the printer software and driver.
    HP Officejet Pro 8600 e-All-in-One Printer - N911a Drivers
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • I have an MacBook Pro 10.6, using disk utility I tried to verify my disk, but it came up with the message, please use your start up disk, I tried this, starting the computer up and pressing C, but it ejected the disk, the same thing happened while I runni

    I have an MacBook Pro 10.6, using disk utility I tried to verify my disk, but it came up with the message, please use your start up disk, I tried this, starting the computer up and pressing C, but it ejected the disk, the same thing happened while I running the computer. Is the hard drive damaged as laptop doesn't seem to recognize the start up disk ? If so, I presume I will have to put in a new one.
    There haven't been any problems with the computer, apart from a sticky curser,I have run a permissions programme from disk utility, there were a lot of different ones, but it seem to be able to fix them.
    Any comments or ideas ?
    Thank you in anticipation.

    First backup your users files off the machine to a external storage drive (not TimeMachine!)
    Most commonly used backup methods
    Next to startup from the disk, have it inserted, hold c or option/alt (wired or built in keyboard) and then boot the computer and or select the disk when it appears and click the arrow.
    Disk Utility is under the Utilities menu on the second screen.
    Step by Step to fix your Mac
    If you used the wrong 10.6 disk, it will spit it out or have issues, use the one that came with that machine or if it's defective, call Apple for a new one.

  • Pros and Cons of using REST over JMS (and other technologies)

    Hey all,
    I am working on a project where we were using JMS initially to send messages between servers. Our front end servers have a RESTful API and use JEE6, with EJB 3.1 entity beans connected to a mysql database and so forth. The back end servers are more like "agents" so to speak.. we send some work for them to do, they do it. They are deployed in GlassFish 3.1 as well, but initially I was using JMS to listen to messages. I learned that JMS onMessage() is not threaded, so in order to facilitate handling of potentially hundreds of messages at once, I had to implement my own threading framework. Basically I used the Executor class. I could have used MDBs, but they are a lot more heavyweight than I needed, as the code within the onMessage was not using any of the container services.
    We ran into other issues, such as deploying our app in a distributed architecture in the cloud like EC2 was painful at best. Currently the cloud services we found don't support multi-cast so the nice "discover" feature for clustering JMS and other applications wasn't going to work. For some odd reason there seems to be little info on building out a scalable JEE application in the cloud. Even the EC2 techs, and RackSpace and two others had nobody that understood how to do it.
    So in light of this, plus the data we were sending via JMS was a number of different types that had to all be together in a group to be processed.. I started looking at using REST. Java/Jersey (JAX-RS) is so easy to implement and has thus far had wide industry adoption. The fact that our API is already using it on the front end meant I could re-use some of the representations on the back end servers, while a few had to be modified as our public API was not quite needed in full on the back end. Replacing JMS took about a day or so to put the "onmessage" handler into a REST form on the back end servers. Being able to submit an object (via JAXB) from the front servers to the back servers was much nicer to work with than building up a MapMessage object full of Map objects to contain the variety of data elements we needed to send as a group to our back end servers. Since it goes as XML, I am looking at using gzip as well, which should compress it by about 90% or so, making it use much less bandwidth and thus be faster. I don't know how JMS handles large messages. We were using HornetQ server and client.
    So I am curious what anyone thinks.. especially anyone that is knowledgeable with JMS and may understand REST as well. What benefits do we lose out on via JMS. Mind you, we were using a single queue and not broadcasting messages.. we wanted to make sure that one and only one end server got the message and handled it.
    Thanks..look forward to anyone's thoughts on this.

    851827 wrote:
    Thank you for the reply. One of the main reasons to switch to REST was JMS is strongly tied to Java. While I believe it can work with other message brokers that other platforms/languages can also use, we didn't want to spend more time researching all those paths. REST is very simple, works very well and is easy to implement in almost any language and platform. Our architecture is basically a front end rest API consumed by clients, and the back end servers are more like worker threads. We apply a set of rules, validations, and such on the front end, then send the work to be done to the back end. We could do it all in one server tier, but we also want to allow other 3rd parties to implement the "worker" server pieces in their own domains with their own language/platform of choice. Now, with this model, they simply provide a URL to send some REST calls to, and send some REST calls back to our servers.well, this sounds like this would be one of those requirements which might make jms not a good fit. as ejp mentioned, message brokers usually have bindings in multiple languages, so jms does not necessarily restrict you from using other languages/platforms as the worker nodes. using a REST based api certainly makes that more simple, though.
    As for load balancing, I am not entirely sure how glassfish or JBoss does it. Last time I did anything with scaling, it involved load balancers in front of servers that were session/cookie aware for stateful needs, and could round robin or based on some load factor on each server send requests to appropriate servers in a cluster. If you're saying that JBoss and/or GlassFish no longer need that.. then how is it done? I read up on HornetQ where a request sent to one ip/hornetq server could "discover" other servers in a cluster and balance the load by sending requests to other hornetq servers. I assume this is how the JEE containers are now doing it? The problem with that to me is.. you have one server that is loaded with all incoming traffic and then has to resend it on to other servers in the cluster. With enough load, it seems that the glassfish or jboss server become a load balancer and not doing what they were designed to do.. be a JEE container. I don't recall now if load balancing is in the spec or not..I would think it would not be required to be part of a container though, including session replication and such? Is that part of the spec now?you are confusing many different types of scaling. different layers of the jee stack scale in different ways. you usually scale/load balance at the web layer by putting a load balancer in front of your servers. at the ejb layer, however, you don't necessarily need that. in jboss, the client-side stub for invoking remote ejbs in a cluster will actually include the addresses for all the boxes and do some sort of work distribution itself. so, no given ejb server would be receiving all the incoming load. for jms, again, there are various points of work to consider. you have the message broker itself which is scaled/load balanced in whatever fashion it supports (don't know many details on actual message broker impls). but, for the mdbs themselves, each jee server is pretty independent. each jee server in the cluster will start a pool of mdbs and setup a connection to the relevant queue. then, the incoming messages will be distributed to the various servers and mdbs accordingly. again, no single box will be more loaded than any other.
    load balancing/clustering is not part of the jee "spec", but it is one of the many features that a decent jee server will handle for you. the point of jee was to specify patterns for doing work which, if followed, allow the app server to do all the "hard" parts. some of those features are required (transactions, authentication, etc), and some of those features are not (clustering, load-balancing, other robustness features).
    I still would think dedicated load balancers, whether physical hardware or virtual software running in a cloud/VM setup would be a better solution for handling load to different tiers?like i said, that depends on the tier. makes sense in some situations, not others. (for one thing, load-balancers tend to be http based, so they don't work so well for non-http protocols.)

  • Error message when setting up Road Runner Email on my new Macbook Pro

    I get the following error message when setting up my RR account. 
    Logging in to the neo.rr.com POP server “pop-server.neo.rr.com” failed. Make sure the user name and password you entered are correct, then click Continue. If the information isn’t correct, you cannot receive messages.
    I go to the next steps and everything looks like it should. 
    Help

    Hello Jen,
    Congratulations on your new MacBook Pro!  I understand how important is to have your email account setup on your new computer. I found a couple of resources that I think might help.
    You can check the Mail Setup Assistant for the server settings for common email providers.  I recommend checking your email settings here first to verify they match what you have in the Mail application:
    Mail Setup Assistant
    https://www.apple.com/support/macosx/mailassistant/
    If the Mail Setup Assistant does not provide settings for your email account, you can use the following article when contacting your email service provider to gather the necessary information to setup your account:
    Configuring Mail for your email account
    http://support.apple.com/kb/HT1277
    If you are able to setup your account but messages are not being downloaded, I recommend reviewing the following article:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/TS3276
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Acrobat XI Pro wont install on Mavericks Mac

    Hoping someone might be able to help.
    Downloaded Acrobat XI Pro trail
    Successful
    But will not install on Mac running Mavericks OS 10.9.2
    Message returned at very end of install process during the running package scripts stage is
    "The Installation Failed ! The installer encountered an error that caused the installation to fail. Contact the software manufacturer... etc"
    at a bit of dead end here.... ??
    Thanks

    ok found the file...
    here is the dialogue:
    Marker - 21 Mar 2014 18:22:12
    Mar 21 18:22:42 speedport-2.local Installer[638]: LSExceptions [0x6180000b3560] loaded
    Mar 21 18:22:42 speedport-2.local Installer[638]: @(#)PROGRAM:Install  PROJECT:Install-846
    Mar 21 18:22:42 speedport-2.local Installer[638]: @(#)PROGRAM:Installer  PROJECT:Installer-721
    Mar 21 18:22:42 speedport-2.local Installer[638]: Hardware: iMac14,1 @ 2.70 GHz (x 4), 8192 MB RAM
    Mar 21 18:22:42 speedport-2.local Installer[638]: Running OS Build: Mac OS X 10.9.2 (13C64)
    Mar 21 18:22:42 speedport-2.local Installer[638]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Mar 21 18:22:42 speedport-2.local Installer[638]: Env: TMPDIR=/var/folders/fk/y_2gt1z16lzcts8ty9gvpnlh0000gn/T/
    Mar 21 18:22:42 speedport-2.local Installer[638]: Env: SHELL=/bin/bash
    Mar 21 18:22:42 speedport-2.local Installer[638]: Env: HOME=/Users/peterfoss
    Mar 21 18:22:42 speedport-2.local Installer[638]: Env: USER=peterfoss
    Mar 21 18:22:42 speedport-2.local Installer[638]: Env: LOGNAME=peterfoss
    Mar 21 18:22:42 speedport-2.local Installer[638]: Env: SSH_AUTH_SOCK=/tmp/launch-RxlIb5/Listeners
    Mar 21 18:22:42 speedport-2.local Installer[638]: Env: Apple_PubSub_Socket_Render=/tmp/launch-oJI4oY/Render
    Mar 21 18:22:42 speedport-2.local Installer[638]: Env: __CF_USER_TEXT_ENCODING=0x1F5:0:0
    Mar 21 18:22:42 speedport-2.local Installer[638]: Env: __CHECKFIX1436934=1
    Mar 21 18:22:42 speedport-2.local Installer[638]:  Adobe Acrobat XI Pro   Installation Log
    Mar 21 18:22:42 speedport-2.local Installer[638]: Opened from: /Volumes/Acrobat 11/Adobe Acrobat XI/Adobe Acrobat XI Pro Installer.pkg
    Mar 21 18:22:43 speedport-2.local Installer[638]: Product archive /Volumes/Acrobat 11/Adobe Acrobat XI/Adobe Acrobat XI Pro Installer.pkg trustLevel=202
    Mar 21 18:22:47 speedport-2.local Installer[638]: JS: 10.6 or higher:1
    Mar 21 18:22:53 speedport-2.local Installer[638]: LSExceptions [0x6180000b3560] unloaded
    Mar 21 18:22:53 speedport-2.local Installer[638]: InstallerStatusNotifications plugin loaded
    Mar 21 18:23:00 speedport-2.local runner[643]: Administrator authorization granted.
    Mar 21 18:23:00 speedport-2.local Installer[638]: ================================================================================
    Mar 21 18:23:00 speedport-2.local Installer[638]: User picked Standard Install
    Mar 21 18:23:00 speedport-2.local Installer[638]: Choices selected for installation:
    Mar 21 18:23:00 speedport-2.local Installer[638]:           Install: " Adobe Acrobat XI Pro "
    Mar 21 18:23:00 speedport-2.local Installer[638]:                     Adobe Acrobat XI Pro Installer.pkg#acrobatpreinstall.pkg : com.adobe.acrobat.11.viewer.preinstall.pkg.MUI : 11.0.0
    Mar 21 18:23:00 speedport-2.local Installer[638]:                     Adobe Acrobat XI Pro Installer.pkg#AdobeApplicationManager.pkg : com.adobe.PDApp.AdobeApplicationManager.installer.pkg : 1
    Mar 21 18:23:00 speedport-2.local Installer[638]:           Install: "Application" at path "//Applications/Adobe Acrobat XI Pro"
    Mar 21 18:23:00 speedport-2.local Installer[638]:                     Adobe Acrobat XI Pro Installer.pkg#application.pkg : com.adobe.acrobat.11.viewer.app.pkg.MUI : 11.0.0
    Mar 21 18:23:00 speedport-2.local Installer[638]:           Install: "Browser Plug-In"
    Mar 21 18:23:00 speedport-2.local Installer[638]:                     Adobe Acrobat XI Pro Installer.pkg#browserPlugin.pkg : com.adobe.acrobat.11.viewer.browser.pkg.MUI : 11.0.0
    Mar 21 18:23:00 speedport-2.local Installer[638]:                     Adobe Acrobat XI Pro Installer.pkg#support.pkg : com.adobe.acrobat.11.viewer.appsupport.pkg.MUI : 11.0.0
    Mar 21 18:23:00 speedport-2.local Installer[638]:                     Adobe Acrobat XI Pro Installer.pkg#automator.pkg : com.adobe.acrobat.11.viewer.print_automator.pkg.MUI : 11.0.0
    Mar 21 18:23:00 speedport-2.local Installer[638]:                     Adobe Acrobat XI Pro Installer.pkg#pdfservices.pkg : com.adobe.acrobat.11.viewer.print_pdf_services.pkg.MUI : 11.0.0
    Mar 21 18:23:00 speedport-2.local Installer[638]: ================================================================================
    Mar 21 18:23:00 speedport-2.local Installer[638]: It took 0.00 seconds to summarize the package selections.
    Mar 21 18:23:00 speedport-2.local Installer[638]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
    Mar 21 18:23:00 speedport-2.local Installer[638]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#acrobatpreinstall.pkg
    Mar 21 18:23:00 speedport-2.local Installer[638]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#AdobeApplicationManager.pkg
    Mar 21 18:23:00 speedport-2.local Installer[638]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#application.pkg
    Mar 21 18:23:00 speedport-2.local Installer[638]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#browserPlugin.pkg
    Mar 21 18:23:00 speedport-2.local Installer[638]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#support.pkg
    Mar 21 18:23:00 speedport-2.local Installer[638]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#automator.pkg
    Mar 21 18:23:00 speedport-2.local Installer[638]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#pdfservices.pkg
    Mar 21 18:23:00 speedport-2.local Installer[638]: Set authorization level to root for session
    Mar 21 18:23:01 speedport-2.local Installer[638]: Will use PK session
    Mar 21 18:23:01 speedport-2.local Installer[638]: Starting installation:
    Mar 21 18:23:01 speedport-2.local Installer[638]: Configuring volume "Macintosh HD"
    Mar 21 18:23:01 speedport-2.local Installer[638]: Preparing disk for local booted install.
    Mar 21 18:23:01 speedport-2.local Installer[638]: Free space on "Macintosh HD": 686.78 GB (686782963712 bytes).
    Mar 21 18:23:01 speedport-2.local Installer[638]: Create temporary directory "/var/folders/fk/y_2gt1z16lzcts8ty9gvpnlh0000gn/T//Install.6388T9MBq"
    Mar 21 18:23:01 speedport-2.local Installer[638]: IFPKInstallElement (7 packages)
    Mar 21 18:23:01 speedport-2.local Installer[638]: Using authorization level of root for IFPKInstallElement
    Mar 21 18:23:01 speedport-2.local installd[649]: installd: Starting
    Mar 21 18:23:01 speedport-2.local installd[649]: installd: uid=0, euid=0
    Mar 21 18:23:01 speedport-2.local installd[649]: PackageKit: Adding client PKInstallDaemonClient pid=638, uid=501 (/System/Library/CoreServices/Installer.app/Contents/MacOS/Installer)
    Mar 21 18:23:01 speedport-2.local Installer[638]: PackageKit: Enqueuing install with boosting
    Mar 21 18:23:01 speedport-2.local installd[649]: PackageKit: ----- Begin install -----
    Mar 21 18:23:01 speedport-2.local installd[649]: PackageKit: request=PKInstallRequest <7 packages, destination=/>
    Mar 21 18:23:01 speedport-2.local installd[649]: PackageKit: packages=(
                  "PKLeopardPackage <file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20 Installer.pkg#acrobatpreinstall.pkg>",
                  "PKLeopardPackage <file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20 Installer.pkg#AdobeApplicationManager.pkg>",
                  "PKLeopardPackage <file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20 Installer.pkg#application.pkg>",
                  "PKLeopardPackage <file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20 Installer.pkg#browserPlugin.pkg>",
                  "PKLeopardPackage <file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20 Installer.pkg#support.pkg>",
                  "PKLeopardPackage <file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20 Installer.pkg#automator.pkg>",
                  "PKLeopardPackage <file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20 Installer.pkg#pdfservices.pkg>"
    Mar 21 18:23:03 speedport-2.local installd[649]: PackageKit: Skipping component "com.adobe.acrobat.pdfviewer" (*-11.0.0-*-*) because the version 11.0.6-11.0.6-*-* is already installed at /Library/Internet Plug-Ins/AdobePDFViewer.plugin.
    Mar 21 18:23:03 speedport-2.local installd[649]: PackageKit: Skipping component "com.adobe.acrobat.pdfviewerNPAPI" (*-11.0.0-*-*) because the version 11.0.6-11.0.6-*-* is already installed at /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin.
    Mar 21 18:23:04 speedport-2.local installd[649]: PackageKit: Extracting file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#acrobatpreinstall.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/26C B1C52-70C2-4E7D-9BBA-D9099AAF8A19.activeSandbox/Root/tmp, uid=0)
    Mar 21 18:23:06 speedport-2.local installd[649]: PackageKit: Extracting file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#AdobeApplicationManager.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/26C B1C52-70C2-4E7D-9BBA-D9099AAF8A19.activeSandbox/Root, uid=0)
    Mar 21 18:23:14 speedport-2.local installd[649]: PackageKit: Extracting file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#application.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/26C B1C52-70C2-4E7D-9BBA-D9099AAF8A19.activeSandbox/Root/Applications/Adobe Acrobat XI Pro, uid=0)
    Mar 21 18:23:34 speedport-2.local installd[649]: PackageKit: Extracting file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#browserPlugin.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/26C B1C52-70C2-4E7D-9BBA-D9099AAF8A19.activeSandbox/Root/Library/Internet Plug-Ins, uid=0)
    Mar 21 18:23:35 speedport-2.local installd[649]: PackageKit: Extracting file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#support.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/26C B1C52-70C2-4E7D-9BBA-D9099AAF8A19.activeSandbox/Root/Library/Application Support, uid=0)
    Mar 21 18:23:37 speedport-2.local installd[649]: PackageKit: Extracting file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#automator.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/26C B1C52-70C2-4E7D-9BBA-D9099AAF8A19.activeSandbox/Root/Library/Automator, uid=0)
    Mar 21 18:23:37 speedport-2.local installd[649]: PackageKit: Extracting file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20I nstaller.pkg#pdfservices.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/26C B1C52-70C2-4E7D-9BBA-D9099AAF8A19.activeSandbox/Root/Library/PDF Services, uid=0)
    Mar 21 18:23:37 speedport-2.local installd[649]: PackageKit: prevent user idle system sleep
    Mar 21 18:23:37 speedport-2.local installd[649]: PackageKit: suspending backupd
    Mar 21 18:23:38 speedport-2.local installd[649]: PackageKit: Executing script "./preinstall" in /private/tmp/PKInstallSandbox.NWkOt5/Scripts/com.adobe.acrobat.11.viewer.preinstall.pkg.M UI.yMr7Mp
    Mar 21 18:23:38 speedport-2.local install_monitor[651]: Temporarily excluding: /Applications, /Library, /System, /bin, /private, /sbin, /usr
    Mar 21 18:23:39 speedport-2.local installd[649]: PackageKit: Executing script "./preinstall" in /private/tmp/PKInstallSandbox.NWkOt5/Scripts/com.adobe.PDApp.AdobeApplicationManager.inst aller.pkg.jDncBB
    Mar 21 18:23:39 speedport-2.local installd[649]: ./preinstall: AAMInstaller: PRE AAM INSTALL....................
    Mar 21 18:23:39 speedport-2.local installd[649]: ./preinstall: AAMInstaller: AAMIAssetsDir /private/tmp/PKInstallSandbox.NWkOt5/Scripts/com.adobe.PDApp.AdobeApplicationManager.inst aller.pkg.jDncBB
    Mar 21 18:23:39 speedport-2.local installd[649]: ./preinstall: AAMInstaller: Checking for ignore AAM.
    Mar 21 18:23:39 speedport-2.local installd[649]: ./preinstall: AAMInstaller: ignore_aam return code 1.
    Mar 21 18:23:39 speedport-2.local installd[649]: ./preinstall: AAMInstaller: Launch AAM Installation in silent mode...
    Mar 21 18:23:39 speedport-2.local installd[649]: ./preinstall: Starting Installer...
    Mar 21 18:23:39 speedport-2.local installd[649]: ./preinstall: In Silent mode.
    Mar 21 18:24:13 speedport-2.local installd[649]: ./preinstall: Installation successful.
    Mar 21 18:24:13 speedport-2.local installd[649]: ./preinstall: Exiting Installer with Code: 0
    Mar 21 18:24:13 speedport-2.local installd[649]: ./preinstall: AAMInstaller: Exit status: 0
    Mar 21 18:24:13 speedport-2.local installd[649]: ./preinstall: AAMInstaller: For more detailed logs check:~/Library/Logs/PDApp.log
    Mar 21 18:24:13 speedport-2.local installd[649]: ./preinstall: AAMInstaller: AAM Install Success.
    Mar 21 18:24:13 speedport-2.local installd[649]: ./preinstall: AAMInstaller: END OF PRE AAM INSTALL....................
    Mar 21 18:24:13 speedport-2.local installd[649]: PackageKit: Executing script "./preinstall" in /private/tmp/PKInstallSandbox.NWkOt5/Scripts/com.adobe.acrobat.11.viewer.app.pkg.MUI.Tbt8 Cx
    Mar 21 18:24:14 speedport-2.local installd[649]: PackageKit: Using trashcan path /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/PKInstallSandboxTrash/26CB1C52-70C2-4E7D -9BBA-D9099AAF8A19.sandboxTrash for sandbox /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/26CB1C52-70C2-4E 7D-9BBA-D9099AAF8A19.activeSandbox
    Mar 21 18:24:14 speedport-2.local installd[649]: PackageKit: Shoving /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/26CB1C52-70C2-4E 7D-9BBA-D9099AAF8A19.activeSandbox/Root (3 items) to /
    Mar 21 18:24:20 speedport-2.local installd[649]: PackageKit: Executing script "./postinstall" in /private/tmp/PKInstallSandbox.NWkOt5/Scripts/com.adobe.PDApp.AdobeApplicationManager.inst aller.pkg.jDncBB
    Mar 21 18:24:20 speedport-2.local installd[649]: ./postinstall: AAMInstaller: POST AAM INSTALL....................
    Mar 21 18:24:20 speedport-2.local installd[649]: ./postinstall: AAMInstaller: END OF POST AAM INSTALL....................
    Mar 21 18:24:20 speedport-2.local installd[649]: PackageKit: Executing script "./postinstall" in /private/tmp/PKInstallSandbox.NWkOt5/Scripts/com.adobe.acrobat.11.viewer.app.pkg.MUI.Tbt8 Cx
    Mar 21 18:24:21 speedport-2.local installd[649]: ./postinstall: Unexpected element in installation dir: Icon
              . Not customizing the icon.
    Mar 21 18:24:22 speedport-2.local installd[649]: ./postinstall: AcroInstallLocaleID=MUI added in AcroLocale.plist of Adobe Acrobat Pro.app/Contents
    Mar 21 18:24:23 speedport-2.local installd[649]: ./postinstall: Replacing the hive AdobePDFSettings of /Library/Preferences/com.adobe.PDFAdminSettings.plist with that of /private/tmp/PKInstallSandbox.NWkOt5/Scripts/com.adobe.acrobat.11.viewer.app.pkg.MUI.Tbt8 Cx/Resources/com.adobe.PDFAdminSettings.plist
    Mar 21 18:24:23 speedport-2.local installd[649]: ./postinstall: Error in converting the plist /Library/Preferences/com.adobe.PDFAdminSettings.plist to xml1 format
    Mar 21 18:24:23 speedport-2.local installd[649]: ./postinstall: Could not install PDFAdminSettings
    Mar 21 18:24:23 speedport-2.local install_monitor[651]: Re-included: /Applications, /Library, /System, /bin, /private, /sbin, /usr
    Mar 21 18:24:24 speedport-2.local installd[649]: PackageKit: releasing backupd
    Mar 21 18:24:24 speedport-2.local installd[649]: PackageKit: allow user idle system sleep
    Mar 21 18:24:24 speedport-2.local installd[649]: PackageKit: Install Failed: Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “Adobe Acrobat XI Pro Installer.pkg”." UserInfo=0x7f975487b370 {NSFilePath=./postinstall, NSURL=file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20P ro%20Installer.pkg#application.pkg, PKInstallPackageIdentifier=com.adobe.acrobat.11.viewer.app.pkg.MUI, NSLocalizedDescription=An error occurred while running scripts from the package “Adobe Acrobat XI Pro Installer.pkg”.} {
                  NSFilePath = "./postinstall";
                  NSLocalizedDescription = "An error occurred while running scripts from the package \U201cAdobe Acrobat XI Pro Installer.pkg\U201d.";
                  NSURL = "file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20Pro%20 Installer.pkg#application.pkg";
                  PKInstallPackageIdentifier = "com.adobe.acrobat.11.viewer.app.pkg.MUI";
    Mar 21 18:24:24 speedport-2.local Installer[638]: install:didFailWithError:Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “Adobe Acrobat XI Pro Installer.pkg”." UserInfo=0x6000002e5a80 {NSFilePath=./postinstall, NSURL=file://localhost/Volumes/Acrobat%2011/Adobe%20Acrobat%20XI/Adobe%20Acrobat%20XI%20P ro%20Installer.pkg#application.pkg, PKInstallPackageIdentifier=com.adobe.acrobat.11.viewer.app.pkg.MUI, NSLocalizedDescription=An error occurred while running scripts from the package “Adobe Acrobat XI Pro Installer.pkg”.}
    Mar 21 18:24:24 speedport-2.local installd[649]: PackageKit: Running idle tasks
    Mar 21 18:24:24 speedport-2.local installd[649]: PackageKit: Removing client PKInstallDaemonClient pid=638, uid=501 (/System/Library/CoreServices/Installer.app/Contents/MacOS/Installer)
    Mar 21 18:24:24 speedport-2.local installd[649]: PackageKit: Done with sandbox removals

  • Where can I get some feet for my 15" Macbook Pro (mid 2009) without the cost of A$200

    I am loosing my mind. Can anuone please help?
    I have a 15" mid 2009 Macbook Pro, that I love. It is my 6th Apple computer so it's not like I haven't contributed to the Apple estate.
    I use it for work and study so it pretty much runns continuously and has since its purchase in 2009. So, as you can imagine wear and tear are starting to show.
    3 of the 4 feet have come off and this is making me crazy. It does not ventilate properly and doesn't sit well on the desk. I have attempted to buy all manner of feet to fit it, but nothing works.
    So, I took it to my local Apple store a while ago in search of some replacement feet for it. Because, Apple have to inspect all repair jobs.
    I cannot buy, the feet alone, I must buy the complete bottom housing for it at the cost of A$199.00 (WHAT!!!, I HEAR YOU SAY!!!, and that is pretty much exactly what I said when I was told this by my apple genius (and yes, I did say Genius with a sarcastic tone), but certainly the thoughts that ran through my mind were far stronger).
    So, in my eternal search to make my perfectly working but incredibly annoying, beloved macbook pro be as good as ever, I have been to 2 "apple" dealers in the hope to buy this product at a cheaper price. Because, 1. I don't want the base, only the feet and 2. I don't want to pay 200 bucks for it.
    Anyway. the first purchase I made was through some dodgy chinese website. Apparently, there is no one at the other end, because all corespondense was ignored. But I did get my money back.
    But the second has really done my head in. www.applecomponents.com had advertised the part at $US69. So, I purchased and paid with paypal and all was well with the world. But, This morning I recieved the following email. And this is the entirity of the message from a business with obviously no customer service skill, not address, no phone number. Just a rude individual at the end of the email.
    Remember, this was the whole email...
    "so it's looking like this part was in the wrong bin. we don't actually have one. we can get new, but it would cost around $150.
    please advise?"
    ***? (and I am really holding back bolding that text and setting the font size to 68).
    In Australia, if a product is advertised at a price, that is what we pay for it.
    So, I re-check the website and the price has increase $100 but, it still says "in stock".
    Right about now, I am starting to get quite frustrated, with this faceless nameless person/company/shonk.
    I get in touch with some consumer experts and reply and I recieve the following reponse...
    "it was an honest mistake. we have a lot parts. we haven't sold one of these bottom cases for over 6 months. whoever labeled em' did it wrong. I don't have the part, but I have access to ordering it new with my vendor - hence the price change.
    feel free to call me anytime and we can talk it out.
    thanks
    phillip
    503-806-6423"
    (not really sure where this phone number resides so the 10 digits are useless)
    Now, Phillip is not the person I made the payment to. The payment was made to Alex Kraft.
    Who, After I demanded the product. Has just refunded my money and dissapeard off the planet.
    I am sick and tired of these shonks and it is now my mission to stop these people from trading.
    Sorry for my digression but, I feel, all should be aware of these people. Scammers.
    But, if anyone knows where I can get some feet from someone who will bloddy supply them at a price that is reasonable.
    Please let me know.
    Thanks

    your situation is not new.  Others have been told by Apple that they have to purchase the entire bottom panel in order to replace the feet.  There are engineering solutions that can solve this problem, but to pay nearly $200 to replace a part that costs less than $1 (I am being very, very conservative) to manufacture is too excessive.
    I have had the feet come off as well.  Fortunately for me, I have not lost them and have been able to replace them.  Why they cannot sell them individually is a puzzle to me.  Perhaps some bean counter at Apple feels its too much effort to have these items individually  in their inventory.  I have had nothing but good comments to say about Apple, but sadly this is an exception.
    To address your problem, I have seen second hand ones advertised on Ebay.  The price was a bit steep, $10 as I remember.  Other wise, wjosten's suggestion is the only alternative.
    Ciao

  • Cannot install Mountain Leon on Mac book pro 17 mid 2010

    Hello.
    I cannot install Mountain Leon on Mac book pro 17 mid 2010, it's fail with error on 17% or 8% of installation, some times it install, I have to make from 3 to 20 times to retry installation before I can get success.
    If it success it works fine, but sometimes it's hang and my only way it's to hard power off it with power button.
    This problem with hanging was alway from first days, but there is no problem with installation OS Lion or Snow leopard.
    Last year I was in USA and bring it to apple they just change HDD, but problem didn't solved. In my country there is no official apple support, thats why there is no way to me to use warranty.
    Here is log of two Mountain Lion installations:
    I was thinking of upgrading firmaware, or maybe some firmware for HDD controller or something like that. I tried differnt internal HDD, including original, brand new, and one which was replaced by apple. Could any one point me to right direction?
    Log 1
    Sep  3 14:58:01 localhost opendirectoryd[101]: opendirectoryd (build 197.11.16) launched - installer mode
    Sep  3 14:58:01 localhost opendirectoryd[101]: Logging level limit changed to 'notice'
    Sep  3 14:58:01 localhost opendirectoryd[101]: Initialize trigger support
    Sep  3 14:58:01 localhost opendirectoryd[101]: created endpoint for mach service 'com.apple.private.opendirectoryd.rpc' with work limit 10
    Sep  3 14:58:01 localhost opendirectoryd[101]: set default handler for RPC 'reset_cache'
    Sep  3 14:58:01 localhost opendirectoryd[101]: set default handler for RPC 'reset_statistics'
    Sep  3 14:58:01 localhost opendirectoryd[101]: set default handler for RPC 'show'
    Sep  3 14:58:01 localhost opendirectoryd[101]: starting endpoint for service 'com.apple.private.opendirectoryd.rpc'
    Sep  3 14:58:02 localhost opendirectoryd[101]: no dynamic data found at '/System/Library/OpenDirectory/DynamicData/Configure.plist'
    Sep  3 14:58:02 localhost opendirectoryd[101]: Registered node with name '/Configure' as hidden
    Sep  3 14:58:02 localhost opendirectoryd[101]: no dynamic data found at '/System/Library/OpenDirectory/DynamicData/Local.plist'
    Sep  3 14:58:02 localhost opendirectoryd[101]: Registered node with name '/Local' as hidden
    Sep  3 14:58:08 localhost Unknown[284]: kern.boottime: { sec = 1346709474, usec = 0 } Mon Sep  3 14:57:54 2012
    Sep  3 14:58:08 localhost Unknown[294]: Launching the Language Chooser for an OS Install
    Sep  3 14:58:16 localhost configd[112]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Sep  3 14:58:16 localhost configd[112]: DHCP en1: INIT transmit failed
    Sep  3 14:58:23 localhost Unknown[296]: 2012-09-03 14:58:23.235 LCA[295:707] NSSoftLinking - The Librarian framework's library couldn't be loaded from (null).
    Sep  3 14:58:23 localhost Unknown[296]: 2012-09-03 14:58:23.237 LCA[295:707] NSSoftLinking - The function 'LBCurrentProcessHasUbiquityContainer' can't be found in the Librarian framework.
    Sep  3 14:58:24 localhost configd[112]: subnet_route_if_index: can't get interface name
    Sep  3 14:58:28 localhost Unknown[296]: 2012-09-03 14:58:28.117 LCA[295:707] LCA+BT2: systemHasBluetooth entry
    Sep  3 14:58:28 localhost Unknown[296]: 2012-09-03 14:58:28.117 LCA[295:707] LCA+BT2: [[NSProcessInfo processInfo] processName] LCA
    Sep  3 14:58:28 localhost Unknown[296]: 2012-09-03 14:58:28.118 LCA[295:707] LCA+BT2: systemHasBluetooth exit - controller = 0x7f89a30e85e0
    Sep  3 14:58:28 localhost LCA[295]: Using keyboard layout 0
    Sep  3 14:58:28 localhost Unknown[296]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Sep  3 14:58:28 localhost Unknown[296]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Sep  3 14:58:28 localhost Unknown[296]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Sep  3 14:58:28 localhost Unknown[296]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Sep  3 14:58:28 localhost LCA[295]: Found primary language hint "ru"
    Sep  3 14:58:29 localhost LCA[295]: Using keyboard layout 0
    Sep  3 14:58:29 localhost LCA[295]: Found primary language hint "ru"
    Sep  3 14:58:30 localhost LCA[295]: Using keyboard layout 0
    Sep  3 14:58:30 localhost LCA[295]: Found primary language hint "ru"
    Sep  3 14:58:30 localhost LCA[295]: Launching the Installer using language code "ru"
    Sep  3 14:58:30 localhost Unknown[296]: 2012-09-03 14:58:30.748 OS X Installer[315:707] NSSoftLinking - The Librarian framework's library couldn't be loaded from (null).
    Sep  3 14:58:30 localhost Unknown[296]: 2012-09-03 14:58:30.750 OS X Installer[315:707] NSSoftLinking - The function 'LBCurrentProcessHasUbiquityContainer' can't be found in the Librarian framework.
    Sep  3 14:58:30 localhost OSInstaller[315]: OS X Installer application started
    Sep  3 14:58:30 localhost OSInstaller[315]: 1 display(s) found.
    Sep  3 14:58:30 localhost OSInstaller[315]: Display[1] is NOT using OpenGL acceleration.
    Sep  3 14:58:30 localhost OSInstaller[315]: @(#)PROGRAM:Install  PROJECT:Install-729
    Sep  3 14:58:30 localhost OSInstaller[315]: @(#)PROGRAM:OS X Installer  PROJECT:OSInstaller-419
    Sep  3 14:58:30 localhost OSInstaller[315]: Hardware: MacBookPro6,1 @ 2.66 GHz (x 4), 8192 MB RAM
    Sep  3 14:58:30 localhost OSInstaller[315]: Running OS Build: Mac OS X 10.8.1 (12B19)
    Sep  3 14:58:30 localhost OSInstaller[315]: Env: DYLD_NO_FIX_PREBINDING=1
    Sep  3 14:58:30 localhost OSInstaller[315]: Env: __CF_USER_TEXT_ENCODING=0x0:0:0
    Sep  3 14:58:30 localhost OSInstaller[315]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Sep  3 14:58:30 localhost OSInstaller[315]: Env: PWD=/
    Sep  3 14:58:30 localhost OSInstaller[315]: Env: SHLVL=1
    Sep  3 14:58:30 localhost OSInstaller[315]: Env: __OSINSTALL_ENVIRONMENT=1
    Sep  3 14:58:30 localhost OSInstaller[315]: Env: CI_DEFAULT_OPENCL_USAGE=0
    Sep  3 14:58:30 localhost OSInstaller[315]: Env: OS_INSTALL=1
    Sep  3 14:58:30 localhost OSInstaller[315]: Env: _=/System/Installation/CDIS/LCA.app/Contents/MacOS/LCA
    Sep  3 14:58:31 localhost OSInstaller[315]: Using product PKSecureNetEnabledProduct <file://localhost/Volumes/System/OS%20X%20Install%20Data/> at distance 5
    Sep  3 14:58:31 localhost OSInstaller[315]: Opening OSInstall automation file '/Volumes/System/OS X Install Data/minstallconfig.xml'.
    Sep  3 14:58:32 localhost OSInstaller[315]: Using product <OSInstallRootProduct> at distance 5
    Sep  3 14:58:32 localhost OSInstaller[315]: Using product <OSInstallDVDProduct> based on media at /Volumes/Mac OS X Install DVD at distance 5
    Sep  3 14:58:33 localhost OSInstaller[315]: /Volumes/System/OS X Install Data/MacOSXInstaller.choiceChanges file found.
    Sep  3 14:58:33 localhost OSInstaller[315]: JS: installCheckScript threw exception TypeError: 'null' is not an object (evaluating 'my.target.systemVersion')
    Sep  3 14:58:33 localhost OSInstaller[315]: Automated Install: Found requested target at /Volumes/System.
    Sep  3 14:58:33 localhost OSInstaller[315]: Applied choice changes from /Volumes/System/OS X Install Data/MacOSXInstaller.choiceChanges.
    Sep  3 14:58:33 localhost OSInstaller[315]: Allowing machine sleep.
    Sep  3 14:58:33 localhost OSInstaller[315]: Preventing machine sleep.
    Sep  3 14:58:33 localhost OSInstaller[315]: InstallerStatusNotifications plugin loaded
    Sep  3 14:58:33 localhost OSInstaller[315]: =============================================================================== =
    Sep  3 14:58:33 localhost OSInstaller[315]: Choices selected for installation:
    Sep  3 14:58:33 localhost OSInstaller[315]:           Установить: "OS X"
    Sep  3 14:58:33 localhost OSInstaller[315]:                     BaseSystemBinaries.pkg : com.apple.pkg.BaseSystemBinaries : 10.8.0.1.1.1306847324
    Sep  3 14:58:33 localhost OSInstaller[315]:                     BaseSystemResources.pkg : com.apple.pkg.BaseSystemResources : 10.8.0.1.1.1306847324
    Sep  3 14:58:33 localhost OSInstaller[315]:                     OSInstall.mpkg : com.apple.mpkg.OSInstall : 10.8.0
    Sep  3 14:58:33 localhost OSInstaller[315]:                     Essentials.pkg : com.apple.pkg.Essentials : 10.8.0.1.1.1306847324
    Sep  3 14:58:33 localhost OSInstaller[315]:                     BSD.pkg : com.apple.pkg.BSD : 10.8.0.1.1.1306847324
    Sep  3 14:58:33 localhost OSInstaller[315]:                     JavaTools.pkg : com.apple.pkg.JavaTools : 1.0.1.1306847324
    Sep  3 14:58:33 localhost OSInstaller[315]:                     RemoteDesktop.pkg : com.apple.pkg.RemoteDesktop : 10.8.0.1.1.1306847324
    Sep  3 14:58:33 localhost OSInstaller[315]:                     AdditionalEssentials.pkg : com.apple.pkg.AdditionalEssentials : 10.8.0.1.1.1306847324
    Sep  3 14:58:33 localhost OSInstaller[315]:                     AdditionalSpeechVoices.pkg : com.apple.pkg.AdditionalSpeechVoices : 10.8.0.1.1.1306847324
    Sep  3 14:58:33 localhost OSInstaller[315]:                     AsianLanguagesSupport.pkg : com.apple.pkg.AsianLanguagesSupport : 10.8.0.1.1.1306847324
    Sep  3 14:58:33 localhost OSInstaller[315]:                     MediaFiles.pkg : com.apple.pkg.MediaFiles : 10.8.0.1.1.1306847324
    Sep  3 14:58:33 localhost OSInstaller[315]:                     JavaEssentials.pkg : com.apple.pkg.JavaEssentials : 1.0.1.1306847324
    Sep  3 14:58:33 localhost OSInstaller[315]:                     OxfordDictionaries.pkg : com.apple.pkg.OxfordDictionaries : 10.8.0.1.1.1306847324
    Sep  3 14:58:33 localhost OSInstaller[315]:                     X11redirect.pkg : com.apple.pkg.X11redirect : 10.8.0.1.1.1306847324
    Sep  3 14:58:33 localhost OSInstaller[315]:                     OSInstall.pkg : com.apple.pkg.OSInstall : 10.8.0.1
    Sep  3 14:58:33 localhost OSInstaller[315]: =============================================================================== =
    Sep  3 14:58:33 localhost OSInstaller[315]: It took 0.00 seconds to summarize the package selections.
    Sep  3 14:58:33 localhost OSInstaller[315]: Memory statistics for 'Установка' pane:
    Sep  3 14:58:33 localhost OSInstaller[315]: Physical Memory Allocation:   981 MB wired,     4 MB trapped,   166 MB active,   119 MB inactive,  6922 MB free,  7207 MB usable,  8192 MB total
    Sep  3 14:58:33 localhost OSInstaller[315]: Dist disk is not root.
    Sep  3 14:58:33 localhost OSInstaller[315]: Set authorization level to root for session
    Sep  3 14:58:33 localhost runner[319]: Administrator authorization granted.
    Sep  3 14:58:33 localhost OSInstaller[315]: Recovery system image located at "/Volumes/Mac OS X Install DVD/BaseSystem.dmg"
    Sep  3 14:58:34 localhost OSInstaller[315]: Remote Install Assistant found at :(null)
    Sep  3 14:58:34 localhost OSInstaller[315]: Memory statistics for 'Установка OS X' pane:
    Sep  3 14:58:34 localhost OSInstaller[315]: Physical Memory Allocation:   983 MB wired,     4 MB trapped,   166 MB active,   119 MB inactive,  6920 MB free,  7205 MB usable,  8192 MB total
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/BaseSystemBinaries.pkg (521389056 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/BaseSystemResources.pkg (323151872 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: IF will install package file://localhost/System/Installation/Packages/OSInstall.mpkg (0 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/Essentials.pkg (3943123968 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/BSD.pkg (621375488 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/JavaTools.pkg (8970240 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/RemoteDesktop.pkg (67584 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: IF will install package file://localhost/System/Installation/Packages/OSInstall.mpkg (0 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/AdditionalEssentials.pkg (139015168 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/AdditionalSpeechVoices.pkg (293474304 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/AsianLanguagesSupport.pkg (10115072 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/MediaFiles.pkg (88344576 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/JavaEssentials.pkg (17098752 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/OxfordDictionaries.pkg (101970944 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/X11redirect.pkg (3533824 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/OSInstall.pkg (0 b)
    Sep  3 14:58:34 localhost OSInstaller[315]: Setting external root to: /
    Sep  3 14:58:34 localhost OSInstaller[315]: OSI: com.apple.pkg.BaseSystemResources remapped external root path to: /
    Sep  3 14:58:34 localhost OSInstaller[315]: Total install size including padding: 7145372672 b + 0 b non-OS collection items
    Sep  3 14:58:34 localhost OSInstaller[315]: Can not connect to /var/run/systemkeychaincheck.socket: No such file or directory
    Sep  3 14:58:34 localhost Unknown[296]: 2012-09-03 14:58:34.369 OS X Installer[315:707] *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Sep  3 14:58:34 localhost Unknown[296]: 2012-09-03 14:58:34.370 OS X Installer[315:707] *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Sep  3 14:58:34 localhost OSInstaller[315]: Failed to delete automation file: Том «System» доступен только для чтения.
    Sep  3 14:58:34 localhost OSInstaller[315]: PK will install signed package file://localhost/Volumes/System/OS%20X%20Install%20Data/OSX_10_8_IncompatibleAp pList.pkg
    Sep  3 14:58:34 localhost OSInstaller[315]: PFPackage::packageWithURL - can't instantiate package: /System/Installation/Packages/OSInstall.mpkg
    Sep  3 14:58:34 localhost OSInstaller[315]: Error opening package "OSInstall.mpkg".
    Sep  3 14:58:34 localhost Unknown[296]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Sep  3 14:58:34 localhost Unknown[296]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Sep  3 14:58:34 localhost Unknown[296]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Sep  3 14:58:34 localhost Unknown[296]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Sep  3 14:58:35 localhost OSInstaller[315]: Starting installation:
    Sep  3 14:58:35 localhost OSInstaller[315]: Performing volume consistency check on 'System'.
    Sep  3 14:58:35 localhost OSInstaller[315]: Checking Volume
    Sep  3 14:58:35 localhost OSInstaller[315]: Проверяю файловую систему
    Sep  3 14:58:35 localhost OSInstaller[315]: Проверяю журнальный том HFS Plus.
    Sep  3 14:58:35 localhost OSInstaller[315]: Проверка файла переполнения экстентов.
    Sep  3 14:58:36 localhost OSInstaller[315]: Проверка файла каталога.
    Sep  3 14:58:38 localhost OSInstaller[315]: Проверяю многосвязные файлы.
    Sep  3 14:58:38 localhost OSInstaller[315]: Проверка иерархии каталога.
    Sep  3 14:58:38 localhost OSInstaller[315]: Проверка файла расширенных атрибутов.
    Sep  3 14:58:40 localhost OSInstaller[315]: Проверяю битовый массив тома.
    Sep  3 14:58:40 localhost OSInstaller[315]: Проверяю информацию тома.
    Sep  3 14:58:40 localhost OSInstaller[315]: Том System, по-видимому, в порядке.
    Sep  3 14:58:41 localhost OSInstaller[315]: Volume passed consistency checks.
    Sep  3 14:58:41 localhost OSInstaller[315]: Promoting target imgsrc volume /Volumes/System.
    Sep  3 14:58:41 localhost OSInstaller[315]: Calculating expected install size requirements
    Sep  3 14:58:41 localhost OSInstaller[315]: Reserved for install:    7727.8 MB (0.0 MB non-OS collection items, 582.4 MB recovery system)
    Sep  3 14:58:41 localhost OSInstaller[315]: Currently available:     494176.5 MB
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost Unknown[296]: 2012-09-03 14:58:41.537 OS X Installer[315:c013] Looking for system packages
    Sep  3 14:58:41 localhost Unknown[296]: 2012-09-03 14:58:41.573 OS X Installer[315:c013] no system packages found
    Sep  3 14:58:41 localhost Unknown[296]: 2012-09-03 14:58:41.574 OS X Installer[315:c013] No or Invalid system receipts found on /Volumes/System/Recovered Items
    Sep  3 14:58:41 localhost Unknown[296]: 2012-09-03 14:58:41.574 OS X Installer[315:c013] Attempting fallback using: /System/Library/PrivateFrameworks/SystemMigration.framework/Resources/FallbackS ystemFiles.plist
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  3 14:58:41 localhost Unknown[296]: 2012-09-03 14:58:41.823 OS X Installer[315:c013] Finding system files...
    Sep  3 14:58:42 localhost Unknown[296]: 2012-09-03 14:58:42.028 OS X Installer[315:c013] Writing system path cache.
    Sep  3 14:58:42 localhost Unknown[296]: 2012-09-03 14:58:42.031 OS X Installer[315:c013] FSF cache NOT written: /Volumes/System/Recovered Items/Library/Caches/com.apple.FindSystemFiles.plist
    Sep  3 14:58:42 localhost OSInstaller[315]: Reapable space:          0.0 MB
    Sep  3 14:58:42 localhost OSInstaller[315]: Creating recovery system for volume "System".
    Sep  3 14:58:42 localhost OSInstaller[315]: Will bless Apple_Boot as recovery system.
    Sep  3 14:58:42 localhost OSInstaller[315]: Creating recovery volume.
    Sep  3 14:58:42 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: donor disk's storage system is simple so it itself will be the donor
    Sep  3 14:58:42 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: normalized donor: logical=0x7f97bae2cc08=disk0s2=System=(iflvuuid=(null)) physical=0x10ca33d10=disk0s2=System=disk0s2 storage=(null)
    Sep  3 14:58:42 localhost OSInstaller[315]: Подключаю образ диска /Volumes/Mac OS X Install DVD/BaseSystem.dmg
    Sep  3 14:58:43 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 1 (after adding up logical file sizes in dmg + expected to create ourselves) requiredFileSpaceForRecoveryFilesULL=463731193 =Sbydiv=905724 =Mbydiv=442
    Sep  3 14:58:43 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 2 (after considering ExistingIfAny booter volume files with physical on-disk rounded up to alloc block sizes) requiredFileSpaceForAllFilesULL=463731193 =Sbydiv=905724 =Mbydiv=442
    Sep  3 14:58:43 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 3 (converted to iomedia desired size) desiredMinRecoveryDiskIOMediaSizeULL=480508409 =Sbydiv=938492 =Mbydiv=458
    Sep  3 14:58:43 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 4 (after adding BootRoot iomedia allocation) desiredMinRecoveryDiskIOMediaSizeULL=581171705 =Sbydiv=1135100 =Mbydiv=554
    Sep  3 14:58:43 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 5 (after applying minimum) desiredMinRecoveryDiskIOMediaSizeULL=650000000 =Sbydiv=1269531 =Mbydiv=619
    Sep  3 14:58:44 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition getMakeBooterDisk:storage:phyUDS:logUDS:phyREF:logREF:recBSD:percentBegin:perce ntEnd:]: existing conditions right after PHY=disk0s2: usedOrNotSpaceB=650006016 hasBooter=1 booterPartID/disk=3/disk0s3 booterLocB/SizeB=499457839104/650002432
    Sep  3 14:58:44 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition getMakeBooterDisk:storage:phyUDS:logUDS:phyREF:logREF:recBSD:percentBegin:perce ntEnd:]: existing conditions of PHY: disk0s2 loc=S=409640=B=209735680 siz=S=975093952=B=499248103424=N=499248103424
    Sep  3 14:58:44 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition getMakeBooterDisk:storage:phyUDS:logUDS:phyREF:logREF:recBSD:percentBegin:perce ntEnd:]: existing conditions of LOG: disk0s2 (could be whole so no loc) siz=S=975093952=B=499248103424=N=499248103424
    Sep  3 14:58:44 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition getMakeBooterDisk:storage:phyUDS:logUDS:phyREF:logREF:recBSD:percentBegin:perce ntEnd:]: READY TO DO CASE: case=UseExistingBooter spaceDeltaB=0 booterDeltaB=0 (adviceIfUnable=-69886)
    Sep  3 14:58:44 localhost OSInstaller[315]: Повторно использую существующий раздел восстановления
    Sep  3 14:58:44 localhost OSInstaller[315]: Проверяю том загрузчика
    Sep  3 14:58:44 localhost OSInstaller[315]: Проверяю файловую систему
    Sep  3 14:58:44 localhost OSInstaller[315]: Проверяю журнальный том HFS Plus.
    Sep  3 14:58:44 localhost OSInstaller[315]: Проверка файла переполнения экстентов.
    Sep  3 14:58:44 localhost OSInstaller[315]: Проверка файла каталога.
    Sep  3 14:58:44 localhost OSInstaller[315]: Проверяю многосвязные файлы.
    Sep  3 14:58:44 localhost OSInstaller[315]: Проверка иерархии каталога.
    Sep  3 14:58:44 localhost OSInstaller[315]: Проверка файла расширенных атрибутов.
    Sep  3 14:58:44 localhost OSInstaller[315]: Проверяю битовый массив тома.
    Sep  3 14:58:44 localhost OSInstaller[315]: Проверяю информацию тома.
    Sep  3 14:58:44 localhost OSInstaller[315]: Том Recovery HD, по-видимому, в порядке.
    Sep  3 14:58:44 localhost OSInstaller[315]: Восстановление тома завершено.
    Sep  3 14:58:44 localhost OSInstaller[315]: Выполняется требуемое обновление разделов поддержки загрузки для тома.
    Sep  3 14:58:44 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: final recoveryDisk=disk0s3=0x10ca33bb0=disk0s3=Recovery HD
    Sep  3 14:58:44 localhost OSInstaller[315]: Подключаю раздел восстановления
    Sep  3 14:58:44 localhost OSInstaller[315]: Создаю каталог загрузчика
    Sep  3 14:58:44 localhost OSInstaller[315]: Копирую загрузчик
    Sep  3 14:58:45 localhost OSInstaller[315]: Копирую ядро
    Sep  3 14:58:45 localhost OSInstaller[315]: Копирую образ системы
    Sep  3 14:59:09 localhost OSInstaller[315]: Запись plist загрузки
    Sep  3 14:59:09 localhost OSInstaller[315]: Регистрирую загрузочный файл
    Sep  3 14:59:09 localhost OSInstaller[315]: Отмечаю раздел восстановления
    Sep  3 14:59:10 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: at Exit; err=0
    Sep  3 14:59:10 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: recoveryDiskBSD=disk0s3 physicalDonorBSD=disk0s2
    Sep  3 14:59:10 localhost OSInstaller[315]: Извлекаю образ диска
    Sep  3 14:59:10 localhost OSInstaller[315]: Done creating recovery volume.
    Sep  3 14:59:10 localhost OSInstaller[315]: Configuring volume "System"
    Sep  3 14:59:10 localhost OSInstaller[315]: Preparing disk for Netbooted OS Install.
    Sep  3 14:59:10 localhost OSInstaller[315]: Volume disk0s2 mounted at /Volumes/System is ready
    Sep  3 14:59:10 localhost OSInstaller[315]: Preparing disk for local booted OS Install.
    Sep  3 14:59:10 localhost OSInstaller[315]: Physical memory statistics immediately before turning on virtual memory backing store:
    Sep  3 14:59:10 localhost OSInstaller[315]: Physical Memory Allocation:  1555 MB wired,     4 MB trapped,   161 MB active,   127 MB inactive,  6345 MB free,  6633 MB usable,  8192 MB total
    Sep  3 14:59:10 localhost OSInstaller[315]: Activated virtual memory backing store at mount point '/Volumes/System'
    Sep  3 14:59:10 localhost OSInstaller[315]: Preparing disk for local booted install.
    Sep  3 14:59:10 localhost OSInstaller[315]: Creating installation log on volume "System"
    Sep  3 14:59:10 localhost OSInstaller[315]: Create temporary directory "/Volumes/System/Install.315q3Srzq"
    Sep  3 14:59:10 localhost OSInstaller[315]: IFPKInstallElement (15 packages)
    Sep  3 14:59:10 localhost OSInstaller[315]: Using authorization level of root for IFPKInstallElement
    Sep  3 14:59:12 localhost OSInstaller[315]: PackageKit: ----- Begin install -----
    Sep  3 14:59:12 localhost OSInstaller[315]: PackageKit: request=PKInstallRequest <15 packages, destination=/Volumes/System>
    Sep  3 14:59:12 localhost OSInstaller[315]: PackageKit: packages=(
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/BaseSystemBinaries.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/BaseSystemResources.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/Essentials.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/BSD.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/JavaTools.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/RemoteDesktop.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/AdditionalEssentials.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/AdditionalSpeechVoices.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/AsianLanguagesSupport.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/MediaFiles.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/JavaEssentials.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/OxfordDictionaries.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/X11redirect.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/OSInstall.pkg>",
                  "PKLeopardPackage <file://localhost/Volumes/System/OS%20X%20Install%20Data/OSX_10_8_IncompatibleA ppList.pkg>"
    Sep  3 14:59:12 localhost OSInstaller[315]: PackageKit: Extracting file://localhost/System/Installation/Packages/BaseSystemBinaries.pkg (destination=/Volumes/System/.OSInstallSandbox-tmp/Root, uid=0)
    Sep  3 15:00:06 localhost OSInstaller[315]: PackageKit: Using / as external payload root for package com.apple.pkg.BaseSystemResources
    Sep  3 15:00:06 localhost OSInstaller[315]: PackageKit: Extracting file://localhost/System/Installation/Packages/BaseSystemResources.pkg (destination=/Volumes/System/.OSInstallSandbox-tmp/Root, uid=0)
    Sep  3 15:01:11 localhost OSInstaller[315]: PackageKit: Extracting file://localhost/System/Installation/Packages/Essentials.pkg (destination=/Volumes/System/.OSInstallSandbox-tmp/Root, uid=0)
    Sep  3 15:05:23 localhost OSInstaller[315]: PackageKit: Got copier error 2 extracting to path ./Library/Fonts/ヒラギノ明朝 Pro W6.otf: Read-only file system
    Sep  3 15:05:23 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/DataPool.c:135: Error: finished pool without filling it
    Sep  3 15:05:23 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/commonUtils.c:360: Error: fh_pread -1
    Sep  3 15:05:23 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/StreamCompressor.c :293: Error: pread failed for /Volumes/System/.OSInstallSandbox-tmp/Root//Library/Fonts/ヒラギノ明朝 Pro W6.otf: Invalid argument
    Sep  3 15:05:23 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/StreamCompressor.c :923: Error: returning errno 22 from FinishStreamCompressorQueue
    Sep  3 15:09:13 localhost OSInstaller[315]: PackageKit: Install Failed: Error Domain=PKInstallErrorDomain Code=110 "An error occurred while extracting files from the package “Essentials.pkg”." UserInfo=0x7fd706e81180 {NSUnderlyingError=0x7fd70750e1f0 "The operation couldn’t be completed. FinishStreamCompressorQueue error", NSFilePath=/Volumes/System/.OSInstallSandbox-tmp/Root, NSURL=Essentials.pkg -- file://localhost/System/Installation/Packages/OSInstall.mpkg, PKInstallPackageIdentifier=com.apple.pkg.Essentials, NSLocalizedDescription=An error occurred while extracting files from the package “Essentials.pkg”.} {
                  NSFilePath = "/Volumes/System/.OSInstallSandbox-tmp/Root";
                  NSLocalizedDescription = "An error occurred while extracting files from the package \U201cEssentials.pkg\U201d.";
                  NSURL = "Essentials.pkg -- file://localhost/System/Installation/Packages/OSInstall.mpkg";
                  NSUnderlyingError = "Error Domain=BOMCopierFatalError Code=1 \"The operation couldn\U2019t be completed. FinishStreamCompressorQueue error\" UserInfo=0x7fd706f482a0 {destinationPath=/Volumes/System/.OSInstallSandbox-tmp/Root, offset=11095257, type=BOMCopierFatalError, sourcePath=/System/Installation/Packages/Essentials.pkg, NSLocalizedFailureReason=FinishStreamCompressorQueue error}";
                  PKInstallPackageIdentifier = "com.apple.pkg.Essentials";
    Sep  3 15:09:13 localhost OSInstaller[315]: install:didFailWithError:Error Domain=PKInstallErrorDomain Code=110 "An error occurred while extracting files from the package “Essentials.pkg”." UserInfo=0x7fd706e81180 {NSUnderlyingError=0x7fd70750e1f0 "The operation couldn’t be completed. FinishStreamCompressorQueue error", NSFilePath=/Volumes/System/.OSInstallSandbox-tmp/Root, NSURL=Essentials.pkg -- file://localhost/System/Installation/Packages/OSInstall.mpkg, PKInstallPackageIdentifier=com.apple.pkg.Essentials, NSLocalizedDescription=An error occurred while extracting files from the package “Essentials.pkg”.}
    Sep  3 15:09:13 localhost OSInstaller[315]: Install failed: Установщик обнаружил ошибку, вызвавшую сбой установки. Обратитесь за помощью к производителю ПО.
    Sep  3 15:09:15 localhost OSInstaller[315]: No system on disk System to revert bless
    Sep  3 15:09:15 localhost OSInstaller[315]: Unable to revert bless to target or imgsrc.
    Sep  3 15:09:15 localhost OSInstaller[315]: Allowing machine sleep.
    Sep  3 15:09:15 localhost OSInstaller[315]: Memory statistics for 'Установка не удалась' pane:
    Sep  3 15:09:15 localhost OSInstaller[315]: Physical Memory Allocation:  1016 MB wired,     3 MB trapped,   484 MB active,    88 MB inactive,  6601 MB free,  7173 MB usable,  8192 MB total
    Sep  3 15:09:15 localhost OSInstaller[315]: System requested sleep.
    Sep  3 15:09:15 localhost OSInstaller[315]: Installer allowed sleep.
    Sep  3 15:09:15 localhost OSInstaller[315]: System is going to sleep.
    Sep  3 15:46:27 localhost OSInstaller[315]: System awoke from sleep.
    Sep  3 15:46:30 localhost configd[112]: subnet_route_if_index: can't get interface name
    Sep  3 15:47:15 localhost OSInstaller[315]: Sending Installer Log to Apple...
    Sep  3 15:47:15 localhost OSInstaller[315]: User Contact: [email protected]
    Sep  3 15:47:15 localhost OSInstaller[315]: User Comment:
    Sep  3 15:47:15 localhost OSInstaller[315]: Unable to submit Crash Reporter log in OS Install environment!
    Sep  3 15:47:15 localhost OSInstaller[315]: Sent Installer Log to Apple.
    Sep  3 15:47:50 localhost Unknown[296]: 2012-09-03 15:47 OS X Installer[315] (CarbonCore.framework) FSEventStreamStart: ERROR: FSEvents_connect() => Unknown service name (1102)
    Sep  3 15:47:50 localhost OSInstaller[315]: Connection to NetworkBrowserAgent became invalid
    Sep  3 15:47:50 localhost OSInstaller[315]: Connection to NetworkBrowserAgent became invalid
    Sep  3 15:47:50 localhost OSInstaller[315]: Connection to NetworkBrowserAgent became invalid
    Sep  3 15:47:51 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (docs) while running as uid 0
    Sep  3 15:47:51 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (docs) while running as uid 0
    Sep  3 15:47:51 localhost Unknown[296]: 2012-09-03 15:47:51.069 OS X Installer[315:707] Invalid URL passed to an open/save panel: '(null)'.  Using 'file://localhost/' instead.
    log #2

    Log #2
    Sep  4 00:03:42 localhost opendirectoryd[101]: opendirectoryd (build 197.11.16) launched - installer mode
    Sep  4 00:03:42 localhost opendirectoryd[101]: Logging level limit changed to 'notice'
    Sep  4 00:03:42 localhost opendirectoryd[101]: Initialize trigger support
    Sep  4 00:03:42 localhost opendirectoryd[101]: created endpoint for mach service 'com.apple.private.opendirectoryd.rpc' with work limit 10
    Sep  4 00:03:42 localhost opendirectoryd[101]: set default handler for RPC 'reset_cache'
    Sep  4 00:03:42 localhost opendirectoryd[101]: set default handler for RPC 'reset_statistics'
    Sep  4 00:03:42 localhost opendirectoryd[101]: set default handler for RPC 'show'
    Sep  4 00:03:42 localhost opendirectoryd[101]: starting endpoint for service 'com.apple.private.opendirectoryd.rpc'
    Sep  4 00:03:42 localhost opendirectoryd[101]: no dynamic data found at '/System/Library/OpenDirectory/DynamicData/Configure.plist'
    Sep  4 00:03:42 localhost opendirectoryd[101]: Registered node with name '/Configure' as hidden
    Sep  4 00:03:42 localhost opendirectoryd[101]: no dynamic data found at '/System/Library/OpenDirectory/DynamicData/Local.plist'
    Sep  4 00:03:42 localhost opendirectoryd[101]: Registered node with name '/Local' as hidden
    Sep  4 00:03:48 localhost Unknown[283]: kern.boottime: { sec = 1346742214, usec = 0 } Tue Sep  4 00:03:34 2012
    Sep  4 00:03:49 localhost Unknown[294]: Launching the Language Chooser for an OS Install
    Sep  4 00:03:56 localhost configd[112]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Sep  4 00:03:56 localhost configd[112]: DHCP en1: INIT transmit failed
    Sep  4 00:04:03 localhost Unknown[296]: 2012-09-04 00:04:03.337 LCA[295:707] NSSoftLinking - The Librarian framework's library couldn't be loaded from (null).
    Sep  4 00:04:03 localhost Unknown[296]: 2012-09-04 00:04:03.339 LCA[295:707] NSSoftLinking - The function 'LBCurrentProcessHasUbiquityContainer' can't be found in the Librarian framework.
    Sep  4 00:04:04 localhost configd[112]: subnet_route_if_index: can't get interface name
    Sep  4 00:04:08 localhost Unknown[296]: 2012-09-04 00:04:08.160 LCA[295:707] LCA+BT2: systemHasBluetooth entry
    Sep  4 00:04:08 localhost Unknown[296]: 2012-09-04 00:04:08.161 LCA[295:707] LCA+BT2: [[NSProcessInfo processInfo] processName] LCA
    Sep  4 00:04:08 localhost Unknown[296]: 2012-09-04 00:04:08.161 LCA[295:707] LCA+BT2: systemHasBluetooth exit - controller = 0x7fed8d3369c0
    Sep  4 00:04:08 localhost LCA[295]: Using keyboard layout 0
    Sep  4 00:04:08 localhost Unknown[296]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Sep  4 00:04:08 localhost Unknown[296]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Sep  4 00:04:08 localhost Unknown[296]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Sep  4 00:04:08 localhost Unknown[296]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Sep  4 00:04:08 localhost LCA[295]: Found primary language hint "ru"
    Sep  4 00:04:09 localhost LCA[295]: Using keyboard layout 0
    Sep  4 00:04:09 localhost LCA[295]: Found primary language hint "ru"
    Sep  4 00:04:10 localhost LCA[295]: Using keyboard layout 0
    Sep  4 00:04:10 localhost LCA[295]: Found primary language hint "ru"
    Sep  4 00:04:10 localhost LCA[295]: Launching the Installer using language code "ru"
    Sep  4 00:04:10 localhost Unknown[296]: 2012-09-04 00:04:10.675 OS X Installer[315:707] NSSoftLinking - The Librarian framework's library couldn't be loaded from (null).
    Sep  4 00:04:10 localhost Unknown[296]: 2012-09-04 00:04:10.676 OS X Installer[315:707] NSSoftLinking - The function 'LBCurrentProcessHasUbiquityContainer' can't be found in the Librarian framework.
    Sep  4 00:04:10 localhost OSInstaller[315]: OS X Installer application started
    Sep  4 00:04:10 localhost OSInstaller[315]: 1 display(s) found.
    Sep  4 00:04:10 localhost OSInstaller[315]: Display[1] is NOT using OpenGL acceleration.
    Sep  4 00:04:10 localhost OSInstaller[315]: @(#)PROGRAM:Install  PROJECT:Install-729
    Sep  4 00:04:10 localhost OSInstaller[315]: @(#)PROGRAM:OS X Installer  PROJECT:OSInstaller-419
    Sep  4 00:04:10 localhost OSInstaller[315]: Hardware: MacBookPro6,1 @ 2.66 GHz (x 4), 8192 MB RAM
    Sep  4 00:04:10 localhost OSInstaller[315]: Running OS Build: Mac OS X 10.8.1 (12B19)
    Sep  4 00:04:10 localhost OSInstaller[315]: Env: DYLD_NO_FIX_PREBINDING=1
    Sep  4 00:04:10 localhost OSInstaller[315]: Env: __CF_USER_TEXT_ENCODING=0x0:0:0
    Sep  4 00:04:10 localhost OSInstaller[315]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Sep  4 00:04:10 localhost OSInstaller[315]: Env: PWD=/
    Sep  4 00:04:10 localhost OSInstaller[315]: Env: SHLVL=1
    Sep  4 00:04:10 localhost OSInstaller[315]: Env: __OSINSTALL_ENVIRONMENT=1
    Sep  4 00:04:10 localhost OSInstaller[315]: Env: CI_DEFAULT_OPENCL_USAGE=0
    Sep  4 00:04:10 localhost OSInstaller[315]: Env: OS_INSTALL=1
    Sep  4 00:04:10 localhost OSInstaller[315]: Env: _=/System/Installation/CDIS/LCA.app/Contents/MacOS/LCA
    Sep  4 00:04:11 localhost OSInstaller[315]: Using product PKSecureNetEnabledProduct <file://localhost/Volumes/System/OS%20X%20Install%20Data/> at distance 5
    Sep  4 00:04:11 localhost OSInstaller[315]: Opening OSInstall automation file '/Volumes/System/OS X Install Data/minstallconfig.xml'.
    Sep  4 00:04:12 localhost OSInstaller[315]: Using product <OSInstallRootProduct> at distance 5
    Sep  4 00:04:12 localhost OSInstaller[315]: Using product <OSInstallDVDProduct> based on media at /Volumes/Mac OS X Install DVD at distance 5
    Sep  4 00:04:13 localhost OSInstaller[315]: /Volumes/System/OS X Install Data/MacOSXInstaller.choiceChanges file found.
    Sep  4 00:04:13 localhost OSInstaller[315]: JS: installCheckScript threw exception TypeError: 'null' is not an object (evaluating 'my.target.systemVersion')
    Sep  4 00:04:13 localhost OSInstaller[315]: Automated Install: Found requested target at /Volumes/System.
    Sep  4 00:04:13 localhost OSInstaller[315]: Applied choice changes from /Volumes/System/OS X Install Data/MacOSXInstaller.choiceChanges.
    Sep  4 00:04:13 localhost OSInstaller[315]: Allowing machine sleep.
    Sep  4 00:04:13 localhost OSInstaller[315]: Preventing machine sleep.
    Sep  4 00:04:13 localhost OSInstaller[315]: InstallerStatusNotifications plugin loaded
    Sep  4 00:04:13 localhost OSInstaller[315]: =============================================================================== =
    Sep  4 00:04:13 localhost OSInstaller[315]: Choices selected for installation:
    Sep  4 00:04:13 localhost OSInstaller[315]:           Установить: "OS X"
    Sep  4 00:04:13 localhost OSInstaller[315]:                     BaseSystemBinaries.pkg : com.apple.pkg.BaseSystemBinaries : 10.8.0.1.1.1306847324
    Sep  4 00:04:13 localhost OSInstaller[315]:                     BaseSystemResources.pkg : com.apple.pkg.BaseSystemResources : 10.8.0.1.1.1306847324
    Sep  4 00:04:13 localhost OSInstaller[315]:                     OSInstall.mpkg : com.apple.mpkg.OSInstall : 10.8.0
    Sep  4 00:04:13 localhost OSInstaller[315]:                     Essentials.pkg : com.apple.pkg.Essentials : 10.8.0.1.1.1306847324
    Sep  4 00:04:13 localhost OSInstaller[315]:                     BSD.pkg : com.apple.pkg.BSD : 10.8.0.1.1.1306847324
    Sep  4 00:04:13 localhost OSInstaller[315]:                     JavaTools.pkg : com.apple.pkg.JavaTools : 1.0.1.1306847324
    Sep  4 00:04:13 localhost OSInstaller[315]:                     RemoteDesktop.pkg : com.apple.pkg.RemoteDesktop : 10.8.0.1.1.1306847324
    Sep  4 00:04:13 localhost OSInstaller[315]:                     AdditionalEssentials.pkg : com.apple.pkg.AdditionalEssentials : 10.8.0.1.1.1306847324
    Sep  4 00:04:13 localhost OSInstaller[315]:                     AdditionalSpeechVoices.pkg : com.apple.pkg.AdditionalSpeechVoices : 10.8.0.1.1.1306847324
    Sep  4 00:04:13 localhost OSInstaller[315]:                     AsianLanguagesSupport.pkg : com.apple.pkg.AsianLanguagesSupport : 10.8.0.1.1.1306847324
    Sep  4 00:04:13 localhost OSInstaller[315]:                     MediaFiles.pkg : com.apple.pkg.MediaFiles : 10.8.0.1.1.1306847324
    Sep  4 00:04:13 localhost OSInstaller[315]:                     JavaEssentials.pkg : com.apple.pkg.JavaEssentials : 1.0.1.1306847324
    Sep  4 00:04:13 localhost OSInstaller[315]:                     OxfordDictionaries.pkg : com.apple.pkg.OxfordDictionaries : 10.8.0.1.1.1306847324
    Sep  4 00:04:13 localhost OSInstaller[315]:                     X11redirect.pkg : com.apple.pkg.X11redirect : 10.8.0.1.1.1306847324
    Sep  4 00:04:13 localhost OSInstaller[315]:                     OSInstall.pkg : com.apple.pkg.OSInstall : 10.8.0.1
    Sep  4 00:04:13 localhost OSInstaller[315]: =============================================================================== =
    Sep  4 00:04:13 localhost OSInstaller[315]: It took 0.00 seconds to summarize the package selections.
    Sep  4 00:04:13 localhost OSInstaller[315]: Memory statistics for 'Установка' pane:
    Sep  4 00:04:13 localhost OSInstaller[315]: Physical Memory Allocation:   984 MB wired,     5 MB trapped,   166 MB active,   120 MB inactive,  6917 MB free,  7203 MB usable,  8192 MB total
    Sep  4 00:04:13 localhost OSInstaller[315]: Dist disk is not root.
    Sep  4 00:04:13 localhost OSInstaller[315]: Set authorization level to root for session
    Sep  4 00:04:13 localhost runner[319]: Administrator authorization granted.
    Sep  4 00:04:13 localhost OSInstaller[315]: Recovery system image located at "/Volumes/Mac OS X Install DVD/BaseSystem.dmg"
    Sep  4 00:04:13 localhost OSInstaller[315]: Remote Install Assistant found at :(null)
    Sep  4 00:04:13 localhost OSInstaller[315]: Memory statistics for 'Установка OS X' pane:
    Sep  4 00:04:13 localhost OSInstaller[315]: Physical Memory Allocation:   986 MB wired,     3 MB trapped,   166 MB active,   120 MB inactive,  6917 MB free,  7203 MB usable,  8192 MB total
    Sep  4 00:04:13 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/BaseSystemBinaries.pkg (521389056 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/BaseSystemResources.pkg (323151872 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: IF will install package file://localhost/System/Installation/Packages/OSInstall.mpkg (0 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/Essentials.pkg (3943123968 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/BSD.pkg (621375488 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/JavaTools.pkg (8970240 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/RemoteDesktop.pkg (67584 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: IF will install package file://localhost/System/Installation/Packages/OSInstall.mpkg (0 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/AdditionalEssentials.pkg (139015168 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/AdditionalSpeechVoices.pkg (293474304 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/AsianLanguagesSupport.pkg (10115072 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/MediaFiles.pkg (88344576 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/JavaEssentials.pkg (17098752 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/OxfordDictionaries.pkg (101970944 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/X11redirect.pkg (3533824 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: PK will install package file://localhost/System/Installation/Packages/OSInstall.pkg (0 b)
    Sep  4 00:04:14 localhost OSInstaller[315]: Setting external root to: /
    Sep  4 00:04:14 localhost OSInstaller[315]: OSI: com.apple.pkg.BaseSystemResources remapped external root path to: /
    Sep  4 00:04:14 localhost OSInstaller[315]: Total install size including padding: 7145372672 b + 0 b non-OS collection items
    Sep  4 00:04:14 localhost OSInstaller[315]: Can not connect to /var/run/systemkeychaincheck.socket: No such file or directory
    Sep  4 00:04:14 localhost Unknown[296]: 2012-09-04 00:04:14.263 OS X Installer[315:707] *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Sep  4 00:04:14 localhost Unknown[296]: 2012-09-04 00:04:14.264 OS X Installer[315:707] *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Sep  4 00:04:14 localhost OSInstaller[315]: Failed to delete automation file: Том «System» доступен только для чтения.
    Sep  4 00:04:14 localhost Unknown[296]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Sep  4 00:04:14 localhost Unknown[296]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Sep  4 00:04:14 localhost Unknown[296]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Sep  4 00:04:14 localhost Unknown[296]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Sep  4 00:04:20 localhost OSInstaller[315]: PK will install signed package file://localhost/Volumes/System/OS%20X%20Install%20Data/OSX_10_8_IncompatibleAp pList.pkg
    Sep  4 00:04:20 localhost OSInstaller[315]: PFPackage::packageWithURL - can't instantiate package: /System/Installation/Packages/OSInstall.mpkg
    Sep  4 00:04:20 localhost OSInstaller[315]: Error opening package "OSInstall.mpkg".
    Sep  4 00:04:20 localhost OSInstaller[315]: Starting installation:
    Sep  4 00:04:20 localhost OSInstaller[315]: Performing volume consistency check on 'System'.
    Sep  4 00:04:20 localhost OSInstaller[315]: Checking Volume
    Sep  4 00:04:21 localhost OSInstaller[315]: Проверяю файловую систему
    Sep  4 00:04:21 localhost OSInstaller[315]: Проверяю журнальный том HFS Plus.
    Sep  4 00:04:21 localhost OSInstaller[315]: Проверка файла переполнения экстентов.
    Sep  4 00:04:21 localhost OSInstaller[315]: Проверка файла каталога.
    Sep  4 00:04:23 localhost OSInstaller[315]: Проверяю многосвязные файлы.
    Sep  4 00:04:23 localhost OSInstaller[315]: Проверка иерархии каталога.
    Sep  4 00:04:23 localhost OSInstaller[315]: Проверка файла расширенных атрибутов.
    Sep  4 00:04:26 localhost OSInstaller[315]: Проверяю битовый массив тома.
    Sep  4 00:04:26 localhost OSInstaller[315]: Проверяю информацию тома.
    Sep  4 00:04:26 localhost OSInstaller[315]: Том System, по-видимому, в порядке.
    Sep  4 00:04:26 localhost OSInstaller[315]: Volume passed consistency checks.
    Sep  4 00:04:26 localhost OSInstaller[315]: Promoting target imgsrc volume /Volumes/System.
    Sep  4 00:04:26 localhost OSInstaller[315]: Calculating expected install size requirements
    Sep  4 00:04:26 localhost OSInstaller[315]: Reserved for install:    7727.8 MB (0.0 MB non-OS collection items, 582.4 MB recovery system)
    Sep  4 00:04:26 localhost OSInstaller[315]: Currently available:     494109.1 MB
    Sep  4 00:04:26 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:26 localhost Unknown[296]: 2012-09-04 00:04:26.946 OS X Installer[315:ff87] Looking for system packages
    Sep  4 00:04:26 localhost Unknown[296]: 2012-09-04 00:04:26.984 OS X Installer[315:ff87] no system packages found
    Sep  4 00:04:26 localhost Unknown[296]: 2012-09-04 00:04:26.985 OS X Installer[315:ff87] No or Invalid system receipts found on /Volumes/System/Recovered Items
    Sep  4 00:04:26 localhost Unknown[296]: 2012-09-04 00:04:26.985 OS X Installer[315:ff87] Attempting fallback using: /System/Library/PrivateFrameworks/SystemMigration.framework/Resources/FallbackS ystemFiles.plist
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost OSInstaller[315]: SMSystem_DMDiskBased Warning : 4294897418
    Sep  4 00:04:27 localhost Unknown[296]: 2012-09-04 00:04:27.239 OS X Installer[315:ff87] Finding system files...
    Sep  4 00:04:27 localhost Unknown[296]: 2012-09-04 00:04:27.440 OS X Installer[315:ff87] Writing system path cache.
    Sep  4 00:04:27 localhost Unknown[296]: 2012-09-04 00:04:27.443 OS X Installer[315:ff87] FSF cache NOT written: /Volumes/System/Recovered Items/Library/Caches/com.apple.FindSystemFiles.plist
    Sep  4 00:04:27 localhost OSInstaller[315]: Reapable space:          0.0 MB
    Sep  4 00:04:27 localhost OSInstaller[315]: Creating recovery system for volume "System".
    Sep  4 00:04:27 localhost OSInstaller[315]: Will bless Apple_Boot as recovery system.
    Sep  4 00:04:27 localhost OSInstaller[315]: Creating recovery volume.
    Sep  4 00:04:27 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: donor disk's storage system is simple so it itself will be the donor
    Sep  4 00:04:27 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: normalized donor: logical=0x7fcc6290e5f8=disk0s2=System=(iflvuuid=(null)) physical=0x106b28d10=disk0s2=System=disk0s2 storage=(null)
    Sep  4 00:04:27 localhost OSInstaller[315]: Подключаю образ диска /Volumes/Mac OS X Install DVD/BaseSystem.dmg
    Sep  4 00:04:29 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 1 (after adding up logical file sizes in dmg + expected to create ourselves) requiredFileSpaceForRecoveryFilesULL=463731193 =Sbydiv=905724 =Mbydiv=442
    Sep  4 00:04:29 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 2 (after considering ExistingIfAny booter volume files with physical on-disk rounded up to alloc block sizes) requiredFileSpaceForAllFilesULL=463731193 =Sbydiv=905724 =Mbydiv=442
    Sep  4 00:04:29 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 3 (converted to iomedia desired size) desiredMinRecoveryDiskIOMediaSizeULL=480508409 =Sbydiv=938492 =Mbydiv=458
    Sep  4 00:04:29 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 4 (after adding BootRoot iomedia allocation) desiredMinRecoveryDiskIOMediaSizeULL=581171705 =Sbydiv=1135100 =Mbydiv=554
    Sep  4 00:04:29 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 5 (after applying minimum) desiredMinRecoveryDiskIOMediaSizeULL=650000000 =Sbydiv=1269531 =Mbydiv=619
    Sep  4 00:04:29 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition getMakeBooterDisk:storage:phyUDS:logUDS:phyREF:logREF:recBSD:percentBegin:perce ntEnd:]: existing conditions right after PHY=disk0s2: usedOrNotSpaceB=650006016 hasBooter=1 booterPartID/disk=3/disk0s3 booterLocB/SizeB=499457839104/650002432
    Sep  4 00:04:29 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition getMakeBooterDisk:storage:phyUDS:logUDS:phyREF:logREF:recBSD:percentBegin:perce ntEnd:]: existing conditions of PHY: disk0s2 loc=S=409640=B=209735680 siz=S=975093952=B=499248103424=N=499248103424
    Sep  4 00:04:29 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition getMakeBooterDisk:storage:phyUDS:logUDS:phyREF:logREF:recBSD:percentBegin:perce ntEnd:]: existing conditions of LOG: disk0s2 (could be whole so no loc) siz=S=975093952=B=499248103424=N=499248103424
    Sep  4 00:04:29 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition getMakeBooterDisk:storage:phyUDS:logUDS:phyREF:logREF:recBSD:percentBegin:perce ntEnd:]: READY TO DO CASE: case=UseExistingBooter spaceDeltaB=0 booterDeltaB=0 (adviceIfUnable=-69886)
    Sep  4 00:04:29 localhost OSInstaller[315]: Повторно использую существующий раздел восстановления
    Sep  4 00:04:29 localhost OSInstaller[315]: Проверяю том загрузчика
    Sep  4 00:04:29 localhost OSInstaller[315]: Проверяю файловую систему
    Sep  4 00:04:29 localhost OSInstaller[315]: Проверяю журнальный том HFS Plus.
    Sep  4 00:04:29 localhost OSInstaller[315]: Проверка файла переполнения экстентов.
    Sep  4 00:04:29 localhost OSInstaller[315]: Проверка файла каталога.
    Sep  4 00:04:29 localhost OSInstaller[315]: Проверяю многосвязные файлы.
    Sep  4 00:04:29 localhost OSInstaller[315]: Проверка иерархии каталога.
    Sep  4 00:04:29 localhost OSInstaller[315]: Проверка файла расширенных атрибутов.
    Sep  4 00:04:29 localhost OSInstaller[315]: Проверяю битовый массив тома.
    Sep  4 00:04:29 localhost OSInstaller[315]: Проверяю информацию тома.
    Sep  4 00:04:29 localhost OSInstaller[315]: Том Recovery HD, по-видимому, в порядке.
    Sep  4 00:04:29 localhost OSInstaller[315]: Восстановление тома завершено.
    Sep  4 00:04:29 localhost OSInstaller[315]: Выполняется требуемое обновление разделов поддержки загрузки для тома.
    Sep  4 00:04:30 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: final recoveryDisk=disk0s3=0x106b28bb0=disk0s3=Recovery HD
    Sep  4 00:04:30 localhost OSInstaller[315]: Подключаю раздел восстановления
    Sep  4 00:04:30 localhost OSInstaller[315]: Создаю каталог загрузчика
    Sep  4 00:04:30 localhost OSInstaller[315]: Копирую загрузчик
    Sep  4 00:04:30 localhost OSInstaller[315]: Копирую ядро
    Sep  4 00:04:31 localhost OSInstaller[315]: Копирую образ системы
    Sep  4 00:04:58 localhost OSInstaller[315]: Запись plist загрузки
    Sep  4 00:04:58 localhost OSInstaller[315]: Регистрирую загрузочный файл
    Sep  4 00:04:58 localhost OSInstaller[315]: Отмечаю раздел восстановления
    Sep  4 00:04:58 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: at Exit; err=0
    Sep  4 00:04:58 localhost diskmanagementd[310]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: recoveryDiskBSD=disk0s3 physicalDonorBSD=disk0s2
    Sep  4 00:04:58 localhost OSInstaller[315]: Извлекаю образ диска
    Sep  4 00:04:58 localhost OSInstaller[315]: Done creating recovery volume.
    Sep  4 00:04:58 localhost OSInstaller[315]: Configuring volume "System"
    Sep  4 00:04:58 localhost OSInstaller[315]: Preparing disk for Netbooted OS Install.
    Sep  4 00:04:58 localhost OSInstaller[315]: Volume disk0s2 mounted at /Volumes/System is ready
    Sep  4 00:04:58 localhost OSInstaller[315]: Preparing disk for local booted OS Install.
    Sep  4 00:04:58 localhost OSInstaller[315]: Physical memory statistics immediately before turning on virtual memory backing store:
    Sep  4 00:04:58 localhost OSInstaller[315]: Physical Memory Allocation:  1558 MB wired,     5 MB trapped,   159 MB active,   127 MB inactive,  6343 MB free,  6629 MB usable,  8192 MB total
    Sep  4 00:04:58 localhost OSInstaller[315]: Activated virtual memory backing store at mount point '/Volumes/System'
    Sep  4 00:04:58 localhost OSInstaller[315]: Preparing disk for local booted install.
    Sep  4 00:04:58 localhost OSInstaller[315]: Creating installation log on volume "System"
    Sep  4 00:04:58 localhost OSInstaller[315]: open on /Volumes/System/private/var/log/install.log: File exists
    Sep  4 00:04:58 localhost OSInstaller[315]: Could not create /Volumes/System/OS X Install Data/ia.log from /Volumes/System/private/var/log/install.log (Error Domain=NSCocoaErrorDomain Code=516 "Не удалось скопировать «ia.log» в «log», так как объект с таким именем уже существует." UserInfo=0x7fecdb0d4ae0 {NSSourceFilePathErrorKey=/Volumes/System/OS X Install Data/ia.log, NSUserStringVariant=(
                  Copy
              ), NSDestinationFilePath=/Volumes/System/private/var/log/install.log, NSFilePath=/Volumes/System/OS X Install Data/ia.log, NSUnderlyingError=0x7fecdb0d49b0 "The operation couldn’t be completed. File exists"})
    Sep  4 00:04:58 localhost OSInstaller[315]: Create temporary directory "/Volumes/System/Install.315kaV3YK"
    Sep  4 00:04:58 localhost OSInstaller[315]: IFPKInstallElement (15 packages)
    Sep  4 00:04:58 localhost OSInstaller[315]: Using authorization level of root for IFPKInstallElement
    Sep  4 00:05:11 localhost OSInstaller[315]: PackageKit: ----- Begin install -----
    Sep  4 00:05:11 localhost OSInstaller[315]: PackageKit: request=PKInstallRequest <15 packages, destination=/Volumes/System>
    Sep  4 00:05:11 localhost OSInstaller[315]: PackageKit: packages=(
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/BaseSystemBinaries.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/BaseSystemResources.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/Essentials.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/BSD.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/JavaTools.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/RemoteDesktop.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/AdditionalEssentials.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/AdditionalSpeechVoices.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/AsianLanguagesSupport.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/MediaFiles.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/JavaEssentials.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/OxfordDictionaries.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/X11redirect.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/OSInstall.pkg>",
                  "PKLeopardPackage <file://localhost/Volumes/System/OS%20X%20Install%20Data/OSX_10_8_IncompatibleA ppList.pkg>"
    Sep  4 00:05:11 localhost OSInstaller[315]: PackageKit: Extracting file://localhost/System/Installation/Packages/BaseSystemBinaries.pkg (destination=/Volumes/System/.OSInstallSandbox-tmp/Root, uid=0)
    Sep  4 00:06:07 localhost OSInstaller[315]: PackageKit: Using / as external payload root for package com.apple.pkg.BaseSystemResources
    Sep  4 00:06:07 localhost OSInstaller[315]: PackageKit: Extracting file://localhost/System/Installation/Packages/BaseSystemResources.pkg (destination=/Volumes/System/.OSInstallSandbox-tmp/Root, uid=0)
    Sep  4 00:07:11 localhost OSInstaller[315]: PackageKit: Extracting file://localhost/System/Installation/Packages/Essentials.pkg (destination=/Volumes/System/.OSInstallSandbox-tmp/Root, uid=0)
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/commonUtils.c:275: decompressChunk 0: Attribute not found
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/commonUtils.c:430: Error: decmpCnt count mismatch: -1 vs 131072
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/OverlayFile.c:101: Error: only unread 49346 of 180419
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/OverlayFile.c:137: Error: exhausted the unread buffer then got an error
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/StreamCompressor.c :293: Error: pread failed for /Volumes/System/.OSInstallSandbox-tmp/Root//System/Library/PrivateFrameworks/Sl ideshows.framework/Versions/A/Resources/Content/Styles/Reflections.mrbStyle/Cont ents/Resources/Preview.mov: Invalid argument
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/StreamCompressor.c :1118: Error: returning errno 22 from WriteToStreamCompressor
    Sep  4 00:15:33 localhost OSInstaller[315]: PackageKit: Got copier error 22 extracting to path /Volumes/System/.OSInstallSandbox-tmp/Root//System/Library/PrivateFrameworks/Sl ideshows.framework/Versions/A/Resources/Content/Styles/Scrapbook.mrbStyle/Conten ts/Resources/MREffectScrapbook.plist: Invalid argument
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/DataPool.c:135: Error: finished pool without filling it
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/StreamCompressor.c :1150: Error: returning errno 22 from CloseStreamCompressor
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/commonUtils.c:360: Error: fh_pread -1
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/StreamCompressor.c :293: Error: pread failed for /Volumes/System/.OSInstallSandbox-tmp/Root//System/Library/PrivateFrameworks/Sl ideshows.framework/Versions/A/Resources/Content/Styles/Scrapbook.mrbStyle/Conten ts/Resources/MREffectScrapbook.plist: Invalid argument
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/StreamCompressor.c :1118: Error: returning errno 22 from WriteToStreamCompressor
    Sep  4 00:15:33 localhost OSInstaller[315]: PackageKit: Got copier error 22 extracting to path /Volumes/System/.OSInstallSandbox-tmp/Root//System/Library/PrivateFrameworks/Sl ideshows.framework/Versions/A/Resources/Content/Styles/Scrapbook.mrbStyle/Conten ts/Resources/Preview.mov: Invalid argument
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/DataPool.c:135: Error: finished pool without filling it
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/StreamCompressor.c :1150: Error: returning errno 22 from CloseStreamCompressor
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/commonUtils.c:360: Error: fh_pread -1
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/StreamCompressor.c :293: Error: pread failed for /Volumes/System/.OSInstallSandbox-tmp/Root//System/Library/PrivateFrameworks/Sl ideshows.framework/Versions/A/Resources/Content/Styles/Scrapbook.mrbStyle/Conten ts/Resources/Preview.mov: Invalid argument
    Sep  4 00:15:33 localhost Unknown[296]: /SourceCache/AppleFSCompression/AppleFSCompression-49/Common/StreamCompressor.c :923: Error: returning errno 22 from FinishStreamCompressorQueue
    Sep  4 00:23:14 localhost OSInstaller[315]: PackageKit: Install Failed: Error Domain=PKInstallErrorDomain Code=110 "An error occurred while extracting files from the package “Essentials.pkg”." UserInfo=0x7fecdf39ce20 {NSUnderlyingError=0x7fecdf37d7f0 "The operation couldn’t be completed. FinishStreamCompressorQueue error", NSFilePath=/Volumes/System/.OSInstallSandbox-tmp/Root, NSURL=Essentials.pkg -- file://localhost/System/Installation/Packages/OSInstall.mpkg, PKInstallPackageIdentifier=com.apple.pkg.Essentials, NSLocalizedDescription=An error occurred while extracting files from the package “Essentials.pkg”.} {
                  NSFilePath = "/Volumes/System/.OSInstallSandbox-tmp/Root";
                  NSLocalizedDescription = "An error occurred while extracting files from the package \U201cEssentials.pkg\U201d.";
                  NSURL = "Essentials.pkg -- file://localhost/System/Installation/Packages/OSInstall.mpkg";
                  NSUnderlyingError = "Error Domain=BOMCopierFatalError Code=1 \"The operation couldn\U2019t be completed. FinishStreamCompressorQueue error\" UserInfo=0x7fecdf39db60 {destinationPath=/Volumes/System/.OSInstallSandbox-tmp/Root, offset=11095257, type=BOMCopierFatalError, sourcePath=/System/Installation/Packages/Essentials.pkg, NSLocalizedFailureReason=FinishStreamCompressorQueue error}";
                  PKInstallPackageIdentifier = "com.apple.pkg.Essentials";
    Sep  4 00:23:14 localhost OSInstaller[315]: install:didFailWithError:Error Domain=PKInstallErrorDomain Code=110 "An error occurred while extracting files from the package “Essentials.pkg”." UserInfo=0x7fecdf39ce20 {NSUnderlyingError=0x7fecdf37d7f0 "The operation couldn’t be completed. FinishStreamCompressorQueue error", NSFilePath=/Volumes/System/.OSInstallSandbox-tmp/Root, NSURL=Essentials.pkg -- file://localhost/System/Installation/Packages/OSInstall.mpkg, PKInstallPackageIdentifier=com.apple.pkg.Essentials, NSLocalizedDescription=An error occurred while extracting files from the package “Essentials.pkg”.}
    Sep  4 00:23:15 localhost OSInstaller[315]: Install failed: Установщик обнаружил ошибку, вызвавшую сбой установки. Обратитесь за помощью к производителю ПО.
    Sep  4 00:23:16 localhost OSInstaller[315]: No system on disk System to revert bless
    Sep  4 00:23:16 localhost OSInstaller[315]: Unable to revert bless to target or imgsrc.
    Sep  4 00:23:16 localhost OSInstaller[315]: Allowing machine sleep.
    Sep  4 00:23:16 localhost OSInstaller[315]: Memory statistics for 'Установка не удалась' pane:
    Sep  4 00:23:16 localhost OSInstaller[315]: Physical Memory Allocation:  1016 MB wired,     4 MB trapped,   429 MB active,    91 MB inactive,  6652 MB free,  7172 MB usable,  8192 MB total
    Sep  4 00:23:41 localhost Unknown[296]: 2012-09-04 00:23 OS X Installer[315] (CarbonCore.framework) FSEventStreamStart: ERROR: FSEvents_connect() => Unknown service name (1102)
    Sep  4 00:23:42 localhost OSInstaller[315]: Connection to NetworkBrowserAgent became invalid
    Sep  4 00:23:42 localhost OSInstaller[315]: Connection to NetworkBrowserAgent became invalid
    Sep  4 00:23:42 localhost OSInstaller[315]: Connection to NetworkBrowserAgent became invalid
    Sep  4 00:23:42 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (docs) while running as uid 0
    Sep  4 00:23:42 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (docs) while running as uid 0
    Sep  4 00:23:42 localhost Unknown[296]: 2012-09-04 00:23:42.351 OS X Installer[315:707] Invalid URL passed to an open/save panel: '(null)'.  Using 'file://localhost/' instead.
    Sep  4 00:23:45 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (down) while running as uid 0
    Sep  4 00:23:45 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (docs) while running as uid 0
    Sep  4 00:23:45 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (down) while running as uid 0
    Sep  4 00:23:45 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (mdoc) while running as uid 0
    Sep  4 00:23:45 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (pubb) while running as uid 0
    Sep  4 00:23:45 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (µdoc) while running as uid 0
    Sep  4 00:23:45 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (pdoc) while running as uid 0
    Sep  4 00:23:45 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (pubb) while running as uid 0
    Sep  4 00:23:45 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (down) while running as uid 0
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.1 - Client: coreservicesd, UID: 0, EUID: 0, GID: 0, EGID: 0
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.1 - ODNodeCreateWithNameAndOptions request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Local/Default, Options: 0x0
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.1 - loading configuration for '/Local' from '/System/Library/OpenDirectory/Configurations/Local.plist'
    Sep  4 00:23:45 localhost opendirectoryd[101]: Loaded bundle at path '/System/Library/OpenDirectory/Modules/PlistFile.bundle'
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.1 - unable to find authentication module 'ConfigurationProfiles'
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.1 - unable to find service discovery callback for module 'PlistFile'
    Sep  4 00:23:45 localhost opendirectoryd[101]: Registering for network changes
    Sep  4 00:23:45 localhost opendirectoryd[101]: Registered subnode with name '/Local/Default'
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.1.3 - Block: nodestate '/Local/Default'
    Sep  4 00:23:45 localhost opendirectoryd[101]: 101.2 - Block: nodestate '/Local'
    Sep  4 00:23:45 localhost opendirectoryd[101]: failed to open local node for internal record copy
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.1.3, Module: PlistFile - Node is 10.7 or later
    Sep  4 00:23:45 localhost opendirectoryd[101]: Registering for power changes
    Sep  4 00:23:45 localhost opendirectoryd[101]: 101.2 - nodestate - flagging '/Local' online
    Sep  4 00:23:45 localhost opendirectoryd[101]: Registering for network power changes
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.1.3 - nodestate - flagging '/Local/Default' online
    Sep  4 00:23:45 localhost opendirectoryd[101]: 101.2 - Block completed
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.1.3 - Block completed
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.1, Node: /Local/Default - node assigned UUID - C0103865-C9A6-4B59-B0DE-7B2989B91379
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.1, Node: /Local/Default - ODNodeCreateWithNameAndOptions completed
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.4 - Client: coreservicesd, UID: 0, EUID: 0, GID: 0, EGID: 0
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.4 - ODQueryCreateWithNode request, NodeID: C0103865-C9A6-4B59-B0DE-7B2989B91379, RecordType(s): dsRecTypeNative:config, Attribute: dsAttrTypeStandard:RecordName, MatchType: EqualTo, Equality: CaseExact, Value(s): SharePoints, Requested Attributes: dsAttributesAll, Max Results: 1
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.4, Node: /Local/Default, Module: PlistFile - client is using a native record type 'config' which is not portable
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.4, Node: /Local/Default, Module: PlistFile - client is using a native record type 'config' which is not portable
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.4, Node: /Local/Default, Module: PlistFile - ODQueryCreateWithNode completed
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.5 - Client: coreservicesd, UID: 0, EUID: 0, GID: 0, EGID: 0
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.5 - ODNodeCreateRecord request, NodeID: C0103865-C9A6-4B59-B0DE-7B2989B91379, RecordType: dsRecTypeNative:config, RecordName: SharePoints, Attributes: <none>
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.5, Node: /Local/Default, Module: PlistFile - client is using a native record type 'config' which is not portable
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.5, Node: /Local/Default, Module: PlistFile - ODNodeCreateRecord completed, delivered 1 result
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.6 - Client: coreservicesd, UID: 0, EUID: 0, GID: 0, EGID: 0
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.6 - ODQueryCreateWithNode request, NodeID: C0103865-C9A6-4B59-B0DE-7B2989B91379, RecordType(s): dsRecTypeNative:config/SharePoints, Attribute: dsAttrTypeStandard:RecordName, MatchType: Any, Equality: CaseExact, Value(s): dsRecordsAll, Requested Attributes: dsAttrTypeStandard:GeneratedUID,dsAttrTypeNative:ftp_guestaccess,dsAttrTypeNati ve:smb_name,dsAttrTypeNative:sharepoint_account_uuid,dsAttrTypeNative:smb_create mask,dsAttrTypeNative:sharepoint_version,dsAttrTypeStandard:AppleMetaNodeLocatio n,dsAttrTypeNative:afp_guestaccess,dsAttrTypeNative:afp_shared,dsAttrTypeStandar d:RecordType,dsAttrTypeNative:ftp_shared,dsAttrTypeNative:afp_name,dsAttrTypeNat ive:smb_oplocks,dsAttrTypeNative:afp_use_parent_owner,dsAttrTypeNative:smb_direc torymask,dsAttrTypeStandard:RecordName,dsAttrTypeNative:afp_use_parent_privs,dsA ttrTypeNative:smb_guestaccess,dsAttrTypeNative:smb_inherit_permissions,dsAttrTyp eStandard:AppleMetaRecordName,dsAttrTypeNative:smb_shared,dsAttrTypeNative:direc tory_path,dsAttrTypeNative:smb_strictlocking,dsAttrTypeNative:sharepoint_group_i d,dsAttrTypeNative:ftp_name, Max Results: 2147483647
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.6, Node: /Local/Default, Module: PlistFile - client is using an old record type 'dsRecTypeNative:config/SharePoints' should be using kODRecordTypeSharePoints
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.6, Node: /Local/Default, Module: PlistFile - client is using an old record type 'dsRecTypeNative:config/SharePoints' should be using kODRecordTypeSharePoints
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.6, Node: /Local/Default, Module: PlistFile - flushing record '/private/var/db/dslocal/nodes/Default/config/SharePoints'
    Sep  4 00:23:45 localhost opendirectoryd[101]: Module: PlistFile - ___index_record_block_invoke_0: sqlite3_prepare_v2: 21
    Sep  4 00:23:45 localhost opendirectoryd[101]: Module: PlistFile - ___index_record_block_invoke_0: sqlite3_prepare_v2: 21
    Sep  4 00:23:45 localhost opendirectoryd[101]: 297.6, Node: /Local/Default, Module: PlistFile - ODQueryCreateWithNode completed
    Sep  4 00:23:55 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (down) while running as uid 0
    Sep  4 00:23:55 localhost OSInstaller[315]: Folder Manager is being asked to create a folder (down) while running as uid 0

  • Macbook pro 13" running slow after update

    After the iTunes update(version 10.7) and OS X Lion update that was rolled out a few weeks ago, my macbook pro 13" has been runnning slow at times. These are mainly those times when I am listening to music on itunes and browsing on safari (and no other activity). In case I am using more than these two applications, it almost certainly runs VERY slow and I am forced to restart. Without itunes, it runs fine though.
    Any help anyone?

    The next time you have the problem, note the exact times when it starts and ends: hour, minute, second.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Scroll back in the log to the time you noted above. Post any messages timestamped during that interval – the text, please, not a screenshot.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into a message.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.

  • Can't install Adobe 11 on Macbook Pro Retina with 10.8.2 OS

    Never had trouble installing Adobe Reader in previous versions.
    ARe other Mac folk finding they get "installation error...contact company for support"?
    the installeer downloads, installer runs but before completion I have gotten a long error message ; something about Frameworks,something not in correct place
    Anyone else having trouble
    I do have Acrobat Pro X installed... is that causing a conflict?
    Here is the error message I received when trying to download in Safari and Chrome
    "dyld:DYLD_environment variables being ignored becuase main executable (/System/Library/PrivareFrameworks/Iinstall.framework/Resoures/runner) is setuid or setgid installer;Package name is Adobe Reader X1(11.0.01. Installer: Installing at base path /Installer: the install  failed (the installer encountered an error that casued hte installation to fail. Contact the softwware manufacturer for assistance)"
    What does this mean?

    Late late last night I solved the problem
    I have  both Adobe Acrobat X Pro and Adobe Reader X
    I could neither update Reader nor install Reader X1.
    On a hunch,  I launched Acrobat Pro , was notified of update which I could not install,either.
    Same error message about  a changed environment  as I had received when unable to update Reader .
    Recalling I  had similar Adobe issue one or more years ago, I UNINSTALLED Acrobat Pro and reinstalled from scratch
    - I was then able to upgrade Acrobat Pro X
    - I was able to install Reader Xl

  • Here is a 2 for one, On a Mac Pro 5,1 2.66ghz 6 core Xeon.

    My mac pro is developing some strangeness, now when I go to start up the machine in morning it doesnt turn on until I have hit the power button 3 times, sometimes even this doesnt do the trick so I unplug it wait a couple sec and plug back in. So far its always actually started and I am happy for that as I am busy on 2 jobs right now and cannot afford this. Any ideas on what could be happening? This behaviour started probably 2 weeks ago. I have apple care and machine is only about 7 months old...
    Second part I recently purchased a memory upgrade kit from Ramjet taking th e system from 12 to 24 gigs, the ram are 6 matched pairs of 4gb and according to the info I have found should be exactly what is needed. 1033mhz ddr3, anyway I istalled it last week during a short lull. after a week I have removed it and replaced my original 12 gigs as the computer was behaving very slowly and when I checked the  activity monitor the drive was doing crazy read write activity like i was rendering something or moving big geometry in 3D. This is with nothing but AM skype and safari running. anyway it gets better when I re install my oem ram the computer kept telling me 3 times in a row that I had not put the ram in correctly so I just moved teh chips around until it was happy.
    Now when I check activity monitor with original ram I am back to disc activity around 1.4 gig read and 670mb write while its just sitting as oposed to 20+ gb with the ramjet memory.
    It seems to be runnning fine now but I am really concerned that there is something fundamentally wrong with this machine now.
    Any thoughts or assist greatly appreciated.

    Ask Ramjet to take them back, test, and send a new set to test.
    When you get new RAM, I actually recommend a quick test with Apple Hardware test at the least. There are also some memory test and performance uttilities worth running. Some run Geekbench (has memory bandwidth) as well as PRIME for OS X.
    But you should  contact  Ramjet. Maybe have them take it back and get Crucial or Kingston (they really do make a difference).
    Watch your system more closely, monitor temps as well as use AM.
    Maybe your power cord is bad or the wall outlet, or if using a UPS maybe that is not adequate (900W unit?).

  • Late 2008 MacBook Pro shuts down while closing lid

    …or it did while I could still get it to boot up—which is no longer the case.
    It started a couple of days ago with me putting it to sleep by closing the lid. Or it should have gone to sleep, but instead it came to a screetching halt before the lid was all the way down, with about an inch or two to go. And by screetching halt I mean screetching halt… imagine if you had the battery out and it was only runnning off the cable and you pulled the cable out. That's the kind of shut down I'm talking about here.
    After this it booted up fine and worked flawlessly for the remainder of the afternoon. Later that evening after bringing it home from work I continued to use it without incident until the battery low warning popped up. I shut it and the same thing happened. Only this time, once it was charged it didn't boot. I tried several things:
    - Starting up with only the power cable / battery
    - Unplugging the power cable and removing the battery, then putting it back in and connecting the cable
    - Switching the RAM chips around
    - Resetting the SMC by following Apple's instructions (http://support.apple.com/kb/HT3964)
    Nothing worked. I disconected it from power and left it with the battery out overnight. The next morning I opened it and tried starting up with the battery, then the cable, then both. Nothing. I then slowly moved the screen back and forth while repeatedly pressing the power button until at one point I heard the familiar sounds of startup before they were snuffed out by another abrupt halt. I then moved the screen very slowly in the opposite direction while continuing to repeatedly press the power button and finally got my Mac to boot up! Relief. I was able to clone the drive using SuperDuper!. I continued using my computer for another day and a half, without changing the angle of the screen, until I had to bring it to work.
    Sadly, I was unable to repeat my "trick" and my MacBook Pro remains dead. This looks like a short circuit problem to me, but I'm wondering if anyone has any input or ideas I could try. Since I have no warranty on it anymore I was wondering if there would be something I could take a look at inside. An Apple tech did once say there was a screw inside causing a short but he "fixed" it. This was an unrelated event, and it was a couple of years ago.
    A new computer is out of the question for me right now. What are my options? Would Apple charge me for a diagnosis?
    Thank you,
    Bern

    You're right, but it's only a partial diagnosis. I don't know what's actually causing the short. My question about Apple charging for a diagnosis was more related to that. Knowing if the logic board would have to be replaced or just a cable… big difference in cost I would imagine.
    I'm in Switzerland but I'll give them a call. Thanks.

  • Lion will not install on a January 2008 Mac Pro (3.1)

    I have a January 2008 Mac Pro (version 3.1) and I'm trying to install Lion on one of the hard drives in the main chassis. It has consistently failed.
    I have tried:
    Reseating memory
    Reseathing hard drives
    Zap PRAM
    Reset SMC
    Downloaded 4 fresh copies of Lion from the App Store
    Install from the installer file
    Install from a DVD made with InstallESD.DMG
    Yet, it fails consistently.
    I have 5 log files I'm willing to share, but they almost always look like this one. Some of them fail on different pkg's, but in general, this one seems to be the most regular failure. It's like the filesystem just dies in the middle of the install.
    Any insight would be GREATLY appreciated.
    Aug  5 05:33:08 localhost Unknown[328]: kern.boottime: { sec = 1312547567, usec = 0 } Fri Aug  5 05:32:47 2011
    Aug  5 05:33:08 localhost Unknown[338]: Launching the Language Chooser for an OS Install
    Aug  5 05:33:16 localhost configd[111]: bootp_session_transmit: bpf_write(en2) failed: Network is down (50)
    Aug  5 05:33:16 localhost configd[111]: DHCP en2: INIT transmit failed
    Aug  5 05:33:18 localhost LCA[339]: Bookmark failed to issue extension for item  (depth=4000): No such file or directory
    Aug  5 05:33:21 localhost LCA[339]: Using keyboard layout 0
    Aug  5 05:33:21 localhost Unknown[340]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Aug  5 05:33:21 localhost Unknown[340]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Aug  5 05:33:21 localhost Unknown[340]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Aug  5 05:33:21 localhost Unknown[340]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Aug  5 05:33:21 localhost LCA[339]: Found primary language hint "en"
    Aug  5 05:33:22 localhost configd[111]: subnet_route_if_index: can't get interface name
    Aug  5 05:33:23 astaroth LCA[339]: Using keyboard layout 0
    Aug  5 05:33:23 astaroth LCA[339]: Found primary language hint "en"
    Aug  5 05:33:23 astaroth LCA[339]: Launching the Installer using language code "English"
    Aug  5 05:33:24 astaroth OSInstaller[356]: Bookmark failed to issue extension for item  (depth=4000): No such file or directory
    Aug  5 05:33:24 astaroth OSInstaller[356]: Mac OS X Installer application started
    Aug  5 05:33:24 astaroth OSInstaller[356]: 2 display(s) found.
    Aug  5 05:33:24 astaroth OSInstaller[356]: Display[1] is NOT using OpenGL acceleration.
    Aug  5 05:33:24 astaroth OSInstaller[356]: Display[2] is NOT using OpenGL acceleration.
    Aug  5 05:33:24 astaroth OSInstaller[356]: @(#)PROGRAM:Install  PROJECT:Install-684
    Aug  5 05:33:24 astaroth OSInstaller[356]: @(#)PROGRAM:Mac OS X Installer  PROJECT:OSInstaller-346.1
    Aug  5 05:33:24 astaroth OSInstaller[356]: Hardware: MacPro3,1 @ 2.80 GHz (x 8), 32768 MB RAM
    Aug  5 05:33:24 astaroth OSInstaller[356]: Running OS Build: Mac OS X 10.7 (11A511)
    Aug  5 05:33:24 astaroth OSInstaller[356]: Env: DYLD_NO_FIX_PREBINDING=1
    Aug  5 05:33:24 astaroth OSInstaller[356]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Aug  5 05:33:24 astaroth OSInstaller[356]: Env: PWD=/
    Aug  5 05:33:24 astaroth OSInstaller[356]: Env: SHLVL=1
    Aug  5 05:33:24 astaroth OSInstaller[356]: Env: __OSINSTALL_ENVIRONMENT=1
    Aug  5 05:33:24 astaroth OSInstaller[356]: Env: CI_DEFAULT_OPENCL_USAGE=0
    Aug  5 05:33:24 astaroth OSInstaller[356]: Env: OS_INSTALL=1
    Aug  5 05:33:24 astaroth OSInstaller[356]: Env: _=/System/Installation/CDIS/LCA.app/Contents/MacOS/LCA
    Aug  5 05:33:25 astaroth OSInstaller[356]: Using product PKSecureNetEnabledProduct <file://localhost/Volumes/Lion/Mac%20OS%20X%20Install%20Data/> at distance 5
    Aug  5 05:33:25 astaroth OSInstaller[356]: Opening OSInstall automation file '/Volumes/Lion/Mac OS X Install Data/minstallconfig.xml'.
    Aug  5 05:33:25 astaroth OSInstaller[356]: Using product <OSInstallRootProduct> at distance 5
    Aug  5 05:33:25 astaroth OSInstaller[356]: Using product <OSInstallDVDProduct> based on media at /Volumes/Mac OS X Install DVD at distance 5
    Aug  5 05:33:26 astaroth OSInstaller[356]: /Volumes/Lion/Mac OS X Install Data/MacOSXInstaller.choiceChanges file found.
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ->T+[DMToolBootPreference getPartitionBootability:]: inUDS=0x112a3ac30=disk3s2=Lion
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootable=1            (bootable right now without any further action)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootCapable=0         (bootable if you call MKCFPrepareBootDevice)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootSurgeryRequired=0 (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMFSSurgeryRequired=0   (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMNewfsRequired=0       (bootable with MKCFPrep but it will rudely carve)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM <-T+[DMToolBootPreference getPartitionBootability:]: MKerr=0 out=4=0x4
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ->T+[DMToolBootPreference getPartitionBootability:]: inUDS=0x112a3ac30=disk2s2=Drive 3
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootable=1            (bootable right now without any further action)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootCapable=0         (bootable if you call MKCFPrepareBootDevice)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootSurgeryRequired=0 (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMFSSurgeryRequired=0   (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMNewfsRequired=0       (bootable with MKCFPrep but it will rudely carve)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM <-T+[DMToolBootPreference getPartitionBootability:]: MKerr=0 out=4=0x4
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ->T+[DMToolBootPreference getPartitionBootability:]: inUDS=0x112a3ac30=disk1s2=Windows7
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootable=1            (bootable right now without any further action)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootCapable=0         (bootable if you call MKCFPrepareBootDevice)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootSurgeryRequired=0 (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMFSSurgeryRequired=0   (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMNewfsRequired=0       (bootable with MKCFPrep but it will rudely carve)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM <-T+[DMToolBootPreference getPartitionBootability:]: MKerr=0 out=4=0x4
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ->T+[DMToolBootPreference getPartitionBootability:]: inUDS=0x112a3ac30=disk3s2=Lion
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootable=1            (bootable right now without any further action)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootCapable=0         (bootable if you call MKCFPrepareBootDevice)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootSurgeryRequired=0 (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMFSSurgeryRequired=0   (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMNewfsRequired=0       (bootable with MKCFPrep but it will rudely carve)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM <-T+[DMToolBootPreference getPartitionBootability:]: MKerr=0 out=4=0x4
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ->T+[DMToolBootPreference getPartitionBootability:]: inUDS=0x112a3ac30=disk0s2=Snow
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootable=1            (bootable right now without any further action)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootCapable=0         (bootable if you call MKCFPrepareBootDevice)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootSurgeryRequired=0 (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMFSSurgeryRequired=0   (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMNewfsRequired=0       (bootable with MKCFPrep but it will rudely carve)
    Aug  5 05:33:27 astaroth diskmanagementd[360]: DM <-T+[DMToolBootPreference getPartitionBootability:]: MKerr=0 out=4=0x4
    Aug  5 05:33:27 astaroth OSInstaller[356]: Automated Install: Found requested target at /Volumes/Lion.
    Aug  5 05:33:27 astaroth OSInstaller[356]: Applied choice changes from /Volumes/Lion/Mac OS X Install Data/MacOSXInstaller.choiceChanges.
    Aug  5 05:33:27 astaroth OSInstaller[356]: Allowing machine sleep.
    Aug  5 05:33:27 astaroth OSInstaller[356]: Preventing machine sleep.
    Aug  5 05:33:27 astaroth OSInstaller[356]: InstallerStatusNotifications plugin loaded
    Aug  5 05:33:27 astaroth OSInstaller[356]: =============================================================================== =
    Aug  5 05:33:27 astaroth OSInstaller[356]: Choices selected for installation:
    Aug  5 05:33:27 astaroth OSInstaller[356]:           Install: "Mac OS X"
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     BaseSystemBinaries.pkg : com.apple.pkg.BaseSystemBinaries : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     BaseSystemResources.pkg : com.apple.pkg.BaseSystemResources : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     OSInstall.mpkg : com.apple.mpkg.OSInstall : 10.7.0
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Essentials.pkg : com.apple.pkg.Essentials : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     BootCamp.pkg : com.apple.pkg.BootCamp : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     BSD.pkg : com.apple.pkg.BSD : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     PodcastCapture.pkg : com.apple.pkg.PodcastCapture : 1.0.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     JavaTools.pkg : com.apple.pkg.JavaTools : 1.0.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     RemoteDesktop.pkg : com.apple.pkg.RemoteDesktop : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     SIUResources.pkg : com.apple.pkg.SIUResources : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     AdditionalEssentials.pkg : com.apple.pkg.AdditionalEssentials : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     AdditionalSpeechVoices.pkg : com.apple.pkg.AdditionalSpeechVoices : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     AsianLanguagesSupport.pkg : com.apple.pkg.AsianLanguagesSupport : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     MediaFiles.pkg : com.apple.pkg.MediaFiles : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     MigrationAssistant.pkg : com.apple.pkg.MigrationAssistant : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Mail.pkg : com.apple.pkg.Mail : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     AddressBook.pkg : com.apple.pkg.AddressBook : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     iCal.pkg : com.apple.pkg.iCal : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Automator.pkg : com.apple.pkg.Automator : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     DVDPlayer.pkg : com.apple.pkg.DVDPlayer : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     iTunes.pkg : com.apple.pkg.iTunes : 8.2.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     iChat.pkg : com.apple.pkg.iChat : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     JavaEssentials.pkg : com.apple.pkg.JavaEssentials : 1.0.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Safari.pkg : com.apple.pkg.Safari : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     OxfordDictionaries.pkg : com.apple.pkg.OxfordDictionaries : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Japanese.pkg : com.apple.MacOSX.lang.ja : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     German.pkg : com.apple.MacOSX.lang.de : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     French.pkg : com.apple.MacOSX.lang.fr : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Spanish.pkg : com.apple.MacOSX.lang.es : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Italian.pkg : com.apple.MacOSX.lang.it : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Dutch.pkg : com.apple.MacOSX.lang.nl : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Danish.pkg : com.apple.MacOSX.lang.da : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Finnish.pkg : com.apple.MacOSX.lang.fi : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Korean.pkg : com.apple.MacOSX.lang.ko : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Norwegian.pkg : com.apple.MacOSX.lang.no : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Russian.pkg : com.apple.MacOSX.lang.ru : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Swedish.pkg : com.apple.MacOSX.lang.sv : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     BrazilianPortuguese.pkg : com.apple.MacOSX.lang.pt : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     SimplifiedChinese.pkg : com.apple.MacOSX.lang.zh_CN : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     TraditionalChinese.pkg : com.apple.MacOSX.lang.zh_TW : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Portuguese.pkg : com.apple.MacOSX.lang.pt_PT : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Polish.pkg : com.apple.MacOSX.lang.pl : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Arabic.pkg : com.apple.MacOSX.lang.ar : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Hungarian.pkg : com.apple.MacOSX.lang.hu : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Turkish.pkg : com.apple.MacOSX.lang.tr : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     Czech.pkg : com.apple.MacOSX.lang.cs : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     X11User.pkg : com.apple.pkg.X11User : 10.7.0.1.1.1309412550
    Aug  5 05:33:27 astaroth OSInstaller[356]:                     OSInstall.pkg : com.apple.pkg.OSInstall : 10.7.0.1
    Aug  5 05:33:27 astaroth OSInstaller[356]: =============================================================================== =
    Aug  5 05:33:27 astaroth OSInstaller[356]: It took 0.01 seconds to summarize the package selections.
    Aug  5 05:33:27 astaroth OSInstaller[356]: Memory statistics for 'Installing' pane:
    Aug  5 05:33:27 astaroth OSInstaller[356]: Physical Memory Allocation:  1554 MB wired,     7 MB trapped,   122 MB active,    97 MB inactive, 30988 MB free, 31207 MB usable, 32768 MB total
    Aug  5 05:33:27 astaroth OSInstaller[356]: Dist disk is not root.
    Aug  5 05:33:27 astaroth OSInstaller[356]: Set authorization level to root for session
    Aug  5 05:33:27 astaroth runner[362]: Administrator authorization granted.
    Aug  5 05:33:27 astaroth OSInstaller[356]: Recovery system image located at "/Volumes/Mac OS X Install DVD/BaseSystem.dmg"
    Aug  5 05:33:27 astaroth OSInstaller[356]: Remote Install Assistant found at :(null)
    Aug  5 05:33:27 astaroth OSInstaller[356]: Memory statistics for 'Install Mac OS X' pane:
    Aug  5 05:33:27 astaroth OSInstaller[356]: Physical Memory Allocation:  1556 MB wired,     6 MB trapped,   122 MB active,    97 MB inactive, 30987 MB free, 31206 MB usable, 32768 MB total
    Aug  5 05:33:27 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/BaseSystemBinaries.pkg (582659072 b)
    Aug  5 05:33:27 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/BaseSystemResources.pkg (278027264 b)
    Aug  5 05:33:27 astaroth OSInstaller[356]: IF will install package file://localhost/System/Installation/Packages/OSInstall.mpkg (0 b)
    Aug  5 05:33:27 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Essentials.pkg (2010667008 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/BootCamp.pkg (6598656 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/BSD.pkg (564994048 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/PodcastCapture.pkg (14619648 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/JavaTools.pkg (27096064 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/RemoteDesktop.pkg (67584 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/SIUResources.pkg (67584 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: IF will install package file://localhost/System/Installation/Packages/OSInstall.mpkg (0 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/AdditionalEssentials.pkg (37835776 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/AdditionalSpeechVoices.pkg (293474304 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/AsianLanguagesSupport.pkg (60019712 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/MediaFiles.pkg (52092928 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/MigrationAssistant.pkg (27924480 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Mail.pkg (45618176 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/AddressBook.pkg (12897280 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/iCal.pkg (32684032 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Automator.pkg (24425472 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/DVDPlayer.pkg (21167104 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/iTunes.pkg (105423872 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/iChat.pkg (29308928 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/JavaEssentials.pkg (21808128 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Safari.pkg (32510976 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/OxfordDictionaries.pkg (102232064 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Japanese.pkg (47386624 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/German.pkg (47719424 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/French.pkg (47799296 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Spanish.pkg (46760960 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Italian.pkg (45203456 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Dutch.pkg (45266944 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Danish.pkg (42574848 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Finnish.pkg (42875904 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Korean.pkg (45684736 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Norwegian.pkg (42617856 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Russian.pkg (45253632 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Swedish.pkg (42807296 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/BrazilianPortuguese.pkg (43142144 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/SimplifiedChinese.pkg (45471744 b)
    Aug  5 05:33:28 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/TraditionalChinese.pkg (44797952 b)
    Aug  5 05:33:29 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Portuguese.pkg (43168768 b)
    Aug  5 05:33:29 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Polish.pkg (43360256 b)
    Aug  5 05:33:29 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Arabic.pkg (42934272 b)
    Aug  5 05:33:29 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Hungarian.pkg (30493696 b)
    Aug  5 05:33:29 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Turkish.pkg (30557184 b)
    Aug  5 05:33:29 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/Czech.pkg (30099456 b)
    Aug  5 05:33:29 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/X11User.pkg (82910208 b)
    Aug  5 05:33:29 astaroth OSInstaller[356]: PK will install package file://localhost/System/Installation/Packages/OSInstall.pkg (0 b)
    Aug  5 05:33:29 astaroth OSInstaller[356]: Setting external root to: /
    Aug  5 05:33:29 astaroth OSInstaller[356]: OSI: com.apple.pkg.BaseSystemResources remapped external root path to: /
    Aug  5 05:33:29 astaroth OSInstaller[356]: Total install size including padding: 6436848640 b + 0 b non-OS collection items
    Aug  5 05:33:29 astaroth OSInstaller[356]: Can not connect to /var/run/systemkeychaincheck.socket: No such file or directory
    Aug  5 05:33:29 astaroth Unknown[340]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Aug  5 05:33:29 astaroth Unknown[340]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Aug  5 05:33:29 astaroth Unknown[340]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Aug  5 05:33:29 astaroth Unknown[340]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Aug  5 05:33:29 astaroth OSInstaller[356]: PK will install signed package file://localhost/Volumes/Lion/Mac%20OS%20X%20Install%20Data/MacOS_10_7_Incompat ibleAppList.pkg
    Aug  5 05:33:29 astaroth OSInstaller[356]: PFPackage::packageWithURL - can't instantiate package: /System/Installation/Packages/OSInstall.mpkg
    Aug  5 05:33:29 astaroth OSInstaller[356]: Error opening package "OSInstall.mpkg".
    Aug  5 05:33:30 astaroth OSInstaller[356]: Starting installation:
    Aug  5 05:33:30 astaroth OSInstaller[356]: Performing volume consistency check on 'Lion'.
    Aug  5 05:33:30 astaroth OSInstaller[356]: Checking Volume
    Aug  5 05:33:30 astaroth OSInstaller[356]: Checking file system
    Aug  5 05:33:30 astaroth OSInstaller[356]: Checking Journaled HFS Plus volume.
    Aug  5 05:33:30 astaroth OSInstaller[356]: Checking extents overflow file.
    Aug  5 05:33:30 astaroth OSInstaller[356]: Checking catalog file.
    Aug  5 05:33:33 astaroth OSInstaller[356]: Checking multi-linked files.
    Aug  5 05:33:33 astaroth OSInstaller[356]: Checking catalog hierarchy.
    Aug  5 05:33:33 astaroth OSInstaller[356]: Checking extended attributes file.
    Aug  5 05:33:36 astaroth OSInstaller[356]: Checking volume bitmap.
    Aug  5 05:33:37 astaroth OSInstaller[356]: Checking volume information.
    Aug  5 05:33:37 astaroth OSInstaller[356]: The volume Lion appears to be OK.
    Aug  5 05:33:37 astaroth OSInstaller[356]: Volume repair complete.
    Aug  5 05:33:37 astaroth OSInstaller[356]: Updating boot support partitions for the volume as required.
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM ->T-[DMToolBootPreference buildBootCachesForDisk:forcing:]: inDiskUDS=0x7fa55d931a48=disk3s2=Lion inForce=1
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM ->T+[DMToolBootPreference getPartitionBootability:]: inUDS=0x112a3ac30=disk3s2=Lion
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootable=1            (bootable right now without any further action)
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootCapable=0         (bootable if you call MKCFPrepareBootDevice)
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootSurgeryRequired=0 (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMFSSurgeryRequired=0   (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMNewfsRequired=0       (bootable with MKCFPrep but it will rudely carve)
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM <-T+[DMToolBootPreference getPartitionBootability:]: MKerr=0 out=4=0x4
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM <-T-[DMToolBootPreference buildBootCachesForDisk:forcing:]: 1
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM ->T+[DMToolBootPreference getPartitionBootability:]: inUDS=0x112a3ac30=disk3s2=Lion
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootable=1            (bootable right now without any further action)
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootCapable=0         (bootable if you call MKCFPrepareBootDevice)
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootSurgeryRequired=0 (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMFSSurgeryRequired=0   (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMNewfsRequired=0       (bootable with MKCFPrep but it will rudely carve)
    Aug  5 05:33:37 astaroth diskmanagementd[360]: DM <-T+[DMToolBootPreference getPartitionBootability:]: MKerr=0 out=4=0x4
    Aug  5 05:33:38 astaroth OSInstaller[356]: Volume passed consistency checks.
    Aug  5 05:33:38 astaroth OSInstaller[356]: Promoting non-target imgsrc volume /Volumes/Snow.
    Aug  5 05:33:38 astaroth OSInstaller[356]: Calculating expected install size requirements
    Aug  5 05:33:38 astaroth OSInstaller[356]: Reserved for install:    7022.4 MB (0.0 MB non-OS collection items, 585.5 MB recovery system)
    Aug  5 05:33:38 astaroth OSInstaller[356]: Currently available:     999197.5 MB
    Aug  5 05:33:38 astaroth Unknown[340]: 2011-08-05 05:33:38.460 Mac OS X Installer[356:165b3] Looking for system packages
    Aug  5 05:33:38 astaroth Unknown[340]: 2011-08-05 05:33:38.501 Mac OS X Installer[356:165b3] no system packages found
    Aug  5 05:33:38 astaroth Unknown[340]: 2011-08-05 05:33:38.501 Mac OS X Installer[356:165b3] No or Invalid system receipts found on /Volumes/Lion/Recovered Items
    Aug  5 05:33:38 astaroth Unknown[340]: 2011-08-05 05:33:38.501 Mac OS X Installer[356:165b3] Attempting fallback using: /System/Library/PrivateFrameworks/SystemMigration.framework/Resources/FallbackS ystemFiles.plist
    Aug  5 05:33:38 astaroth Unknown[340]: 2011-08-05 05:33:38.710 Mac OS X Installer[356:165b3] Finding system files...
    Aug  5 05:33:38 astaroth Unknown[340]: 2011-08-05 05:33:38.977 Mac OS X Installer[356:165b3] Writing system path cache.
    Aug  5 05:33:38 astaroth Unknown[340]: 2011-08-05 05:33:38.981 Mac OS X Installer[356:165b3] FSF cache NOT written: /Volumes/Lion/Recovered Items/Library/Caches/com.apple.FindSystemFiles.plist
    Aug  5 05:33:39 astaroth OSInstaller[356]: Reapable space:          0.0 MB
    Aug  5 05:33:39 astaroth OSInstaller[356]: Creating recovery system for volume "Lion".
    Aug  5 05:33:39 astaroth diskmanagementd[360]: DM ->T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: inParams={
                  DMGChunkFile = "/Volumes/Mac OS X Install DVD/BaseSystem.chunklist";
                  DMGFile = "/Volumes/Mac OS X Install DVD/BaseSystem.dmg";
                  DonorDiskUDSW = "disk3s2 Lion";
                  RepairDonor = 0;
                  VerifyImage = 0;
    Aug  5 05:33:39 astaroth OSInstaller[356]: Creating recovery volume.
    Aug  5 05:33:39 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: donor disk's storage system is simple so it itself will be the donor
    Aug  5 05:33:39 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: normalized donor: logical=0x7fa559c1aa28=disk3s2=Lion=(iflvuuid=(null)) physical=0x112b40cb0=disk3s2=Lion=disk3s2 storage=(null)
    Aug  5 05:33:39 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: ensured donor is slice and on GPT
    Aug  5 05:33:39 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: donor's whole-disk=0x112b40c10=disk3
    Aug  5 05:33:39 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: ensured target and donor are reasonable sizes (>2GB) to support a full OS installation
    Aug  5 05:33:39 astaroth OSInstaller[356]: Checking target disk
    Aug  5 05:33:39 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: doing fsck of simple donor slice=0x112b40cb0=disk3s2=Lion
    Aug  5 05:33:39 astaroth OSInstaller[356]: Checking file system
    Aug  5 05:33:39 astaroth OSInstaller[356]: Checking Journaled HFS Plus volume.
    Aug  5 05:33:39 astaroth OSInstaller[356]: Checking extents overflow file.
    Aug  5 05:33:39 astaroth OSInstaller[356]: Checking catalog file.
    Aug  5 05:33:42 astaroth OSInstaller[356]: Checking multi-linked files.
    Aug  5 05:33:42 astaroth OSInstaller[356]: Checking catalog hierarchy.
    Aug  5 05:33:42 astaroth OSInstaller[356]: Checking extended attributes file.
    Aug  5 05:33:45 astaroth OSInstaller[356]: Checking volume bitmap.
    Aug  5 05:33:46 astaroth OSInstaller[356]: Checking volume information.
    Aug  5 05:33:46 astaroth OSInstaller[356]: The volume Lion appears to be OK.
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: done fsck of donor slice; err=0
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: doing check if there is a WindowsOS at part#4 on phy's whole=0x112b40c10=disk3
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: if WINOS on partID=4 then caution; isWindowsOSonPart4=0
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: at DoneCheckingDontPushWindowsOSPast4
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: doing test of boot.ini file(s) updatability on phy's whole=0x112b40c10=disk3
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: done test boot.ini updatability; err=ShouldAbort=0
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: was .dmg already attached/mounted = 0
    Aug  5 05:33:46 astaroth OSInstaller[356]: Attaching disk image /Volumes/Mac OS X Install DVD/BaseSystem.dmg
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM ->T+[DMToolBootPreference getPartitionBootability:]: inUDS=0x112a3ac30=disk3s2=Lion
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootable=1            (bootable right now without any further action)
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootCapable=0         (bootable if you call MKCFPrepareBootDevice)
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootSurgeryRequired=0 (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMFSSurgeryRequired=0   (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMNewfsRequired=0       (bootable with MKCFPrep but it will rudely carve)
    Aug  5 05:33:46 astaroth diskmanagementd[360]: DM <-T+[DMToolBootPreference getPartitionBootability:]: MKerr=0 out=4=0x4
    Aug  5 05:33:48 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: done attach; err=0
    Aug  5 05:33:48 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: got VolMP=/Volumes/Mac OS X Base System 1 VolUDS=0x112b40a10=disk17s3=Mac OS X Base System WholeUDS=0x112b40ab0=disk17
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: ensured img's attached vol is an OSX system
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: calc requiredFileSpaceForRecoveryFilesULL from file sizes, also is further preflight that files exist
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: start with 0 B
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: peek src=/Volumes/Mac OS X Base System 1/System/Library/CoreServices/boot.efi err=(null)
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: add 858800 B
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: peek src=/Volumes/Mac OS X Base System 1/System/Library/Caches/com.apple.kext.caches/Startup/kernelcache err=(null)
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: add 23992189 B
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: peek src=/Volumes/Mac OS X Install DVD/BaseSystem.dmg err=(null)
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: add 451307798 B
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: allocating kEstimatedBootDotPList_LogicalSizeULL
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: add 16384 B
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: peek src=/Volumes/Mac OS X Base System 1/System/Library/CoreServices/SystemVersion.plist err=(null)
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: add 475 B
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: peek src=/Volumes/Mac OS X Base System 1/System/Library/CoreServices/com.apple.recovery.boot/PlatformSupport.plist err=(null)
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: add 2245 B
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: doing BaseSystem.dmg's ChunkList
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: peek src=/Volumes/Mac OS X Install DVD/BaseSystem.chunklist err=(null)
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: add 1876 B
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: CALC result phase 1 (after adding up logical file sizes in dmg + expected to create ourselves) requiredFileSpaceForRecoveryFilesULL=476179767 =Sbydiv=930038 =Mbydiv=454
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: add no provision for existing files in booter (will only be adding fixed iomedia-alloc-for-BootRoot later below)
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: CALC result phase 2 (after considering ExistingIfAny booter volume files with physical on-disk rounded up to alloc block sizes) requiredFileSpaceForAllFilesULL=476179767 =Sbydiv=930038 =Mbydiv=454
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: create desiredMinRecoveryDiskIOMediaSizeULL; start with requiredFileSpaceForAllFilesULL
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: add kConvertFromLogicalSizeToIOMediaSize_ULL=16777216
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: CALC result phase 3 (converted to iomedia desired size) desiredMinRecoveryDiskIOMediaSizeULL=492956983 =Sbydiv=962806 =Mbydiv=470
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: after adding allowance for BootRoot kBootRootEtc_IOMediaSizeULL=134217728 desiredMinRecoveryDiskIOMediaSizeULL=627174711
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: CALC result phase 4 (after adding BootRoot iomedia allocation) desiredMinRecoveryDiskIOMediaSizeULL=627174711 =Sbydiv=1224950 =Mbydiv=598
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: after applying kIfNewRecoverySystemMakeEntireBooterAtLeast_IOMediaSizeULL=650000000
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: CALC result phase 5 (after applying minimum) desiredMinRecoveryDiskIOMediaSizeULL=650000000 =Sbydiv=1269531 =Mbydiv=619
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: doing find/create/resize recoveryDisk
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ->T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: inMinSizeB=650000000 inSTORorNOT=(null) inPhyUDS=0x112b40cb0=disk3s2=Lion inLogUDS=0x7fa559c1aa28=disk3s2=Lion inLogREF=(null) inPct=16..32
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: READY TO SCAN EXISTING CONDITIONS
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: existing conditions right after PHY=disk3s2: usedOrNotSpaceB=134221312 hasBooter=0 booterPartID/disk=0/(null) booterLocB/SizeB=0/0
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: existing conditions of PHY: disk3s2 loc=S=409640=B=209735680 siz=S=1952853344=B=999860912128=N=999860912128
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: existing conditions of LOG: disk3s2 (could be whole so no loc) siz=S=1952853344=B=999860912128=N=999860912128
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: did preflight that booter, if any, is not mounted
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: READY TO DO CASE: case=CreateNewBooterAfterShrinkingSimple spaceDeltaB=515778688 booterDeltaB=0 (adviceIfUnable=-69886)
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: case: shrink simple and create booter in thusly-opened-up space
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: note: PHY host should have already been fsck-checked by caller, for in case we need to resize, such as in this case
    Aug  5 05:33:49 astaroth OSInstaller[356]: Shrinking host partition and creating new recovery partition
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: boost whatToDo_SpaceDeltaReqULL by const for if we grow time-over-time in chunks, now=515778688
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: boost whatToDo_SpaceDeltaReqULL by const for if at end of map=515782784
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: did gross sanity preflight that delta better be smaller than total host
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: phyDonorOrigSize=999860912128 ->shrink-> donorDesiredB=999345129344
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: bef alignHFSrsz donorDesiredB=999345129344
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: aft alignHFSrsz donorDesiredB=999345127424
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: will be creating new booter to occupy gap=(0=MaxFitToFill)=0
    Aug  5 05:33:49 astaroth OSInstaller[356]: Shrinking target volume from 999860912128 to 999345127424 bytes
    Aug  5 05:33:49 astaroth OSInstaller[356]: Shrinking file system
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: did vol shrink on donor slice; err=0
    Aug  5 05:33:49 astaroth OSInstaller[356]: Shrinking partition and creating new recovery partition
    Aug  5 05:33:49 astaroth OSInstaller[356]: Modifying partition map
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: did shrink of donor slice part itself, and created new slice=(
                  disk3s3
              ) err=0
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: did get BSD of newly created recovery disk
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: at SuccessfullyDidACase; oooRecDiskBSD/UDS=disk3s3/0x112b40870=disk3s3
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: ensuring output rec disk = booter is Apple_Boot type (fail-safe DM/MK/iokit bugs)
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: do unmount recoveryNewDisk, should be superfluous because its part type should not be automounted
    Aug  5 05:33:49 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: doing newfs_hfs on newly created recovery disk
    Aug  5 05:33:49 astaroth OSInstaller[356]: Formatting recovery partition
    Aug  5 05:33:49 astaroth OSInstaller[356]: Initialized /dev/rdisk3s3 as a 620 MB HFS Plus volume with a 8192k journal
    Aug  5 05:33:49 astaroth OSInstaller[356]: Mounting disk
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ->T+[DMToolBootPreference getPartitionBootability:]: inUDS=0x112a3ac30=disk3s2=Lion
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: did newfs_hfs of recovery disk; err=0
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: at exit with err=0 unmountMeOnErrExit=0x0
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM <-T-[DMToolBootPreference getMakeRecDisk:storage:phyUDS:logUDS:logREF:recBSD:percentBegin:percentEnd:]: retErr=0 outDisk=disk3s3
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: final recoveryDisk=disk3s3=0x112b40b60=disk3s3=Recovery HD
    Aug  5 05:34:00 astaroth OSInstaller[356]: Mounting recovery partition
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: did mount of recovery disk; err=0
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: recoveryDiskMountpoint=/Volumes/Recovery HD
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: did best-effort create MdsNoIndex=/Volumes/Recovery HD/.metadata_never_index success=1
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: did best-effort create FSEventsNoIndexDir=/Volumes/Recovery HD/.fseventsd err=(ignoring)=(null)
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: did best-effort create FSEventsNoIndexFile=/Volumes/Recovery HD/.fseventsd/no_log success=1
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: recoveryFilesDstPath=/Volumes/Recovery HD/com.apple.recovery.boot
    Aug  5 05:34:00 astaroth OSInstaller[356]: Creating boot loader directory
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootable=1            (bootable right now without any further action)
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootCapable=0         (bootable if you call MKCFPrepareBootDevice)
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootSurgeryRequired=0 (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMFSSurgeryRequired=0   (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMNewfsRequired=0       (bootable with MKCFPrep but it will rudely carve)
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM <-T+[DMToolBootPreference getPartitionBootability:]: MKerr=0 out=132=0x84
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ->T+[DMToolBootPreference getPartitionBootability:]: inUDS=0x112a3ac30=disk3s2=Lion
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootable=1            (bootable right now without any further action)
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootCapable=0         (bootable if you call MKCFPrepareBootDevice)
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootSurgeryRequired=0 (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMFSSurgeryRequired=0   (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMNewfsRequired=0       (bootable with MKCFPrep but it will rudely carve)
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM <-T+[DMToolBootPreference getPartitionBootability:]: MKerr=0 out=132=0x84
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: did best-effort remove any pre-existing recovery dir; err=(ignoring)=Error Domain=NSCocoaErrorDomain Code=4 "“com.apple.recovery.boot” couldn’t be removed." UserInfo=0x7fa559e1a090 {NSFilePath=/Volumes/Recovery HD/com.apple.recovery.boot, NSUserStringVariant=(
                  Remove
              ), NSUnderlyingError=0x7fa559e1a010 "The operation couldn’t be completed. No such file or directory"}
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: did create dir; err=(null)
    Aug  5 05:34:00 astaroth OSInstaller[356]: Copying boot loader
    Aug  5 05:34:00 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: did copy file boot.efi; err=0
    Aug  5 05:34:00 astaroth OSInstaller[356]: Copying kernel
    Aug  5 05:34:01 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: did copy file kernelcache; err=0
    Aug  5 05:34:01 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: starting lengthy copy of dmg file itself and force name to BaseSystem.dmg
    Aug  5 05:34:01 astaroth OSInstaller[356]: Copying system image
    Aug  5 05:34:11 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: did copy file dmg; err=0
    Aug  5 05:34:11 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: did copy file SystemVersion.plist; err=0
    Aug  5 05:34:11 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: did copy file PlatformSupport.plist; err=0
    Aug  5 05:34:11 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: did copy chunklist and forced name to BaseSystem.chunklist; err=0
    Aug  5 05:34:11 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: writing bootPlistDict={
                  "Kernel Cache" = "\\com.apple.recovery.boot\\kernelcache";
                  "Kernel Flags" = "rp=file:///com.apple.recovery.boot/BaseSystem.dmg";
              } to pathName=/Volumes/Recovery HD/com.apple.recovery.boot/com.apple.Boot.plist
    Aug  5 05:34:11 astaroth OSInstaller[356]: Writing boot plist
    Aug  5 05:34:11 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: note: the bootPlist size better not exceed 16384 B
    Aug  5 05:34:11 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: bef bless; dir=/Volumes/Recovery HD/com.apple.recovery.boot file=/Volumes/Recovery HD/com.apple.recovery.boot/boot.efi label=Recovery HD
    Aug  5 05:34:11 astaroth OSInstaller[356]: Blessing boot file
    Aug  5 05:34:11 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: aft bless; err=0
    Aug  5 05:34:11 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: at Exit; err=0
    Aug  5 05:34:11 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: recoveryDiskBSD=disk3s3 physicalDonorBSD=disk3s2
    Aug  5 05:34:11 astaroth diskmanagementd[360]: DM ..T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]: detach if set: didDiskImageAttach=1
    Aug  5 05:34:11 astaroth OSInstaller[356]: Detaching disk image
    Aug  5 05:34:11 astaroth diskmanagementd[360]: DM <-T-[DMToolBootPreference ensureRecoveryPartitionForVolume:]
    Aug  5 05:34:11 astaroth OSInstaller[356]: Done creating recovery volume.
    Aug  5 05:34:11 astaroth OSInstaller[356]: Configuring volume "Lion"
    Aug  5 05:34:11 astaroth OSInstaller[356]: Preparing disk for Netbooted OS Install.
    Aug  5 05:34:11 astaroth diskmanagementd[360]: DM ->T+[DMToolBootPreference getPartitionBootability:]: inUDS=0x112b40c30=disk3s2=Lion
    Aug  5 05:34:12 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootable=1            (bootable right now without any further action)
    Aug  5 05:34:12 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootCapable=0         (bootable if you call MKCFPrepareBootDevice)
    Aug  5 05:34:12 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootSurgeryRequired=0 (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:34:12 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMFSSurgeryRequired=0   (for primitive MBR on BIOS, add boot block and loader)
    Aug  5 05:34:12 astaroth diskmanagementd[360]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMNewfsRequired=0       (bootable with MKCFPrep but it will rudely carve)
    Aug  5 05:34:12 astaroth diskmanagementd[360]: DM <-T+[DMToolBootPreference getPartitionBootability:]: MKerr=0 out=132=0x84
    Aug  5 05:34:12 astaroth OSInstaller[356]: Volume disk3s2 mounted at /Volumes/Lion is ready
    Aug  5 05:34:12 astaroth OSInstaller[356]: Preparing disk for local booted OS Install.
    Aug  5 05:34:12 astaroth OSInstaller[356]: Physical memory statistics immediately before turning on virtual memory backing store:
    Aug  5 05:34:12 astaroth OSInstaller[356]: Physical Memory Allocation:  3258 MB wired,     6 MB trapped,   117 MB active,    99 MB inactive, 29288 MB free, 29504 MB usable, 32768 MB total
    Aug  5 05:34:12 astaroth OSInstaller[356]: Activated virtual memory backing store at mount point '/Volumes/Lion'
    Aug  5 05:34:12 astaroth OSInstaller[356]: Preparing disk for local booted install.
    Aug  5 05:34:12 astaroth OSInstaller[356]: Creating installation log on volume "Lion"
    Aug  5 05:34:12 astaroth OSInstaller[356]: Create temporary directory "/Volumes/Lion/Install.356O3Gevl"
    Aug  5 05:34:12 astaroth OSInstaller[356]: IFPKInstallElement (48 packages)
    Aug  5 05:34:12 astaroth OSInstaller[356]: Using authorization level of root for IFPKInstallElement
    Aug  5 05:34:12 astaroth OSInstaller[356]: PackageKit: ----- Begin install -----
    Aug  5 05:34:12 astaroth OSInstaller[356]: PackageKit: request=PKInstallRequest <48 packages, destination=/Volumes/Lion>
    Aug  5 05:34:12 astaroth OSInstaller[356]: PackageKit: packages=(
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/BaseSystemBinaries.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/BaseSystemResources.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/Essentials.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/BootCamp.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/BSD.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/PodcastCapture.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/JavaTools.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/RemoteDesktop.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/SIUResources.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/AdditionalEssentials.pkg>",
                  "PKLeopardPackage <file://localhost/System/Installation/Packages/AdditionalSpeechVoices.pkg>",
                  "PKLeopardPackage <fi

    I figured out the problem.
    This is going to sound a little crazy, but I've spent a lot of time on this one.
    There's some kind of incompatibility with Lion and Seagate ST31000340AS drives. I was trying to install Lion on these drives and it would consistently fail. I've also tried to use these drives in a RAID volume. No go. I tried three different drives of this model. All of them failed.
    I tried to install Lion on a Seagate ST31000528AS and it worked first time and sings beautifully.

Maybe you are looking for

  • How do I get the music I've copied from CDs to sync to my iPhone?

    I have lots of music on on my computer that I have loaded from my CD collection.  They sync to my ipod, but I can't figure out how to get them on my phone. My husband didn't have this problem syncing his phone and computer but we can't figure out wha

  • Nomad Jukebox Zen Xtra PLEASE HE

    My player was locked on the EAX screen, and I figured out how to get to the rescue mode, and I clicked "Clean Up" and then pressed the check, and then it went back to the rescue mode screen and nothing's happening. Where do I go from here? What does

  • Everytime I hit play on Logic the arpeggiator starts playing

    Hi there. I'm having a problems with my arpeggiator on Logic Pro 10.1.0 The main problem is every time I play my track the arpeggiator turns itself on automatically and the arpeggiator is set to arpeggiate the drums so they just go crazy. I'm trying

  • Importing photos to my ipad 2 on iOS 4.3.2 using camera connection kit causes photo app to crash

    Importing photos to my ipad 2 on iOS 4.3.2 using camera connection kit causes photo app to crash. Tried importing photo from an iPhone 4/ Panasonic DMC-FX50 via USB and SD card but without success. However, importing video from a Flip Mino HD is ok.

  • Shockwave download limit from a php file ?

    i have wierd problem i work with getnettext(" http://www.pbs.org/pov/borders/2004/sas21/flowers.php?") i can receive the information, about 100k of text, in the director environment but when i call from shockwave in a browser it'll not get the inform