Restore backup in another machine

Forgive me for the 'weak' English.
Oracle 10gR2 in both machines.
RH4E in both machines.
I am trying to restore one backup in another machine.
I copied the backup files to the new host, created one passwordfile, created a init.ora file and created the directories used in the init.ora.
I set the ORACLE_SID for the SID of the original db and after to try to connect as sysdba I receive error ORA-01031: insufficient privileges.
sqlnet.ora:
SQLNET.AUTHENTICATION_SERVICES= (NTS)
But I also tried with other parameters (NONE, EXCLUSIVE) and nothing.
I have one another instance running in this machine (where I want restore backup).
export oracle_sid=my_sid
sqlplus /nolog
SQL> conn /as sysdba
ORA-01031: insufficient privileges
Somebody can help me?

sqlnet.ora:
SQLNET.AUTHENTICATION_SERVICES= (NTS)Assuming your OS user (normally oracle) is member of dba group, try removing (or commenting) that line.

Similar Messages

  • Can anyone help me with the commands to import and restore  backup from  another administrative server

    Dear all.
                         Can anyone help me with the commands to import and restore  backup from  another administrative server

    I tried, even with code tags it looks the same since the 2500 character limit is exceeded.
    Please post just the relevant parts inside tags as mentioned, and choose a descriptive subject line.
    I'm locking this thread.
    Thomas

  • After restore backup from time machine, all thumbnails in photos are blank. How to fix ?

    After restore backup from time machine, all thumbnails in photos are blank. How to fix ?
    I'm using Yosemite 10.10.3 and Photos. i have tried repair database, but no success .

    Try these for the first attempt:
    First be sure to have a backup copy of the library if you already don't have one.
    OT

  • Can I restore backup from another mac with time machine?

    I would like to restore files from a TM backup from another Mac - is this possible? Thanks.

    I'm not sure I know how to help. I use OS X Server's Time Machine services from a Mac Mini to do my back ups to a drive connected to that server. I have the same user account on one MBP Retina that does not do back ups as another MBP Retina that DOES back ups. However, I can't even open the sparse bundle from the one that doesn't do back ups of the one that does (if that makes sense).
    You might try and see if this link helps. This guy was the TM guru around here. He might have addressed a solution to what you're trying to do.

  • RESTORE BACKUP IN ANOTHER DATABASE

    Hi,
    I used RMAN to make a full backup of the a database production. Now, I need recovery this same backup in another database from test. It is in another machine. How can I do it?
    My work so far:
    - I copy de backups files to another machine, with another database which was installed a same version of the Oracle Database 10g.
    - I put the test database to run in archivelog mode
    And now?
    Sorry my english.
    Thanks
    Message was edited by:
    user523458

    Hi,
    Since 2 weeks ago, I´m trying clone a production database into a test database.
    I´m search, search so much and I did not arrive the place some. I write and execute the following script:
    ==========================================================================
    RMAN> run {
    2> SET NEWNAME FOR DATAFILE 1 TO '/u02/oradata/oralab/system01.dbf';
    3> SET NEWNAME FOR DATAFILE 2 TO '/u02/oradata/oralab/undotbs01.dbf';
    4> SET NEWNAME FOR DATAFILE 3 TO '/u02/oradata/oralab/sysaux01.dbf';
    5> SET NEWNAME FOR DATAFILE 4 TO '/u02/oradata/oralab/users01.dbf';
    6> SET NEWNAME FOR DATAFILE 5 TO '/u02/oradata/oralab/integracao.dbf';
    7> SET NEWNAME FOR DATAFILE 6 TO '/u02/oradata/oralab/legis_data.dbf';
    8> SET NEWNAME FOR DATAFILE 7 TO '/u02/oradata/oralab/NOVA_INTERNET';
    9> SET NEWNAME FOR DATAFILE 8 TO '/u02/oradata/oralab/legis_text.dbf';
    10> SET NEWNAME FOR DATAFILE 9 TO '/u02/oradata/oralab/log01.dbf';
    11> SET NEWNAME FOR DATAFILE 10 TO '/u02/oradata/oralab/tecwin_web.dbf';
    SQL 'ALTER SYSTEM ARCHIVE LOG CURRENT';
    12> 13> 14> 15> DUPLICATE TARGET DATABASE TO ORALAB
    16> PFILE=/u01/app/oracle/product/10.1.0/Db_1/dbs/initoralab.ora
    17> LOGFILE
    18> GROUP 1 ('/u02/oradata/oralab/redo01.log','/u02/oradata/oralab/redo01b.log') SIZE 10M REUSE,
    19> GROUP 2 ('/u02/oradata/oralab/redo02.log','/u02/oradata/oralab/redo02b.log') SIZE 10M REUSE,
    20> GROUP 3 ('/u02/oradata/oralab/redo03.log','/u02/oradata/oralab/redo03b.log') SIZE 10M REUSE,
    21> GROUP 4 ('/u02/oradata/oralab/redo04.log','/u02/oradata/oralab/redo04b.log') SIZE 10M REUSE,
    22> GROUP 5 ('/u02/oradata/oralab/redo05.log','/u02/oradata/oralab/redo05b.log') SIZE 10M REUSE;
    23> }
    EXIT
    ==========================================================================
    And I obtained the following result :
    ==========================================================================
    executing command: SET NEWNAME
    using target database controlfile instead of recovery catalog
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    sql statement: ALTER SYSTEM ARCHIVE LOG CURRENT
    Starting Duplicate Db at 07-AUG-06
    allocated channel: ORA_AUX_DISK_1
    channel ORA_AUX_DISK_1: sid=160 devtype=DISK
    contents of Memory Script:
    set until scn 213934104;
    set newname for datafile 1 to
    "/u02/oradata/oralab/system01.dbf";
    set newname for datafile 2 to
    "/u02/oradata/oralab/undotbs01.dbf";
    set newname for datafile 3 to
    "/u02/oradata/oralab/sysaux01.dbf";
    set newname for datafile 4 to
    "/u02/oradata/oralab/users01.dbf";
    set newname for datafile 5 to
    "/u02/oradata/oralab/integracao.dbf";
    set newname for datafile 6 to
    "/u02/oradata/oralab/legis_data.dbf";
    set newname for datafile 7 to
    "/u02/oradata/oralab/NOVA_INTERNET";
    set newname for datafile 8 to
    "/u02/oradata/oralab/legis_text.dbf";
    set newname for datafile 9 to
    "/u02/oradata/oralab/log01.dbf";
    set newname for datafile 10 to
    "/u02/oradata/oralab/tecwin_web.dbf";
    restore
    check readonly
    clone database
    executing Memory Script
    executing command: SET until clause
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting restore at 07-AUG-06
    using channel ORA_AUX_DISK_1
    channel ORA_AUX_DISK_1: starting datafile backupset restore
    channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
    restoring datafile 00001 to /u02/oradata/oralab/system01.dbf
    restoring datafile 00002 to /u02/oradata/oralab/undotbs01.dbf
    restoring datafile 00003 to /u02/oradata/oralab/sysaux01.dbf
    restoring datafile 00004 to /u02/oradata/oralab/users01.dbf
    restoring datafile 00005 to /u02/oradata/oralab/integracao.dbf
    restoring datafile 00006 to /u02/oradata/oralab/legis_data.dbf
    restoring datafile 00007 to /u02/oradata/oralab/NOVA_INTERNET
    restoring datafile 00008 to /u02/oradata/oralab/legis_text.dbf
    restoring datafile 00009 to /u02/oradata/oralab/log01.dbf
    restoring datafile 00010 to /u02/oradata/oralab/tecwin_web.dbf
    channel ORA_AUX_DISK_1: restored backup piece 1
    piece handle=/u03/admin/integra/flash_recovery_area/INTEGRA/backupset/2006_08_07/o1_mf_nnndf_TAG20060807T103544_2fg5w27d_.bkp tag=TAG20060807T103544
    restore not complete
    failover to previous backup
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 08/07/2006 14:36:15
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06026: some targets not found - aborting restore
    RMAN-06023: no backup or copy of datafile 10 found to restore
    RMAN-06023: no backup or copy of datafile 9 found to restore
    RMAN-06023: no backup or copy of datafile 8 found to restore
    RMAN-06023: no backup or copy of datafile 7 found to restore
    RMAN-06023: no backup or copy of datafile 6 found to restore
    RMAN-06023: no backup or copy of datafile 5 found to restore
    RMAN-06023: no backup or copy of datafile 4 found to restore
    RMAN-06023: no backup or copy of datafile 3 found to restore
    RMAN-06023: no backup or copy of datafile 2 found to restore
    RMAN-06023: no backup or copy of datafile 1 found to restore
    RMAN>
    Recovery Manager complete.
    ==========================================================================
    But the Backuset is OK, look:
    ==========================================================================
    RMAN> list backupset of database;
    using target database controlfile instead of recovery catalog
    List of Backup Sets
    ===================
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    264 Full 24G DISK 01:33:39 07-AUG-06
    BP Key: 264 Status: AVAILABLE Compressed: NO Tag: TAG20060807T103544
    Piece Name: /u03/admin/integra/flash_recovery_area/INTEGRA/backupset/2006_08_07/o1_mf_nnndf_TAG20060807T103544_2fg5w27d_.bkp
    List of Datafiles in backup set 264
    File LV Type Ckp SCN Ckp Time Name
    1 Full 213646558 07-AUG-06 /u03/integra/system01.dbf
    2 Full 213646558 07-AUG-06 /u03/integra/undotbs01.dbf
    3 Full 213646558 07-AUG-06 /u03/integra/sysaux01.dbf
    4 Full 213646558 07-AUG-06 /u03/integra/users01.dbf
    5 Full 213646558 07-AUG-06 /u03/integra/integracao.dbf
    6 Full 213646558 07-AUG-06 /u03/integra/legis_data.dbf
    7 Full 213646558 07-AUG-06 /u03/integra/NOVA_INTERNET
    8 Full 213646558 07-AUG-06 /u03/integra/legis_text.dbf
    9 Full 213646558 07-AUG-06 /u03/integra/log01.dbf
    10 Full 213646558 07-AUG-06 /u03/integra/tecwin_web.dbf
    =========================================================================
    I create the dir "/u03/admin/integra/flash_recovery_area" in the AUXILIARY database
    and mount - with NFS - where the backupset were in the PRODUCTION database.
    1 - The share it´s work fine.
    2 - The RMAN backup it´s work fine.
    3 - The restore to another database "IN DIFERENT MACHINE" dont´s work.
    I am certain of that the file of backupset exists.
    Somebody can help me? Why this script don´t work?
    PS.: Sorry my English. I´m practising
    Thanks
    Message was edited by:
    user523458
    Message was edited by:
    user523458
    Message was edited by:
    user523458

  • Can't restore backup form time machine.

    Guys, i've just changed my HDD for a SSD on my Macbook Pro 13" (Late 2011) and i've already installed OS X Mountain Lion on the new SSD. I used Time Machine to keep daily backups from my HDD.But, when i turn the Macbook on, holding Command + R, i can't find any backups so i can leave my SSD exactly how my HDD was.
    Ask me if you didn't understand something and i'll try to explain better, because i'm from Brazil.
    Really need some help, like for yesterday!

    Most likely, some files were inadvertently excluded from your backups, and as a result you won't be able to restore your data in Setup Assistant or Migration Assistant.
    Starting from a fresh installation of OS X, set up a new administrator account and log in. Follow the instructions on this page to associate your existing backups with the new installation.
    You should now be able to enter Time Machine and restore your user data from a snapshot.* I suggest you do this in two stages. Quit all applications except the Finder before you begin.
    Restore all the visible items at the top level of your home folder.
    Hold down the option key and select Go ▹ Library from the Finder menu bar. Enter Time Machine and restore all items in the Library folder. Log out and log back in as soon as the restore is complete.
    Any other invisible folders or files at the top level of your home folder that you want to preserve will have to be restored separately. For most users, that isn't necessary.
    You'll have to reinstall all third-party applications from scratch, or restore them from another kind of backup, if you have one.
    *If you don't see any snapshots in Time Machine, exit the time-travel view and then hold down the option key while selecting
    Browse Other Backup Disks...
    from the Time Machine menu, which has an icon that looks like a clock running backwards. Select the backups of your computer by its previous name. If you don't have the Time Machine menu, open the Time Machine preference pane in System Preferences and check the box marked
    Show Time Machine in menu bar

  • Restoring backup from Time Machine fails.... MacBook stalls at restart

    Aften having problems with my MacBook, I've checked and repaired diskpermissions, checked and repaired the disk, formatted the disk, reinstalled Snow, updated it to the newest version, upgrated to Lion and from that point restored from a Time Machine backup.
    The restoring goes Well, but When it is done, aften several hours, the Machine restarts. During restart, it comes to the Apple Logo with the dotted wheel underneath and stays there....... For hours......
    I've even tried with an older backup..... Same thing.....
    What can be wrong?
    / Martin

    You might try booting into "verbose mode" to see if that shows any messages that might explain the problem.
    By the way, your problem isn't really one involving a Time Capsule (where you posted your question), but one involving Time Machine, which would normally be covered in one of the sections for versions of OS X.

  • After Restoring your computer to Factory Settings How do you restore backups from Time Machine? Help!

    I have Restored my Computer to Factory Settings and Now I'm trying to restore the backups from my Time Matchine. I've already done the Migration Assistant things. But I dont know where to find my details or where my files are.
    Everything is in different spots then where it was when i started this process.
    HELP

    Restoring from Time Machine and using Migration Assistant are either/or options... either restore from a Time Machine backup or restore by using Migration Assitant. You don't write which version of OS X you're running, so it's kind of difficult to tell you where to begin (or start over).
    If you're running Lion or Mountain Lion, I would boot into the Recovery partition (holding down the Command and R keys whilst booting) and use Disk Utility to erase your boot volume. Then, with your TM drive connected, restore your latest backup to your newly formatted volume. You can do the same by using the installation disc that has Snow Leopard on it, just with a few extra steps.
    See http://www.pondini.org/TM/14.html.
    Good luck,
    Clinton

  • How do I copy a TM backup to an external HDD with an existing TM backup (for another machine)?

    Hi,
    My question relates to the use of Time Machine for two different Macs ... I have two Macs: a MacBook Pro (ML) and an iMac (SL). I use Time Machine for both.
    Unfortunately, the external HDD (A) drive I use for the backup of my MacBook Pro is on the way out. I am now in a situation where I need to copy this Time Machine backup to another external HDD (B) which I use for the backup of my iMac.
    I have decided that I would like to use external HDD B for all future backups of both machines from now on. It is a 2Tb LaCie drive with one partition. Therefore, I would like to copy the Time Machine backup data from external HDD A to external HDD B. Since both TM files/directories have identical names, I am looking for some advice of how to do this without 'deactivating' any of the backups or corrupting them, or screwing with permissions.
    In case this is known to be problemmatic, would it be 'better practice' to partition the external 2Tb HDD drive into two partitions, then just use one partition for each backup? Is there an advantage/disadvantage to partitioning the drive? Will this approach make it 'less confusing for Time Machine' and reduce potential problems?
    Any advice would be great!
    Thanks,
    Mark.

    Don't bother trying to copy a TM backup file. Just connect the other good drive to your MBP and create a new full TM backup on that drive. I do suggest you create a separate partition on that good drive for each Mac you will be backing up to it.

  • Backup from another machine

    Hi everyone, I tried to find answer to my questions in this forum but I did not succeed yet.
    I had a iMac secure with FileVault. As I was expecting to exchange it with a macBook air, I did a backup with Time machine on an external hard drive. Now on my new macBook Air, I used Migration from that backup but I only selected my application folder and document folder because my mba only have 128gig of hd. I was expecting to use this external hard drive to keep my photos and my music. But now, when I look in the backup folder (with finder) on this external hard drive, my music and my photos are locked. I tried to unlock them by changing the privileges but I can't. I do use the same user name as on my older machine.
    Anyone have any idea?
    Thanks!

    No one?

  • "Safari quit unexpectedly" after restoring backup from Time Machine

    I updated to the new Yosemite this morning, only to find that after, I couldn't get online, couldn't get emails, nothing.  After searching online found out that a lot of people had the same problems, so I restored an old update through Time Machine. Everything's back to normal now and working again, except Safari.  Everytime I try to open it, I get an error message and it shuts down immediately.  Any idea what's causing the problem or how I can fix it?  Here's the error:
    Process:    
    Safari [321]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    6.2 (8537.85.10.17.1)
    Build Info: 
    WebBrowser-7537085010017001~3
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [172]
    User ID:    
    501
    Date/Time:  
    2014-11-25 21:05:38.028 -0700
    OS Version: 
    Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Interval Since Last Report:     
    2886 sec
    Crashes Since Last Report:      
    1
    Per-App Interval Since Last Report:  3 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                 
    8E44AB2B-C2E1-C3AF-6BD5-A9B314147811
    Crashed Thread:  10
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000b4a9bc
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0xb4a9bc:
    -->
    __TEXT            
    000000010e79a000-000000010e79b000 [
    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Single Web Process
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.Foundation    
    0x0000000110d62bf2 _qfqp2parse + 657
    1   com.apple.Foundation    
    0x0000000110d62608 _qfqp2_performParsing + 138
    2   com.apple.Foundation    
    0x0000000110d6f765 +[NSPredicate predicateWithFormat:argumentArray:] + 46
    3   com.apple.Safari.framework  
    0x000000010e9f7514 Safari::SearchProvidersController::evaluatePredicate(Safari::CF::String const&) + 66
    4   com.apple.Safari.framework  
    0x000000010e9f651a Safari::addProvider(***::PassRefPtr<Safari::SearchProvider>, ***::Vector<***::RefPtr<Safari::SearchProvider>, 0ul, ***::CrashOnOverflow>&) + 183
    5   com.apple.Safari.framework  
    0x000000010e9f67d2 Safari::SearchProvidersController::parseProvidersFromManifest(Safari::CF::Dicti onary const&, ***::Vector<***::RefPtr<Safari::SearchProvider>, 0ul, ***::CrashOnOverflow>&, Safari::SearchProvider const*&, int&) + 336
    6   com.apple.Safari.framework  
    0x000000010e9f2bdc Safari::SearchProvidersController::loadAllProviders(Safari::CF::URL const&) + 120
    7   com.apple.Safari.framework  
    0x000000010e9f2abd Safari::SearchProvidersController::SearchProvidersController() + 123
    8   com.apple.Safari.framework  
    0x000000010e9f2a0e Safari::SearchProvidersController::shared() + 46
    9   com.apple.Safari.framework  
    0x000000010e87b9ce -[BrowserWindowControllerMac _defaultSearchProviderDisplayName] + 11
    10  com.apple.Safari.framework  
    0x000000010e86d891 -[BrowserWindowControllerMac unifiedFieldPlaceholderString] + 65
    11  com.apple.Safari.framework  
    0x000000010e87ba57 -[BrowserWindowControllerMac _updateSearchFieldProviderText] + 61
    12  com.apple.Safari.framework  
    0x000000010e87c190 -[BrowserWindowControllerMac _setUpLocationBar] + 203
    13  com.apple.Safari.framework  
    0x000000010e86b7b0 -[BrowserWindowControllerMac windowDidLoad] + 907
    14  com.apple.AppKit        
    0x0000000111f16f82 -[NSWindowController _windowDidLoad] + 448
    15  com.apple.Safari.framework  
    0x000000010ea939ca -[WindowController _windowDidLoad] + 43
    16  com.apple.AppKit        
    0x0000000111ee82da -[NSWindowController window] + 114
    17  com.apple.Safari.framework  
    0x000000010e86be3a -[BrowserWindowControllerMac showWindow:] + 50
    18  com.apple.AppKit        
    0x0000000111c731b6 -[NSDocument showWindows] + 103
    19  com.apple.Safari.framework  
    0x000000010e839c78 -[BrowserDocument showWindows] + 39
    20  com.apple.AppKit        
    0x0000000111c7136f -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 461
    21  com.apple.AppKit        
    0x0000000111c7115e -[NSDocumentController newDocument:] + 39
    22  com.apple.Safari.framework  
    0x000000010e9c3433 -[WindowReopener reopenWithArrayOfWindowControllerNames:] + 120
    23  com.apple.Safari.framework  
    0x000000010e9c35f4 -[WindowReopener init] + 117
    24  com.apple.Safari.framework  
    0x000000010e9c3703 +[WindowReopener reopenWindows] + 43
    25  com.apple.Safari.framework  
    0x000000010e7b2f47 -[AppController _openUntitledFileWhileLaunching:] + 157
    26  com.apple.Safari.framework  
    0x000000010e7afe88 -[AppController applicationOpenUntitledFile:] + 22
    27  com.apple.AppKit        
    0x0000000111dc9c34 -[NSApplication _doOpenUntitled] + 482
    28  com.apple.AppKit        
    0x0000000111dc96cf __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke_0 + 233
    29  com.apple.AppKit        
    0x000000011210b6c1 __78-[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:]_block_invoke_01437 + 143
    30  com.apple.AppKit        
    0x0000000111dc917b -[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:] + 760
    31  com.apple.AppKit        
    0x0000000111dc766e -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 298
    32  com.apple.AppKit        
    0x0000000111dc7445 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 553
    33  com.apple.AppKit        
    0x0000000111dc704c -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 351
    34  com.apple.Foundation    
    0x0000000110d0805b -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 308
    35  com.apple.Foundation    
    0x0000000110d07ebd _NSAppleEventManagerGenericHandler + 106
    36  com.apple.AE            
    0x0000000114d47078 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 307
    37  com.apple.AE            
    0x0000000114d46ed9 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 37
    38  com.apple.AE            
    0x0000000114d46d99 aeProcessAppleEvent + 318
    39  com.apple.HIToolbox     
    0x000000011381b709 AEProcessAppleEvent + 100
    40  com.apple.AppKit        
    0x0000000111dc3836 _DPSNextEvent + 1456
    41  com.apple.AppKit        
    0x0000000111dc2df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    42  com.apple.Safari.framework  
    0x000000010e8022f0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    43  com.apple.AppKit        
    0x0000000111dba1a3 -[NSApplication run] + 517
    44  com.apple.AppKit        
    0x0000000111d5ebd6 NSApplicationMain + 869
    45  com.apple.Safari.framework  
    0x000000010e9c6bdd SafariMain + 267
    46  libdyld.dylib           
    0x00000001142a07e1 start + 1
    Thread 1:
    0   libsystem_kernel.dylib  
    0x000000011447c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib       
    0x000000011430cf1c _pthread_workq_return + 25
    2   libsystem_c.dylib       
    0x000000011430cce3 _pthread_wqthread + 412
    3   libsystem_c.dylib       
    0x00000001142f7191 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x000000011447cd16 kevent + 10
    1   libdispatch.dylib       
    0x0000000114268dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib       
    0x00000001142689ee _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib  
    0x000000011447c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib       
    0x000000011430cf1c _pthread_workq_return + 25
    2   libsystem_c.dylib       
    0x000000011430cce3 _pthread_wqthread + 412
    3   libsystem_c.dylib       
    0x00000001142f7191 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0   libsystem_kernel.dylib  
    0x000000011447c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib       
    0x000000011430efb9 _pthread_cond_wait + 869
    2   com.apple.WebCore       
    0x00000001182452db WebCore::IconDatabase::syncThreadMainLoop() + 411
    3   com.apple.WebCore       
    0x0000000118242c87 WebCore::IconDatabase::iconDatabaseSyncThread() + 295
    4   com.apple.JavaScriptCore
    0x000000010f34633f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib       
    0x000000011430a772 _pthread_start + 327
    6   libsystem_c.dylib       
    0x00000001142f71a1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib  
    0x000000011447c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib       
    0x000000011430cf1c _pthread_workq_return + 25
    2   libsystem_c.dylib       
    0x000000011430cce3 _pthread_wqthread + 412
    3   libsystem_c.dylib       
    0x00000001142f7191 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib  
    0x000000011447c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib       
    0x000000011430cf1c _pthread_workq_return + 25
    2   libsystem_c.dylib       
    0x000000011430cce3 _pthread_wqthread + 412
    3   libsystem_c.dylib       
    0x00000001142f7191 start_wqthread + 13
    Thread 7:: Dispatch queue: com.apple.ubkvstore
    0   libsystem_kernel.dylib  
    0x000000011447a6c2 semaphore_wait_trap + 10
    1   libdispatch.dylib       
    0x0000000114269486 _dispatch_semaphore_wait_slow + 241
    2   libxpc.dylib            
    0x0000000114543e1f xpc_connection_send_message_with_reply_sync + 127
    3   com.apple.SyncedDefaults
    0x000000012207bfcd -[SYDClient _sendMessageWithReplySync:] + 188
    4   com.apple.SyncedDefaults
    0x000000012207c7aa -[SYDClient sendMessageWithName:userInfo:] + 52
    5   libdispatch.dylib       
    0x0000000114269f01 _dispatch_call_block_and_release + 15
    6   libdispatch.dylib       
    0x00000001142660b6 _dispatch_client_callout + 8
    7   libdispatch.dylib       
    0x000000011426747f _dispatch_queue_drain + 235
    8   libdispatch.dylib       
    0x00000001142672f1 _dispatch_queue_invoke + 52
    9   libdispatch.dylib       
    0x00000001142671c3 _dispatch_worker_thread2 + 249
    10  libsystem_c.dylib       
    0x000000011430ccdb _pthread_wqthread + 404
    11  libsystem_c.dylib       
    0x00000001142f7191 start_wqthread + 13
    Thread 8:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib  
    0x000000011447a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x0000000114479c42 mach_msg + 70
    2   com.apple.QuartzCore    
    0x000000010ff1017b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore    
    0x000000010ff94dc6 thread_fun + 25
    4   libsystem_c.dylib       
    0x000000011430a772 _pthread_start + 327
    5   libsystem_c.dylib       
    0x00000001142f71a1 thread_start + 13
    Thread 9:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x000000011447a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x0000000114479c42 mach_msg + 70
    2   com.apple.CoreFoundation
    0x00000001117cf233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation
    0x00000001117d4916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation
    0x00000001117d40e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation    
    0x0000000110cdd526 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation    
    0x0000000110d3b532 __NSThread__main__ + 1345
    7   libsystem_c.dylib       
    0x000000011430a772 _pthread_start + 327
    8   libsystem_c.dylib       
    0x00000001142f71a1 thread_start + 13
    Thread 10 Crashed:
    0   com.apple.AppKit        
    0x0000000111ccc179 +[NSCarbonMenuImpl _globalCarbonBeginOrEndTrackingEvent:handlerCallRef:] + 562
    Thread 10 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000b4a9bc  rbx: 0x0000000000000054  rcx: 0x0000000112fb6000  rdx: 0x0000000000000054
      rdi: 0x0000000112fb6000  rsi: 0x0000000111aed000  rbp: 0x0000000112fb7ff0  rsp: 0x0000000112fb7f68
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000111da04b0  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000111aed000
      rip: 0x0000000111ccc179  rfl: 0x0000000000010203  cr2: 0x0000000000b4a9bc
    Logical CPU: 3
    Binary Images:
    0x10e79a000 -   
    0x10e79afff  com.apple.Safari (6.2 - 8537.85.10.17.1) <E64F560A-C59E-35BF-9481-127A52D19951> /Applications/Safari.app/Contents/MacOS/Safari
    0x10e7a6000 -   
    0x10ed84ff7  com.apple.Safari.framework (8537 - 8537.85.10.17.1) <03D96220-109E-3CEC-8E38-E97669EB2746> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
    0x10f159000 -   
    0x10f15aff7  libSystem.B.dylib (169.3) <92475A81-385C-32B9-9D6D-38E4BAC90996> /usr/lib/libSystem.B.dylib
    0x10f164000 -   
    0x10f17afff  com.apple.Accounts (211.2 - 211.2) <AC7386F8-FCAB-35CD-AB39-0ADD254F35CD> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x10f192000 -   
    0x10f193fff  libquit.dylib (130.1) <6012FB61-1D85-311F-A557-690C7D4C2A66> /usr/lib/libquit.dylib
    0x10f19f000 -   
    0x10f1cbfff  com.apple.framework.Apple80211 (8.5 - 850.252) <73506CA1-CF76-3A98-A6F2-3DDAC10CB67A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x10f1e3000 -   
    0x10f1e3fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x10f1eb000 -   
    0x10f1ebfff  com.apple.Cocoa (6.7 - 19) <3CFC90D2-2BE9-3E5C-BFDB-5E161A2C2B29> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x10f1f0000 -   
    0x10f24cfff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x10f284000 -   
    0x10f290fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x10f29f000 -   
    0x10f30dff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x10f33c000 -   
    0x10f861ff7  com.apple.JavaScriptCore (8600 - 8600.1.17) <1805970E-7107-3539-9DE7-7CC746965EA9> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
    0x10f9d4000 -   
    0x10fbd4fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
    0x10fc7a000 -   
    0x10fd77fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
    0x10fd8f000 -   
    0x10fdc7fff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
    0x10fdd8000 -   
    0x10fde7ff7  libxar.1.dylib (105) <B6A7C8AA-3E20-3A1D-A7BA-4FD0052FA508> /usr/lib/libxar.1.dylib
    0x10fdf2000 -   
    0x10fe01fff  com.apple.opengl (1.8.10 - 1.8.10) <AD49CF56-B7C1-3598-8610-58532FC41345> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x10fe0a000 -   
    0x10fe31ff7  com.apple.PerformanceAnalysis (1.16 - 16) <1BDA3662-18B7-3F38-94E5-9ACD477A7682> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x10fe53000 -   
    0x110001fff  com.apple.QuartzCore (1.8 - 304.4) <84F0B40E-DF91-36F2-9F2E-3922234206A3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x1100b9000 -   
    0x11038afff  com.apple.security (7.0 - 55719.16.5) <0EEE5DDE-77FB-374A-B1E0-6B19CB44E8EC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x1104c1000 -   
    0x110540ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x110580000 -   
    0x1105b4fff  com.apple.securityinterface (6.0 - 55024.4) <FCF87CA0-CDC1-3F7C-AADA-2AC3FE4E97BD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x1105e1000 -   
    0x1105e2ff7  com.apple.SafariServices.framework (8537 - 8537.85.10.17.1) <28F72740-74D6-3D6F-BD96-832E05B68796> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
    0x1105e7000 -   
    0x110638ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x11066b000 -   
    0x1109c2fff  com.apple.WebKit (8600 - 8600.1.17) <39C9C71F-FE64-3F30-ABBB-6824326BCDC5> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
    0x110c97000 -   
    0x110c97fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <89F59707-91A2-387B-9415-ABD5D92D1776> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x110c9c000 -   
    0x110c9cfff  com.apple.WebKit2 (8600 - 8600.1.17) <BCDDA15B-0F2A-3EB7-9738-3E33F7AA7DC6> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
    0x110ca1000 -   
    0x110ca1fff  com.apple.AOSMigrate (1.0 - 1) <9E7A92DC-649D-3908-BB36-B7F445261F14> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x110ca5000 -   
    0x111004fff  com.apple.Foundation (6.8 - 945.19) <C98E55BA-553B-314B-B056-849FFB20C220> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x111229000 -   
    0x11134192f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
    0x111363000 -   
    0x1113cbff7  libc++.1.dylib (65.1) <E5A0C88E-0837-3015-A987-F8C5A0D35DD6> /usr/lib/libc++.1.dylib
    0x111424000 -   
    0x111424fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x111428000 -   
    0x1114faff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x11155a000 -   
    0x11155bfff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
    0x111560000 -   
    0x1116d5fff  com.apple.CFNetwork (596.6.3 - 596.6.3) <883CE0E5-17B6-3227-B7B1-0CCC16D2739E> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x111798000 -   
    0x111798fff  com.apple.ApplicationServices (45 - 45) <5302CC85-D534-3FE5-9E56-CA16762177F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x11179f000 -   
    0x111989ff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x111aee000 -   
    0x111c07fff  com.apple.ImageIO.framework (3.2.2 - 852) <1D023BCE-1FA2-3743-B449-7489BC0C5C43> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x111c65000 -   
    0x111c65fff  com.apple.CoreServices (57 - 57) <45F1466A-8264-3BB7-B0EC-E5E5BFBED143> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x111c6e000 -   
    0x11289bfff  com.apple.AppKit (6.8 - 1187.40) <F12CF463-6F88-32ED-9EBA-0FA2AD3CF576> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x112f93000 -   
    0x112fa5ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    0x112faf000 -   
    0x112fb1fff  com.apple.OAuth (18.1 - 18.1) <8CC24408-C139-300E-9D11-CB064D80FF98> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x112fbb000 -   
    0x112fc5ff7  com.apple.xpcobjects (103 - 103) <03968AE7-D7D9-3B12-A2A5-045957DC3526> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x112fd4000 -   
    0x113017ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x113050000 -   
    0x1131a2fff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x113231000 -   
    0x113231ffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x113237000 -   
    0x11346cff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x11356f000 -   
    0x1135dcff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x11361b000 -   
    0x11373bfff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x1137b1000 -   
    0x113ae1fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x113c3b000 -   
    0x113c45fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <5A4B532E-3428-3F0A-8032-B0AFFF72CA3D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x113c53000 -   
    0x113c9fff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
    0x113cb6000 -   
    0x113db3ff7  libxml2.2.dylib (22.3) <7FD09F53-83DA-3ECD-8DD9-870E1A2F0427> /usr/lib/libxml2.2.dylib
    0x113dee000 -   
    0x113eb3ff7  com.apple.coreui (2.0 - 181.1) <7C4196D5-79E8-3557-963B-71F494DC9B04> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x113f2a000 -   
    0x113f8dfff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x113fb8000 -   
    0x113fbefff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x113fc8000 -   
    0x113fc9fff  libodfde.dylib (18) <46A5538E-3719-3BE8-AD13-537930B4082C> /usr/lib/libodfde.dylib
    0x113fcf000 -   
    0x113fd0fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
    0x113fdb000 -   
    0x113ff1fff  com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x114002000 -   
    0x114019fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x114024000 -   
    0x1140fefff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x114183000 -   
    0x1141a4ff7  libCRFSuite.dylib (33) <B49DA255-A4D9-33AF-95AB-B319570CDF7B> /usr/lib/libCRFSuite.dylib
    0x1141b5000 -   
    0x1141b9ff7  com.apple.TCC (1.0 - 1) <76A86876-2280-3849-8478-450E1A8C0E01> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x1141c1000 -   
    0x1141e6ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
    0x114219000 -   
    0x11421efff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
    0x114226000 -   
    0x114234fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
    0x114244000 -   
    0x114249fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
    0x114252000 -   
    0x114259ff7  libcopyfile.dylib (89.0.70) <30824A67-6743-3D99-8DC3-92578FA9D7CB> /usr/lib/system/libcopyfile.dylib
    0x114264000 -   
    0x114279ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    0x114295000 -   
    0x114296ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
    0x11429e000 -   
    0x1142a1ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x1142a8000 -   
    0x1142a8fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
    0x1142b1000 -   
    0x1142b9fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
    0x1142c8000 -   
    0x1142cefff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
    0x1142d5000 -   
    0x1142d7fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
    0x1142e0000 -   
    0x1142e1ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
    0x1142e9000 -   
    0x1142eafff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
    0x1142f6000 -   
    0x1143c2ff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
    0x114408000 -   
    0x114410ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
    0x114418000 -   
    0x11444eff7  libsystem_info.dylib (406.17) <C9BA1024-043C-3BD5-908F-AF709E05DEE4> /usr/lib/system/libsystem_info.dylib
    0x11446a000 -   
    0x114485ff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
    0x11449c000 -   
    0x1144caff7  libsystem_m.dylib (3022.6) <11B6081D-6212-3EAB-9975-BED6234BD6A5> /usr/lib/system/libsystem_m.dylib
    0x1144dc000 -   
    0x1144eaff7  libsystem_network.dylib (77.10) <2AAA67A1-525E-38F0-8028-1D2B64716611> /usr/lib/system/libsystem_network.dylib
    0x1144f7000 -   
    0x114502fff  libsystem_notify.dylib (98.6) <1E490CB2-9311-3B36-8372-37D3FB0FD818> /usr/lib/system/libsystem_notify.dylib
    0x11450d000 -   
    0x11450eff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
    0x114517000 -   
    0x114519ff7  libunc.dylib (25) <2FDC94A7-3039-3680-85F3-2164E63B464D> /usr/lib/system/libunc.dylib
    0x114526000 -   
    0x11452cff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
    0x114538000 -   
    0x11455aff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
    0x114577000 -   
    0x1145c6ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
    0x1145d7000 -   
    0x114640fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
    0x1146a5000 -   
    0x1146b8ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
    0x1146c5000 -   
    0x1146c9fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
    0x1146cf000 -   
    0x1146cffff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
    0x1146d8000 -   
    0x1146e5fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
    0x1146f0000 -   
    0x114a07ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x114a88000 -   
    0x114b09fff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x114b63000 -   
    0x114c09ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x114c69000 -   
    0x114cf6ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <54A8069C-E497-3B07-BEA7-D3BC9DB5B649> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x114d3e000 -   
    0x114d9dfff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x114dcd000 -   
    0x114e7fff7  com.apple.LaunchServices (539.11 - 539.11) <A86F44E5-F285-3029-A5D1-00CD3C231A08> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x114ed3000 -   
    0x114f04ff7  com.apple.DictionaryServices (1.2 - 184.4) <2EC80C71-263E-3D63-B461-6351C876C50D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x114f27000 -   
    0x114f2efff  com.apple.NetFS (5.0 - 4.0) <195D8EC9-72BB-3E04-A64D-E1A89B4850C1> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x114f37000 -   
    0x114f45ff7  libkxld.dylib (2050.48.12) <B8F7ED1F-CF84-3777-9183-0A1C513DF81F> /usr/lib/system/libkxld.dylib
    0x114f4e000 -   
    0x114f5bff7  com.apple.NetAuth (4.0 - 4.0) <A4A21A2F-B26A-3DC9-95E4-DAFA43A4A2C3> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x114f69000 -   
    0x114f80fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x114fa2000 -   
    0x114fcdfff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
    0x114fe0000 -   
    0x115007fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x115023000 -   
    0x1150c1ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x1150f8000 -   
    0x115a88a07  com.apple.CoreGraphics (1.600.0 - 340) <4E39B001-BD9B-3A60-A495-C7F908F52C44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x115b91000 -   
    0x115c11ff7  com.apple.ApplicationServices.ATS (341.2 - 341.2) <0EF1BB57-71AA-304D-A455-55CBE0A4983A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x115c3e000 -   
    0x115cfbff7  com.apple.ColorSync (4.8.0 - 4.8.0) <73BE495D-8985-3B88-A7D0-23DF0CB50304> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x115d43000 -   
    0x115d99fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x115dd2000 -   
    0x115de5ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <023D909C-3AFA-3438-88EB-05D0BDA5AFFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x115df4000 -   
    0x115e4efff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x115e81000 -   
    0x115ec0ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x115eda000 -   
    0x115eeefff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x115f03000 -   
    0x115f07fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x115f17000 -   
    0x115f17fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x115f1d000 -   
    0x116029fff  libFontParser.dylib (84.7) <C3D1121B-B066-34C3-9D31-ADDF387C0B20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x116091000 -   
    0x1160e0ff7  libFontRegistry.dylib (100) <F7EC0287-58E4-3ABE-A45E-B105A68EA76E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x11610e000 -   
    0x1162a9fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x1162cf000 -   
    0x1162cffff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <F565B686-24E2-39F2-ACC3-C5E4084476BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x1162d8000 -   
    0x116340fff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x116350000 -   
    0x1163eafff  libvMisc.dylib (380.10) <A7F12764-A94C-36EB-88E0-F826F5AF55B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x1163f6000 -   
    0x1167edfff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x116852000 -   
    0x1169d8fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x116a07000 -   
    0x116a2ffff  libJPEG.dylib (852) <4E159C31-1B41-3EFF-89EC-3F7BC9053F2C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x116a3a000 -   
    0x116a8fff7  libTIFF.dylib (852) <0CA1662F-EB05-34DE-B9BA-0A03EC59B846> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x116aa1000 -   
    0x116ac1fff  libPng.dylib (852) <CCBFA9A9-33C0-3189-AFE0-A77E831EEBA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x116acd000 -   
    0x116ad1fff  libGIF.dylib (852) <326C48F1-C892-3AF9-94BC-32768EFF6731> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x116ad7000 -   
    0x116bd9fff  libJP2.dylib (852) <01E502E9-7FD3-3A5D-8EA4-2DC8C56E0497> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x116c08000 -   
    0x116c0bfff  libRadiance.dylib (852) <139962CD-21E2-3D31-9F47-D5F2D6C2C2BC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x116c13000 -   
    0x116c57fff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
    0x116c70000 -   
    0x116c92ff7  com.apple.Kerberos (2.0 - 1) <416543F5-E7AF-3269-843F-C8CDA8DD0FFA> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x116cac000 -   
    0x116ce6ff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x116d09000 -   
    0x116d28ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
    0x116d35000 -   
    0x116e2afff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
    0x116e3e000 -   
    0x116ec0ff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x116eef000 -   
    0x116ef1fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x116efa000 -   
    0x116efffff  com.apple.OpenDirectory (10.8 - 151.10) <1F47EC96-7403-3690-8D8D-C31D3B6FDA0A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x116f0f000 -   
    0x116f1afff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x116f26000 -   
    0x116f69ff7  com.apple.bom (12.0 - 192) <0EFE0F2D-B6DE-3D1E-93C2-EED6D96F70A2> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x116f7e000 -   
    0x116fa8ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x116fca000 -   
    0x11726eff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x117355000 -   
    0x1173acff7  com.apple.ScalableUserInterface (1.0 - 1) <93C14595-6172-37E9-88F2-CBC80A1C54D0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x1173d8000 -   
    0x117422ff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x117434000 -   
    0x11743bfff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x117441000 -   
    0x117458fff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x117473000 -   
    0x1174b0fef  libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x1174b8000 -   
    0x1174bafff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x1174c6000 -   
    0x1174cafff  libCoreVMClient.dylib (32.5) <DB009CD4-BB0E-3331-BBB4-A118781D193F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x1174d6000 -   
    0x117530ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x117546000 -   
    0x117963fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x117b78000 -   
    0x117b85fff  com.apple.AppleFSCompression (49 - 1.0) <E616053D-D3C2-3600-B8DF-A5E0D9665634> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x117b90000 -   
    0x117bb1fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x117bc6000 -   
    0x117bd1ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x117bdd000 -   
    0x117bfcff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x117c08000 -   
    0x117c08fff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x117c0c000 -   
    0x117c15fff  com.apple.CommerceCore (1.0 - 26.3) <870C7810-0D27-3AC5-95A0-3224BB4890C0> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x117c27000 -   
    0x117cc2fff  com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x117cdf000 -   
    0x117d3bff7  com.apple.Symbolication (1.3 - 93) <D3AAB36A-D5EB-3044-BE9D-0B77E64C00FC> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x117d80000 -   
    0x117db6fff  com.apple.DebugSymbols (98 - 98) <7059F71D-9A82-3D32-99BB-E043DEDA6174> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x117dd7000 -   
    0x117e23fff  com.apple.framework.CoreWLAN (3.4 - 340.18) <BCFA14A9-728C-371A-936E-2EDF2EC2F40F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x117e4c000 -   
    0x117e9bfff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x117ed6000 -   
    0x117edaff7  com.apple.CommonPanels (1.2.5 - 94) <5F81D593-4B87-3DCC-B934-625D436B4CB1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x117ee1000 -   
    0x117ee4fff  com.apple.help (1.3.2 - 42) <418A9A41-BCB4-32A2-97ED-3A388F69CA9D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x117ef1000 -   
    0x117f06fff  com.apple.ImageCapture (8.0 - 8.0) <71B24609-DEE9-3927-9C82-62E72270299C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x117f22000 -   
    0x117f3fff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x117f55000 -   
    0x117f57ff7  com.apple.print.framework.Print (8.0 - 258)

    You may have installed the "Genieo" or "InstallMac" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the linked support article, you may also need to remove this file in the same way:
    ~/Library/LaunchAgents/com.genieo.completer.ltvbit.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those you find, remove them as well.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    Make sure you don't repeat the mistake that led you to install the malware. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.

  • Restoring backup to another user on another computer

    The bad news, my trusty PowerBookG4 was stolen today. It had many years of work and projects for a PhD that I'm working on.
    The good news, I've got time capsule and used it.
    I also have a Mac mini that the family shares. We all have our own user accounts on it but I rarely used it since I had the laptop. I want to restore my backup from my G4 backup to this Mac mini, but only on MY account and not mess with the other accounts. Can this be done?
    When Time machine does the backup, does it back up the whole computer or just the logged in account?
    They don't have the same applications on each computer so will those be replaced too?
    I didn't have the laptop set to require a login at startup. It was at home so I didn't think I needed to but they broke in and ransacked the place. I guess they will have access to all the emails that were local but I've changed the passwords on all accounts so that they won't get any more.
    Thanks for any help and advice.

    Ryner99 wrote:
    The bad news, my trusty PowerBookG4 was stolen today. It had many years of work and projects for a PhD that I'm working on.
    The good news, I've got time capsule and used it.
    I also have a Mac mini that the family shares. We all have our own user accounts on it but I rarely used it since I had the laptop. I want to restore my backup from my G4 backup to this Mac mini, but only on MY account and not mess with the other accounts. Can this be done?
    yes. use Migration Assistant (it's in /Applications/Utilities).
    When Time machine does the backup, does it back up the whole computer or just the logged in account?
    the whole computer.
    They don't have the same applications on each computer so will those be replaced too?
    Migration Assistant will give you an option whether or not to migrate Applications. I wouldn't migrate them.
    I didn't have the laptop set to require a login at startup. It was at home so I didn't think I needed to but they broke in and ransacked the place. I guess they will have access to all the emails that were local but I've changed the passwords on all accounts so that they won't get any more.
    Thanks for any help and advice.
    Message was edited by: V.K.
    Message was edited by: V.K.

  • Trying to restore backup from another user ID to new phone and id?

    My back up did not totally transfer pictures, contacts from one user id to another. 

    Not sure what you are asking.  Are you saying you were able to restore to the iCloud backup but not all the data was restored?

  • Why can't I restore backup using Time Machine and/or Disk Utility

    Backed up my entire computer on a Buffalo Ministation as I need to install new OSX and don't want to lose any files.  Tried the handful of options listed in Support to restore and nothing is working.  Using Time Machine, the Restore button is greyed out so I can't select it.  Using Disk Utility, when adding the source image, the Open button is greyed out so I can't select it.  Please help. 

    Time Machine Troubleshooting
    Time Machine Troubleshooting Problems

  • Restore keychain from another machine

    Lost keychain when installing 10.5 on g5. Have info on iBook's keychain. Can't import it....can I???

    I downloaded the Keychain update which on it's own doesn't sort the problem that I had out as I need to get my old items back and 10.5 created an new empty keychain.
    I used to have just one keychain as 'rob' (my login name) but now I have one called login.keychain. I copied my old 'rob' keychain gave it the .keychain extension, double clicked on login.keychain, removed the login group then double clicked on rob.keychain and it read the backup version okay.
    Now I all seems to be okay and original we-site passwords work. Wat do those that have no problems have in ~/Library/Keychains ? a login.keychain or their username? as I will remove the login.keychain and restore rob.keychain if it matches what everyone else has.

Maybe you are looking for