Backup Bouncer

Backup Bouncer is a backup test suite. Is your backup identical? Find out.
Unfortunately, it might have to be ported to Linux.

If the architecture of the target machine is the same as that of the machine on which the binary file has been combined then it shouldn't be a problem otherwise you have to check for what architectures the file has been compiled. This is easily done using the lipo command. E.g. Running the command:
lipo -info /usr/local/bin/rsync
gives the output:
Non-fat file: /usr/local/bin/rsync is architecture: x86_64
while lipo -info /usr/bin/rsync gives:
Architectures in the fat file: /usr/bin/rsync are: x86_64 i386
So I cannot use either of these files on my Powerbook G4 for example.
But it isn't always that simple. As far as I know one should be able to run i386 binaries also on x86_64.
You can also compile binaries for a different architectures than your own. This is most easily done through XCode (click on the Info button and choose what architectures to build for) but can also be achieved on the command line by slightly modifying the make files. The exact change will depend on the software which you are trying to compile but at the end of the day it all boils down to passing more architectures as arguments to the compiler.

Similar Messages

  • Any experience of Thecus Backup utility

    Hi
    Does anyone have experience of Thecus' Backup utility running on OSX 10.4? The software comes bundled with their network storage but I'd like some feedback about it's reliability before trustign it with all my data.
    Thanks on advance

    mpjx wrote:
    Thanks for the reply. Good to hear that it's not a rebranded product as it eliminates all the bad stuff. I've been looking into backup software for a while and it seems a major flaw with a lot of products is either a) that they don't copy file permissions and/or file specific meta data accurately
    You can use Backup Bouncer to test how well a backup application copies a variety of things including a great deal of meta data and, definitely, standard things like permissions.
    or b) they're maintained by a single developer who seem to go walkabout on occasions (often just after an update to OS X which creates bugs).
    I have found Carbon Copy Cloner pretty good even though it is maintained by a single developer. I would prefer an open-source solution, but CCC can be used to schedule tasks which are then independent of the application itself. Although the Tiger version was a long time in coming, the earlier version (2.3) actually worked fine on Tiger except for one or two minor (and fairly easy to work around) issues. The new version makes better copies, but 2.3 did an entirely satisfactory job for most purposes. 3.1 passes the Backup Bouncer tests according to CCC's developer. I ran the tests myself to confirm this, as well.
    - cfr

  • Hard drive i/o error, spinning beachballs. PASSES Smart test, but fails two specific parameters:

    I'm on a Macbook from early 2007.
    First off, I'm fully aware that my HD is probably on its last legs and I have two gigantic TB external HDs on which there are multiple images of the entire drive, so data loss is not currently a problem for me. I've also just finished college assignments for the summer so I can afford to mess around with this a bit before taking the plunge and replacing it.
    What intrigues me is this. The machine has been extremely slow for a long time. Recently I disabled swapping and the speed rocketed, presumably due to the HD being utilized less during usage. Now the downside to disabling swapping is that when Safari Web Content gets out of control as it always eventually does, you can have a full on system hang which requires a forced shutdown through the power button. So it's very possible that the issues I'm currently experiencing are to do with the machine being improperly shut down one too many times and somehow damaging the drive itself.
    But anyway, this is the interesting aspect. Using TTP I ran a SMART test on the internal HD from one of the bootable partitions on one of the external ones, and to my astonishment, it actually PASSES the smart test. The only two parameters which fail are the following:
    Raw Read Error Rate
    Write Error Count
    An image of the SMART test results is attached:
    Now to give you an example of the kind of issues I'm having, in order to take that screenshot I used "Grab". When searching for Grab in spotlight it gave me results from the internal HD and from all the various backup drives I have attached. I opened the internal copy and one from a backup partition on another drive (neither of which currently booted from). The one from the backup bounced and opened. The one from internal bounced about 15 times, the spotlight bar hung with a spinning beacball, and I ended up force quitting because I got sick of waiting for it. That's the major symptom of the issue I'm having.
    Now here's the reason I'm posting. As I say I know this drive is about to go so there's no need to lecture me about that, I can't replace it immediately but plan to in the very near future when I have a chance. My question is this. Those two specific failed SMART results, what exactly would cause them in terms of HD problems? Bearing in mind that it passes every single other SMART parameter, am I looking at unmapped bad blocks, a physical problem with the head, a loose wire, a bad motor, or what? I'm just wondering specifically what might be wrong with the drive, out of pure curiosity more so than anything else. The fact that most parameters pass suggests to me that it's one very specific malfunction as opposed to the drive generally imploding.
    A surface scan from TTP crashed, but not before giving me about 30 "Used block is not a file" messages.
    Finally, to temporarily use this drive, what's the procedure? If it's unmapped bad blocks, to I erase and install, or do I go into the whole "zero all data, then reformat" option? I have a backup image taken last night from the external drive which I can restore to the internal any time I want, and as I say with so many backups and so few deadlines ahead of me I don't mind messing around a bit and experimenting.
    So if it IS a bad block issue, what does one do to force it to map them?

    Had a feeling. As I say it's already fully backed up and ATM I'm running the machine off a partition on the external. But as I say, I'm curious as to what's actually wrong with it - what type of damage / failure would cause those specific smart parameters to fail but not the rest? The motor, the head, the disk surface, what?

  • Can rsync filter on extended attributes?

    Hi there,
    I've been using rsync for quite a while now to perform various backups on my network, and it's been working without issue.
    What I'm wondering today is if it's possible to create an rsync job that can filter on the colour label value of a folder? Bascially I'd like a job that essentially does
    "IF this folder IS red OR orange THEN rsync it"
    I've google for a while now and while I see that the -E filter preserves extended attributes, and the filter command can filter on file/folder name attributes, I can't seem to figure out a way to filter based on extended attributes.
    Is there a way?
    ...Mike

    This is not going to be pretty.
    bash doesn't look to have a direct path into Finder's sort-of-private extended attribute information, save via some "creativity" involving xargs and xattr.
    There are also paths into the extended attributes via Perl and via [Python xattr calls|http://www.entropy.ch/blog/Developer>.
    Invoking osascript to script Finder via AppleScript can be be a path.
    I'd probably [customize some C code|http://www.mactech.com/articles/mactech/Vol.21/21.05/ACLs/index.html] to fetch the attributes, and call that from within the bash script. (These APIs are documented, if you're comfortable coding in C.)
    The "sneaky" or "clever" approach would be a customized rsync; tweak the file selection logic to do what you want.
    Have a look at [updating rsync 3.0|http://patternbuffer.wordpress.com/2008/01/04/rsync-30-looking-very-promisi ng> and (for testing) the [backup bouncer|http://www.n8gray.org/code/backup-bouncer> tool.
    But none of this is particularly pretty.

  • Using Disk Utility to back up the entire computer

    Hello,
    Could you explain to me how to back up my entire computer using the Disk Utility? Is cloning a better method and one I can update on a monthly basis?

    I haven't used Super Duper but I think the basic features of the two utilities are very similar. If you want to clone your system and/or update a clone, it probably doesn't matter which you use. As long as you follow the instructions, prepare your drive etc., you should get a good result. Both let you back up selected items; run scripts and schedule back ups. I don't know how the details vary. Super Duper offers some sand boxing features which might be of interest - if you would use these, they'll appeal; otherwise, you may not see much advantage.
    I really think you just have to look and see. Download both and take a look or visit the web pages of both and browse. Super Duper shows you all the options panels available if you register the product; CCC also has online documentation.
    I don't know how similar the underlying mechanisms are. If you are concerned about extended attributes, you can test them using Backup Bouncer. The developer of CCC gives the output he got from testing version 3.1 (I think) on his site. Not sure if SD has this information somewhere.
    - cfr

  • TS3899 My iPhone & iPad mail is locked - Press mail app, the screen starts mail, freezes and bounces back to main menu. The fault occurred whilst opening a draft email created in the 'Mail 2 Group' app. Hard reset/reset all/restore backup have no effect -

    I installed the Mail 2 Group App on my iPAD, created an email which I saved to the 'Draft' folder, with something over 300 of my contacts in the bcc. On returning to this email, again in my iPad, the screen locked in mail for a few seconds and bounced bak to the main menu. This repeated on my iPhone, on which I have been carrying out my own checks - this includes deleting the Yahoo account, hard reset (red cross and two buttons), restoring a backup and Reset All in settings.
    I'm stuck !!

    Sending a message with that many addressees may have required more RAM than was available. You can clean up RAM as follows:
    Double-press the HOME button
    Kill each app by flicking its screen image up
    When all apps except the Home screen are closed press HOME
    Wait about 2 minutes for the shutdowns to finish
    Turn the phone off (hold the SLEEP button until "slide to power off" appears, and do so)
    Wait another minute
    Turn the phone back on by holding the SLEEP button until an Apple logo appears
    Now try to send the mail again. Note that you may have an unrelated problem if this works: Many ISPs (Yahoo included) limit the number of email recipients for a single message as a way to combat spam.

  • Need to revert to my old OS on iPad. Cannot. Tried using old backup but this Trojan horse type software has corrupted my ability to do so. Tried emailing but it bounced back unacknowledged. I was sent notice that I can't get support. Christmas 2012 gift.

    New OS causing major problems. Forced to purge data and wipe iPad. Now my computer has changed. My software has changed on iPad. Tried using old backup from earlier date but Trojan horse software created by Apple has decided to stay.
    Have 16gig. IPad 2 bought December 2012 for Christmas but according to Apple I am out of Apple care and would need to pay for support. When has 1 year apple care become 9 months?
    Wasted an entire day trying to purge my older computer which is linked to this iPad. I reset my iPod and ended up deleting and wiping clean but it's not factory but the aggressive 7.2 which returned. I want my old OS back. Their software has destroyed my ability to use my iPad for the purposes I intended it for.
    I don't do social media other than Pinterest and I want the fluffy stuff gone. They need to forget trying to get me into the clouds and fix this iPad so I can use it for real world applications.
    You can only keep resetting so often. There has been hardware issues almost since purchase because it crashed several times even before updated fiasco.
    Help please.

    Ralph9430, thanks for responding but the fact that they don't support AppleCare on a unit less than a year old despite being an older version is wrong.
    It suppose to be from date of purchase so their not taking responsibility for the maiming of people's computers and their subsequent arrogance in not removing it is going to their undoing.
    We have purchased iPhones, Mac Pro, iPad, iPod touches in the nano, shuffle and touch versions in the past as well as the more solid 80gig version. I
    I am still using 3G model phone and I can no longer find apps to use with it because Apple feels I don't deserve new apps. 
    My children are using iPhone 4 and my daughter was seeking to upgrade to the newest model when it becomes available. They are social, I am not and I deserve the software I paid for. It should always be an option.
    I can tell you that this particular oversight is causing me to look elsewhere for future purchases and  I will not be recommending Apple to others as I have in the past.

  • Safari will not even load.  everytime I try to open safari it will bounce in the dock once and then the it will not respond

    safari will not even load.  every time I try to open safari it will bounce in the dock once and then the it will not respond

    Linc Davis
    I have the same problem & have just reinstalled the snow leopard OS but safari  still just bounces a couple of times in my original user account and then quits. It does work in a new user  account I set up though. What is the explanation for that ?
    Below is the report generated after re-installing the OS and  restarting the Mac for the first time. The report obviously explains what happened but it is double Dutch to me as I don't understand code at all.
    I would be fascinated to know how this problem has been caused. Is it my fault, or it it a software fault.
    Previously a console report told a completely different story. Here  is that first story from console:-
    03/07/2014 19:46:14 com.apple.launchd.peruser.501[642] catch_mach_exception_raise_state_identity(): PID: 701 thread: 0xa30f type: 0xa code: 0x1000f8044 codeCnt: 0x2 flavor: 0x1000f8054 old_state: 0x1000f805c old_stateCnt: 0x2c new_state: 0x1000f702c new_stateCnt: 0x1000f7028
    03/07/2014 19:46:14 com.apple.launchd.peruser.501[642] (com.apple.ReportCrash.Self[701]) Job appears to have crashed: Trace/BPT trap
    03/07/2014 19:46:14 com.apple.launchd.peruser.501[642] catch_mach_exception_raise_state_identity(): PID: 700 thread: 0xa207 type: 0xa code: 0x7fff5fbfdf14 codeCnt: 0x2 flavor: 0x7fff5fbfdf24 old_state: 0x7fff5fbfdf2c old_stateCnt: 0x2c new_state: 0x7fff5fbfe43c new_stateCnt: 0x7fff5fbfe438
    03/07/2014 19:46:14 com.apple.launchd.peruser.501[642] (com.apple.ReportCrash[700]) Job appears to have crashed: Trace/BPT trap
    03/07/2014 19:46:14 com.apple.launchd.peruser.501[642] catch_mach_exception_raise_state_identity(): PID: 697 thread: 0xa20b type: 0xa code: 0x7fff5fbfdf14 codeCnt: 0x2 flavor: 0x7fff5fbfdf24 old_state: 0x7fff5fbfdf2c old_stateCnt: 0x2c new_state: 0x7fff5fbfe43c new_stateCnt: 0x7fff5fbfe438
    03/07/2014 19:46:14 com.apple.launchd.peruser.501[642] ([0x0-0x6e06e].com.apple.Safari[697]) Job appears to have crashed: Segmentation fault
    Then this is the report generated after re-installing the snow leopard OS & starting up for the first time:-
    Process:         Safari [425]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.5 (6533.21.1)
    Build Info:      WebBrowser-75345910~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [368]
    Date/Time:       2014-07-04 23:18:45.788 +0100
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          295131 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  448 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      06AFA3DC-CF84-4D45-844A-54B0F6E339C8
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000018
    Crashed Thread:  3  WebCore: IconDatabase
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libxar.1.dylib                0x00007fff8447f320 xar_open + 25
    1   com.apple.Safari              0x00000001001807e7 0x100000000 + 1574887
    2   com.apple.Safari              0x00000001001808d6 0x100000000 + 1575126
    3   com.apple.Safari              0x0000000100182b35 0x100000000 + 1583925
    4   com.apple.Safari              0x000000010001493b 0x100000000 + 84283
    5   com.apple.Safari              0x0000000100014561 0x100000000 + 83297
    6   com.apple.Safari              0x0000000100012cc9 0x100000000 + 77001
    7   com.apple.Safari              0x0000000100012ad7 0x100000000 + 76503
    8   com.apple.Safari              0x000000010000b68c 0x100000000 + 46732
    9   com.apple.CoreFoundation      0x00007fff857559fd -[NSSet makeObjectsPerformSelector:] + 205
    10  com.apple.AppKit              0x00007fff8449d85b -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1445
    11  com.apple.AppKit              0x00007fff8449ba91 loadNib + 226
    12  com.apple.AppKit              0x00007fff8449b1a4 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 763
    13  com.apple.AppKit              0x00007fff8449add9 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 326
    14  com.apple.AppKit              0x00007fff8449835b NSApplicationMain + 279
    15  com.apple.Safari              0x0000000100009f1c 0x100000000 + 40732
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x00007fff85263c0a kevent + 10
    1   libSystem.B.dylib             0x00007fff85265add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib             0x00007fff852657b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib             0x00007fff852652de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib             0x00007fff85264c08 _pthread_wqthread + 353
    5   libSystem.B.dylib             0x00007fff85264aa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib             0x00007fff85264a2a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff85264e3c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff85264aa5 start_wqthread + 13
    Thread 3 Crashed:  WebCore: IconDatabase
    0   com.apple.WebCore             0x00007fff88dcb8a1 ***::HashMap<***::String, WebCore::IconRecord*, ***::StringHash, ***::HashTraits<***::String>, ***::HashTraits<WebCore::IconRecord*> >::get(***::String const&) const + 33
    1   com.apple.WebCore             0x00007fff883eda10 WebCore::IconDatabase::getOrCreateIconRecord(***::String const&) + 48
    2   com.apple.WebCore             0x00007fff883ece85 WebCore::IconDatabase::performURLImport() + 517
    3   com.apple.WebCore             0x00007fff883eb6d8 WebCore::IconDatabase::iconDatabaseSyncThread() + 616
    4   libSystem.B.dylib             0x00007fff85283fd6 _pthread_start + 331
    5   libSystem.B.dylib             0x00007fff85283e89 thread_start + 13
    Thread 3 crashed with X86 Thread State (64-bit):
      rax: 0x00000000000000ff  rbx: 0x0000000100ca3d20  rcx: 0x0000000100c1b550  rdx: 0x0000000100f80e10
      rdi: 0x0000000100c1b538  rsi: 0x0000000100f80e10  rbp: 0x0000000100f80b60  rsp: 0x0000000100f80b20
       r8: 0x0000000100f80d20   r9: 0x0000000000000000  r10: 0x0000000100cc59c4  r11: 0x0000000000000088
      r12: 0x0000000100f80e10  r13: 0x0000000100f80e00  r14: 0x0000000100c1b538  r15: 0x0000000100c64000
      rip: 0x00007fff88dcb8a1  rfl: 0x0000000000010202  cr2: 0x0000000000000018
    Binary Images:
           0x100000000 -        0x1006afff7  com.apple.Safari 5.0.5 (6533.21.1) <09261F3D-C3EC-A309-83F4-DC49CC549176> /Applications/Safari.app/Contents/MacOS/Safari
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff80040ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff80080000 -     0x7fff80141fef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff80142000 -     0x7fff80440fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff80441000 -     0x7fff80576fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff80577000 -     0x7fff805bfff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff805c0000 -     0x7fff8062afe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8062b000 -     0x7fff80668fff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8084c000 -     0x7fff80966fff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff80967000 -     0x7fff809aefff  com.apple.QuickLookFramework 2.3 (327.7) <A8169A96-FAE6-26B2-A9A9-C78BA5787146> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff809af000 -     0x7fff809c0ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff809e6000 -     0x7fff80b0eff7  com.apple.MediaToolbox 0.484.60 (484.60) <F921A5E6-E260-03B4-1458-E5814FA1924D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff80b5a000 -     0x7fff80ba6fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff80ba7000 -     0x7fff80bf0fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff80bf4000 -     0x7fff80bf8ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff80bf9000 -     0x7fff80db7fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff80db8000 -     0x7fff80db9ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff80dd0000 -     0x7fff80df0fff  com.apple.DirectoryService.Framework 3.6 (621.16) <0ED4A74A-F8FB-366D-6588-F13EA397326F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff80e19000 -     0x7fff80eb3fff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff80fd4000 -     0x7fff81056fff  com.apple.QuickLookUIFramework 2.3 (327.7) <73407EAE-6854-E444-37B1-019AAEDEB31B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff81057000 -     0x7fff810a6ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff810a7000 -     0x7fff810a9fff  libRadiance.dylib ??? (???) <BF694EE5-6FDA-553A-CC89-F7135618E9C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff810aa000 -     0x7fff810cbfe7  libPng.dylib ??? (???) <D8EC7740-EE32-865A-2F75-C9EDE2135510> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8112d000 -     0x7fff81177ff7  com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff81271000 -     0x7fff812bcfef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff812bd000 -     0x7fff812cbff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff812cc000 -     0x7fff812ccff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff812cd000 -     0x7fff812ceff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff812f0000 -     0x7fff81315ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8131e000 -     0x7fff8132ffff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff81349000 -     0x7fff8135dff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8135e000 -     0x7fff8137ffff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff816f5000 -     0x7fff81a92fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff81a93000 -     0x7fff81a95fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff81a96000 -     0x7fff81a97fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff81a98000 -     0x7fff81ab1fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff81ab2000 -     0x7fff81b08fe7  libTIFF.dylib ??? (???) <2DBEC120-DAA7-3789-36A2-A205BCDF2D72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff81b4d000 -     0x7fff81b70fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff81b71000 -     0x7fff81df3fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff81df4000 -     0x7fff81ea4fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff81ea5000 -     0x7fff81f21ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff81f22000 -     0x7fff81f25fff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff81f26000 -     0x7fff82045fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff82245000 -     0x7fff822c2fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff822c3000 -     0x7fff822cefff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff822cf000 -     0x7fff82314fff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff82329000 -     0x7fff824cbfe7  com.apple.WebKit 6534.59 (6534.59.10) <5F60FC29-1962-988F-96D1-A72A61F8C4EB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff824cc000 -     0x7fff824cdfff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff82677000 -     0x7fff826caff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff826cb000 -     0x7fff82ed5fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff82ed6000 -     0x7fff82f01ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff82f02000 -     0x7fff83345fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff83346000 -     0x7fff83423fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff83424000 -     0x7fff834b0fef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff834b1000 -     0x7fff834c3fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff834c4000 -     0x7fff83505fef  com.apple.CoreMedia 0.484.60 (484.60) <6B73A514-C4D5-8DC7-982C-4E4F0231ED77> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff83506000 -     0x7fff83506ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff83507000 -     0x7fff83829fff  com.apple.JavaScriptCore 6534.59 (6534.59.11) <992F7C39-0ADA-C5EF-0405-55F81A5B2F76> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8382a000 -     0x7fff8382aff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff838ce000 -     0x7fff83936fff  com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff83a98000 -     0x7fff83a9dfff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff83ad9000 -     0x7fff83ae3fff  com.apple.DisplayServicesFW 2.3.3 (289) <97F62F36-964A-3E17-2A26-A0EEF63F4BDE> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff83ae4000 -     0x7fff83b63fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff83b64000 -     0x7fff83b6bfff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff83b6c000 -     0x7fff83ba6fff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <539EBFDD-96D6-FB07-B128-40232C408757> /usr/lib/libcups.2.dylib
        0x7fff83ba7000 -     0x7fff83bcffff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff83bd0000 -     0x7fff84017fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff84018000 -     0x7fff8412ffef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff8417a000 -     0x7fff8417aff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8427c000 -     0x7fff842c5ff7  com.apple.securityinterface 4.0.1 (40418.0.1) <9AF33A9F-2D8C-2AE6-868C-EA836C861031> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff842c6000 -     0x7fff84301fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff84310000 -     0x7fff8439ffff  com.apple.PDFKit 2.5.5 (2.5.5) <18C99AB3-DACC-3654-200E-0BD09EBFB374> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff843a0000 -     0x7fff84402fe7  com.apple.datadetectorscore 2.0 (80.7) <09ED086F-438D-852B-1D13-367A36BCFF90> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff84403000 -     0x7fff84432ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff84433000 -     0x7fff84442fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff84443000 -     0x7fff8447cff7  com.apple.MeshKit 1.1 (49.2) <832A074D-7601-F7C9-6D3A-E1C58965C3A1> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff8447d000 -     0x7fff8448cfff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff84494000 -     0x7fff84494ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff84495000 -     0x7fff84495ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff84496000 -     0x7fff84e90ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff84e91000 -     0x7fff84e9efe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff84e9f000 -     0x7fff84eaefef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff84eaf000 -     0x7fff84ec6fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff84ec7000 -     0x7fff84ecaff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff84ecb000 -     0x7fff84ed6ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff84f8d000 -     0x7fff84fbefff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff84fbf000 -     0x7fff8503cfef  com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8508d000 -     0x7fff850cefff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8511a000 -     0x7fff85186fe7  com.apple.CorePDF 1.4 (1.4) <06AE6D85-64C7-F9CC-D001-BD8BAE31B6D2> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff85187000 -     0x7fff85249fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8524a000 -     0x7fff8540bfef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff8540c000 -     0x7fff85411fff  libGIF.dylib ??? (???) <3BAD0DE8-8151-68B0-2244-A4541C738972> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff85417000 -     0x7fff8544dff7  com.apple.framework.Apple80211 6.2.5 (625.6) <B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8544e000 -     0x7fff85507fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff85508000 -     0x7fff8551dff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8551e000 -     0x7fff85532fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff85533000 -     0x7fff8563dff7  com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff856f6000 -     0x7fff8586dfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8587a000 -     0x7fff858f8ff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff858f9000 -     0x7fff8593afef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8593b000 -     0x7fff85b7dfe7  com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff85b9a000 -     0x7fff85c50ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff85c51000 -     0x7fff85cc2ff7  com.apple.AppleVAFramework 4.10.27 (4.10.27) <6CDBA3F5-6C7C-A069-4716-2B6C3AD5001F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff85cc3000 -     0x7fff85cc6ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff85cf7000 -     0x7fff85cfdff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff85d04000 -     0x7fff85e74fff  com.apple.QTKit 7.7 (1800) <10F1DA07-ED26-C103-EE0A-515898C1DB19> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff85e75000 -     0x7fff85e75ff7  com.apple.quartzframework 1.5 (1.5) <5BFE5998-26D9-0AF1-1522-55C78E41F778> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff85e76000 -     0x7fff860ffff7  com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff86100000 -     0x7fff86155ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff86156000 -     0x7fff8616cfe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8616d000 -     0x7fff86869ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8686a000 -     0x7fff8693efe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff869f7000 -     0x7fff86a02fff  com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff86a0c000 -     0x7fff86f12ff7  com.apple.VideoToolbox 0.484.60 (484.60) <F55EF548-56E4-A6DF-F3C9-6BA4CFF5D629> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff86f36000 -     0x7fff87170fef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff87171000 -     0x7fff87201fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff87202000 -     0x7fff8746bfff  com.apple.QuartzComposer 4.2 ({156.30}) <C05B97F7-F543-C329-873D-097177226D79> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8746c000 -     0x7fff8750cfff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8750d000 -     0x7fff87554ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87563000 -     0x7fff87569ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff875b6000 -     0x7fff875bcff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff875bd000 -     0x7fff87600fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff87601000 -     0x7fff876e6fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff876fe000 -     0x7fff87804fe7  com.apple.PubSub 1.0.5 (65.21) <4C14C413-07AD-2529-45FA-8E5B438D38A0> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff87964000 -     0x7fff8797afef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff8797b000 -     0x7fff87a38fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff87a39000 -     0x7fff87a60ff7  libJPEG.dylib ??? (???) <08758593-6436-B29E-1DA8-F15597835EC1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff87abb000 -     0x7fff87b1bfe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff87b50000 -     0x7fff87b5cfff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
        0x7fff87b69000 -     0x7fff87e9dfef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff87e9e000 -     0x7fff87f23ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff87fd8000 -     0x7fff87fd8ff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff87fd9000 -     0x7fff87fdeff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff87fdf000 -     0x7fff8819efff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <92882FD3-CB3F-D0BE-DDDA-43B4BEE10F58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8819f000 -     0x7fff882ddfff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff882de000 -     0x7fff882effff  SyndicationUI ??? (???) <A7C60837-3B4F-ACDE-5B7B-63DA918763D0> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff88314000 -     0x7fff8832fff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff88330000 -     0x7fff883e5fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff883e6000 -     0x7fff89450fff  com.apple.WebCore 6534.59 (6534.59.6) <24B753DC-1FD4-FFCC-5F66-44799244A125> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: iMac5,1, BootROM IM51.0090.B09, 2 processors, Intel Core 2 Duo, 2.16 GHz, 1 GB, SMC 1.9f4
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST3250824AS  Q, 232.89 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-85J, 7.54 GB
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd500000 / 5
    USB Device: Apple Optical USB Mouse, 0x05ac  (Apple Inc.), 0x0304, 0xfd510000 / 7
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0250, 0xfd520000 / 6
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8501, 0xfd400000 / 4
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd300000 / 3
    USB Device: My Passport 0741, 0x1058  (Western Digital Technologies, Inc.), 0x0741, 0xfd100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8206, 0x7d100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8240, 0x7d200000 / 3

  • Mac is way too slow and bouncing ball is constant

    I ran the etrecheck and this is what it came back with.  What should I do?
    Problem description:
    Bouncing ball all the time…computer super slow.
    EtreCheck version: 2.1.7 (114)
    Report generated January 31, 2015 at 5:37:13 PM PST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
        MacBook Pro (15-inch, Early 2011) (Technical Specifications)
        MacBook Pro - model: MacBookPro8,2
        1 2 GHz Intel Core i7 CPU: 4-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 263
    Video Information: ℹ️
        Intel HD Graphics 3000 - VRAM: 384 MB
        AMD Radeon HD 6490M - VRAM: 256 MB
            Color LCD 1440 x 900
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 0:13:39
    Disk Information: ℹ️
        ST9500325ASG disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 498.88 GB (235.63 GB free)
                Core Storage: disk0s2 499.25 GB Online
        HL-DT-ST DVDRW  GS23NR 
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        HP Photosmart Plus B210 series
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [loaded]    com.LaCie.ScsiType00 (1.2.9 - SDK 10.6) [Support]
        [loaded]    com.jmicron.driver.jmPeripheralDevice (2.0.4) [Support]
        [not loaded]    com.kaspersky.kext.klif (3.0.0d23) [Support]
        [loaded]    com.kaspersky.nke (1.0.2d43) [Support]
        [loaded]    com.lacie.driver.LaCie_RemoteComms (1.0.1 - SDK 10.4) [Support]
        [loaded]    com.oxsemi.driver.OxsemiDeviceType00 (1.28.13 - SDK 10.5) [Support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Support]
        [running]    com.fitbit.galileod.plist [Support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Support]
    User Login Items: ℹ️
        iTunesHelper    Application Hidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
    Internet Plug-ins: ℹ️
        FlashPlayer-10.6: Version: 16.0.0.296 - SDK 10.6 [Support]
        QuickTime Plugin: Version: 7.7.3
        Flash Player: Version: 16.0.0.296 - SDK 10.6 [Support]
        Default Browser: Version: 600 - SDK 10.10
        SharePointBrowserPlugin: Version: 14.3.9 - SDK 10.6 [Support]
        Silverlight: Version: 5.1.20913.0 - SDK 10.6 [Support]
        JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    Safari Extensions: ℹ️
        Pin It Button [Installed]
    3rd Party Preference Panes: ℹ️
        Flash Player  [Support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: ON
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 498.88 GB Disk used: 263.25 GB
        Destinations:
            LaCie [Local]
            Total size: 499.76 GB
            Total number of backups: 11
            Oldest backup: 2013-04-08 05:32:50 +0000
            Last backup: 2014-12-29 20:32:29 +0000
            Size of backup disk: Too small
                Backup size 499.76 GB < (Disk used 263.25 GB X 3)
    Top Processes by CPU: ℹ️
             5%    WindowServer
             0%    systemstatsd
             0%    HP Scanner 3
             0%    AppleSpell
             0%    fontd
    Top Processes by Memory: ℹ️
        232 MB    Image Capture Extension
        159 MB    ocspd
        133 MB    Safari
        120 MB    com.apple.WebKit.WebContent
        94 MB    Dock
    Virtual Memory Information: ℹ️
        40 MB    Free RAM
        1.56 GB    Active RAM
        1.53 GB    Inactive RAM
        1.14 GB    Wired RAM
        1.40 GB    Page-ins
        5 MB    Page-outs
    Diagnostics Information: ℹ️
        Jan 31, 2015, 05:24:14 PM    Self test - passed

    I can't stand peremptory affirmations like "Nothing is wrong with Safari".
    Thousands of users can't be wrong (see the discussions).
    If I read you the right way, it's never software' fault, it's the user who's the culprit.
    Amazing!
    In this very case, the fact is we can't give to "christinefromfonthill" a good solution because weren't sitting in front of her Mac.
    You give her a good advice which could, perhaps, lead to an improvement.
    But must also admit that Safari is a very slow browser compared to Firefox or Chrome.
    And you can't ignore all the problems which arose when upgrading to Lion and were related to the new build and specs of Safari 5.1.
    The best example is the apparition of "garbage type" (use of Last Resort font) when reading numerous sites. This never occured before and is the direct consequence of Safari compliance to Web Open Type. This standard prohibits the use of Type 1 Postscript Fonts and is the reason why so many people are in trouble.
    I use a Mac for more than 25 years.
    I am a very "clean" user who hates the bells and whistles of third party.
    My Mac is always up-to-date and despite all my Mac loving care, I run into some problems.
    Imagine the nightmare which can occurs for the vulgum pecus who isn't, by definition, a power user aware of all the requirements for running a System in optimal conditions.
    May be Safari is one step in advance on its time but lambda users are paying the price for it.

  • Backup solutions w/RAID or redundancy (NAS, RAID, DIY File server)

    Hi all, I need a place to bounce my ideas off of. Here goes:
    I have been doing a lot of reading, since I was considering adding an NAS solution for my home network. My data consists mainly of videos (TVs and movies) and pictures (many many years worth).
    Anyways, out of the box solutions seemed a bit too pricy and the RAID not that spectacular unless you're willing to spend, so I began looking at building my own fileserver, with a hardware/software RAID solution. That was a bit better bang for the buck, but I still had one nagging concern.
    I've played around with RAID before, and I realized that with mirroring (the only RAID option I was really considering), was that it relied on the RAID controller. I couldn't just take a hard drive, remove it physically from the array, and have my information accessible when plugging it into another computer.
    What happens in a few years if your RAID controller dies and you can't find the exact same one? Your array will always be dependent on that controller and I really don't like that feeling. I'd rather have the option of taking a drive, plugging it in another computer, rather than needing to move the whole array (RAID, NAS, DIY file server) around. That means quicker access to my information or the ability to take it with me anywhere I go, on a moment's notice.
    The least costly solution I have come up with, for data that doesn't change all that much, is to have two huge drives (1 TB) on a computer, either one or both connected via eSATA. Just remember to ghost/copy the main drive once in a while, and keep the 'backup' drive detached (preferably located in a fire-proof safe) and back it up once in a while, on a regular basis).
    Sorry for the long post, but how does that sound, for a cheap, reliable backup solution, for data that doesn't get updated too frequently and for ease of access and use?

    Hi BGBG;
    For what you are attempting to do, RAID is not the best solution. The reason I say this is because RAID 1 is only capable of protection from disk failure. It is not a valid backup solution.
    I think that your last solution of using eSATA and a copy is the best. My only addition to your proposal would be a third disk. That way when you move the backup disk into storage you could replace it with the third one. In this way you could use SuperDuper to periodically backup between two disks.
    Allan

  • I need to reinstall OS X, will Time Machine recognise my backup drive?

    Due to permissions problems I need to reinstall my OS. Will my backup drive still be recognised by my MacBook Pro after a fresh install? Also will the permissions problems simply still be there if I restore using Time Machine?

    Glyn In Wales wrote:
    I have a huge list of permission errors.
    Most or all aren't really a problem. Why they keep being reported is a mystery, but they're innocuous.
    Here's the scoop: http://support.apple.com/kb/TS1448
    I have booted from my install disk and repaired permissions.
    Not necessary. Use Disk Utility in your Applications/Utilities folder.
    The reason I checked permissions in the first place was because a program was not opening (Limewire). The dock icon would bounce once then nothing.
    You need to find out why that is. Reinstalling your entire OS is vast overkill, and probably won't help anyway. The simplest solution might be to re-download and reinstall it. If that doesn't help, your best bet might be to first search for Limewire in the +Using Leopard+ forum to see if anybody else has had the same problem. If not, post it there, with as much detail as you can.
    Anti virus software shows no viruses
    There are no Mac viruses. None. Most Mac users don't run any anti-virus software. Most of the anti-virus software, especially the stuff you pay for, is worse than a virus!
    Some folks do run it, to keep from passing Windoze viruses they might get on to their PC friends. The free ClamXav is most often recommended here by those who know about such things, and they say it's the least obnoxious. Do a search for virus in the +Using Leopard+ forum, and read some of the many threads.

  • Can't Open 3rd party Apps with my User (Icon Bouncing then Application Not Responding)

    Hi
    Problem:
    I can't Open 3rd Part Apps with my user (FireFox, Chrome, Dropbox, GoogleDrive, Mega, Final Cut Pro X, etc) they just star bouncing and after a while they stop bouncing then i righ click on them and it says "Application Not Responding", but i can open native apps like Safari, iTunes, iMovie, Finder, Settings
    Other Events:
    -Just Before this happend i was editting a video on FCPX, y export it and tried to upload to Google Drive (in Chrome), when it was uploading I closed FCPX and the uploading stop it at 91%, y tried to reupload but then I realized that this video was in a temp folder and it wasnt there anymore, so I open FCPX to export it again and i couldnt, it was just bouncing and then "App not responding".
    -After Installing Yosemite i feelt it slow even after it finished the encriptation File Vault, specially in chrome.
    I have tried:
    1-Repair Disk Permisions
    2-Reset SMC
    3-Reinstall FCPX
    4-Decrypted the Disk and create another user and i was able to run Chrome, FireFox and FCPX, When I opened FCPX it started but when it was trying to open the project that i was working , it restarted the app and i couldnt open FCPX again, just bouncing and App Not Responding
    Any suggestions to keep my User working?
    Macbook Pro Mid 2012
    -OSX Yosemite,
    -16GB Ram1600MHz DDR3
    -750GB 5400RPM
    -2.9GHz dual-core Intel Core i7 processor (Turbo Boost up to 3.6GHz) with 4MB L3 cache

    Yes, as long as you let TM do a full disc backup (that is, you do not exclude anything in the TM backup settings) you will have a backup that allows a full system restore - puts everything back just as it was.
    You can also clone your system using the shareware app SuperDuper or the donation-ware app CarbonCopyCloner
    http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html
    http://www.bombich.com/
    Both of these apps will make a true clone (literally, a bit-by-bit copy) of your hard drive onto an external drive.  This clone will actually be bootable itself (you plug in the drive and hold the option key during startup then select the clone to boot from).  You would boot from the clone, then reverse-clone it back onto your internal hard drive.
    If you are really serious about being highly confident of not loosing files, you could use both  - I keep a TM backup on one drive, and 2 clones on separate bus-powered hard drives.
    P.S. even if you had not had any issues, you really, REALLY should be keeping regular, up to date backups anyway - things go flooey without warning sometimes and you risk loosing everything on your machine if you DON'T keep regular backup copies available.

  • Mail Services and Backup MX/mail services

    I have a question regarding backup mail services and acceptance of incoming messages.
    As of last week, I am new to the world of Mail Services in OS X Server 10.4. Last week, our current email server died and I was forced to take an Xserve G4 that had OS X Server 10.4.10 (unlimited) and setup mail services in order to receive and send mail. I went to a website called osx.topicdesk.com and followed their instructions for front-line spam defense and clamAV updating (and switching to clamd) which all appears to be working OK.
    Because our old email server was having some hardware issues for the past several months that I had been working on, I had the feeling that failure might happen. So what I did a few months ago was sign up for Google Apps and their mail service. I added their MX records under my primary mail server so that in the case of a failure of my server, all mail would be passed to Gmail and everyone could get to their mail immediately (as any prolonged downtime won't work since this is a daily newspaper). This did work, for when my old server died, all the mail went immediately to the appropriate Google Apps mail accounts. After about a day of setup on the Xserve, I got the mail services running OK. I gave it all the same IP info as the previous server so that the mail would just start working without having to edit DNS records and such.
    The problem I am having seems to be this: While I get most mail, some of my mail is still getting sent to the Google Apps accounts. For example, I have one user, Jane Doe, at [email protected] who gets most of their mail from connecting to the OS X Server, but about 2 - 3 emails a day get passed over to the Google Apps server. I have run DNSStuff.com tests on the mail connections, and I always get a good fast response out of the OS X server. My thinking was that mail would only be passed over to backup mail servers if the first server listed in the MX records was unavailable or offline. In all of my testing, my server has responded every time. The server is connecting via a gigabit network connection (good response), is a dual G4 1.33Ghz, 60GB hard drive with 2GB of RAM. This server doesn't do anything else except run Mail services (and web services for squirrelmail), it doesn't even have file sharing turned on.
    My old email server was a Pentium II 400mhz with 348MB of RAM, and it caught all mail, so I know that the Xserve should be able to handle the load without being busy. Is there any reason that my Xserve would be rejecting mail and they would be siphoned off to the Google accounts?
    Is this even a possible scenario to fix the problem: Setup a backup MX "queue" account somewhere with one of the BackupMX online services that will catch these stray emails and then send it back to the primary server? But then can be turned off quickly to allow mail to go to the Google Apps accounts if my server went down. In other words, the DNS record would show my primary as 1, the backup mx service as 2, the google servers as 3, 4, 5 and so on. Can Backup MX services be turned off quickly like that so that if my server is down and I need email to be accessed immediately then just "turn off" the service (without modifying the DNS since that will take too long to propogate) so that mail bounces over to Google immediately?
    I guess my first troubleshooting attempt should be to figure out why my OS X Server is not accepting all mail.
    Thanks in advance for any help and suggestions.
    G

    When I first started with the company about 2 years ago, they had a really old Linux box (about 10 years old) that was used to host email. It was horrible. It would run OK, but if it ever went down or had a hiccup, it was an all-day project trying to deal with it. Unfortunately, the company did not want to spend any money on a new server or software of course. The answer I got was "well, it's just email". Sure, but if email EVER goes down for more than 15 seconds, all of the employees go into seizures and scream that the place will have to shut down. I work for a daily newspaper, so everything is running 24/7.
    Knowing that one day that box was going to just die, I looked into some backup MX services. As pterobyte had mentioned is that with a secondary MX, the problem is that no one can get their mail at all until the primary server comes back up. I knew if that server ever went down, I had nothing to take its place, so I would have to order something or get a server from another location to use. Being unfamiliar with OS X Mail Services, I knew it would take me awhile to try to setup all the users and such. All the while at the newspaper, they would be screaming bloody murder that they needed email working for news, ads coming in, etc. And when I say if it goes down for 10 minutes they start getting into fetal positions in the floor screaming, I'm not far off exaggerating. I figured I was going to need something in place for them to check email while I worked on the primary.
    Back in September/October 2007, I discovered that Google hosted free mail services call Google Apps. With Google, I could setup "matching" accounts and would still be able to use my domain name. You just had to use Google's servers as the higher numbered MX records. Luckily, I set up in time for back in November, the Linux box finally died. When it did, all email successfully went to their counterparts on the Google's servers. I had everyone go to the special Google Apps login site and they were able to check their email fine. I ended up having to take a box from another site and then I had another copy of OS X Server 10.4, so I loaded it and successfully setup email (with lots of help from pterobyte's tutorials). They were on Google's systems for about 2 days.
    After the disaster, I went around and setup IMAP accounts on everyone's Thunderbird clients so that if our email server went down, they just simply check that mailbox. The nice thing with the Google IMAP is that they automatically see if emails are hitting that inbox from within their client. Right now, it still remains that the 2 original companies that hit the Google accounts still do. The city government email and email from a sister newspaper. Everything else gets directed to the primary server. Although sometimes that doesn't even work, as tonight I am having to work on a problem involving the Clamd app acting up - taking up nearly 100% of the CPU which in turn caused all the mail to be hung up in the queue. So since the mail server didn't "reject" the mail and grabbed it, their gmail "backup" didn't get anything in it. It was taking me forever to figure out what was going on, so I almost just told them to unplug the network cable from the email server so that everything definitely would be forwarded to gmail.
    My wish is that I had a secondary mail server in house to not even worry about it - or better yet, I wished I could just outsource the email administration itself to someone else (like webmail.us which is now MailSafe). That way for the most part, they wouldn't lose email. But of course, the company doesn't want to spend the money or invest. Just gripe when the older equipment we have won't support what they want to do with it.
    But the story above explains why I did what I did with the Google's servers. I do appreciate everyone's help and input on this particular problem. I am going to look around at the DNS and talk to at least our sister newspaper to see if I can see how they have their DNS setup.
    Thanks!
    G

  • Not receiving inbox messages & one email I've sent keeps bouncing back bogging up my i

    Hello.
    I have a new MACBOOK PRO and I love it BUT.....
    I have been having one specific email bounce back into my inbox (recovered messages section) over 1,000x's a day.
    I keep deleting the messages and emptying the trash to try to stop it but its not working!!!
    I contacted the person who i sent the email too and told them what was happening. Their response was, "its not coming from this end, check with your web guy..." UGH!!!
    I am now not receiving any new incoming messages and I have had to result in using my iphone to check my inbox, every  day!!
    How do I fix this problem? OR......Should I just make a Genius appointment?? LOL
    Thx! Nikki

    Hi Nikki,
    Not certain, but this can fix myriad Mail problems...
    Safe Boot from the HD, (holding Shift key down at bootup),  it will try to repair your Disk Directory while the spinning radian is happening, so let it go, run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then move this folder & file to the Desktop.
    Move this Folder to the Desktop...
    /Users/YourUserName/Library/Caches/Mail/
    Move this file to the Desktop...
    /Users/YourUserName/Library/Mail/Envelope Index
    Reboot.
    If that doesn't do it and you can afford to redo all your Rules, try these & reboot...
    /Users/YourUserName/Library/Mail/MessageRules.plist
    /Users/YourUserName/Library/Mail/MessageRules.plist.backup
    Note, in 10.5 & up /Users/YourUserName/Library/Caches/Mail/ may or may not exist.

  • Redirect to junkmail@mydomain bouncing back! (with redirect enabled)

    On a 10.4.7 server with mail bouncing disabled in server admin (actually spam mail is redirected to another mailbox). Worked well for months and nothing has been changed in server configuration.
    Anyone with the same problem?

    Do you want to change this in any
    way? For example, do you want to have a "Tag" level
    at which mail gets delivered to the recipient with a
    "JUNK" tag attached and then a higher "Kill" level
    where it gets redirected to the "spam@" account?
    This would be very nice... Can you help me?
    Thank you very much, Marco.
    This is pretty simple but involves editing the /etc/amavisd.conf file by hand via the Terminal application (and a text editor - NOT Word). The following presumes you have it already set up to redirect to the required account. We just need to amend to get a separate TAG process. The following uses the Pico editor which contains on-screen help. Commands in Terminal are shown in bold text. The "sudo" command prefix executes the command as the 'root' user and may need the admin password.
    First decide the scores required for the TAG and the KILL. E.g., tag at a score of 2 and kill (redirect to your spam account) at a score of 4. Adjust as required.
    Open Terminal application on the server. Stop mail server, make a backup of existing file and then edit it...
    sudo serveradmin stop mail
    sudo cp /etc/amavisd.conf /etc/amavisd.conf.bak
    sudo pico /etc/amavisd.conf
    You are now editing the amavisd.conf file. To find the line we need to edit, enter "control-W" then the search string "satag2level". The following 2 lines are the ones which can be edited...
    $satag2_leveldeflt = 3.0; # some comment stuff here
    $sakill_leveldeflt = $satag2_leveldeflt; # some comment stuff here
    For a tag at score 2 and kill at score 4, these two need to be changed to following...
    $satag2_leveldeflt = 2.0; # some comment stuff here
    $sakill_leveldeflt = 4.0; # some comment stuff here
    Use the cursor to move, delete and insert the new text. Note the ";" after the score levels. If you make a mistake and want to start again just Exit (control-X) and respond "N" (no) when asked to save.
    When happy all is OK, Exit, and confirm the save with "Y" (yes). Confirm the file name with 'return'. Restart mail services...
    sudo serveradmin start mail
    Send a test mail and check your mail.log to ensure everything is OK. If not, you can either stop mail services and either re-edit or go back to backup file and re-edit that...
    sudo serveradmin stop mail
    sudo cp /etc/amavisd.conf.bak /etc/amavisd.conf
    sudo pico /etc/amavisd.conf
    When all is working, have a look at the Server Admin-> Mail-> Filters screen. You will see that it now shows that Junk Mail is set to be 'Delivered', with a Tagged subject line. This is OK and is to be expected. The score on this screen is for the Tag, the killed mail (at higher score) will be delivered to your spam account.
    Note that Killed mail will also get a REJECT notice (as it did before) so you will still get the bounces in your outgoing queue. If you don't want to send these bounces, edit the following line in the amavisd.conf file...
    $finalspamdestiny = D_REJECT;
    and change it to...
    $finalspamdestiny = D_DISCARD;
    That's it! Hope it's all understandable.
    -david

Maybe you are looking for