Dissecting Your Backups — Mac Geek Gab 863

Subscribe to the MGG Weekly Episode Newsletter

[mc4wp_form id="67379"]

What better way to celebrate World Backup Day than to have your two favorite geeks pick apart their personal backup strategies? We can’t think of one, so that means you get to listen as John and Dave spend a little time sharing and analyzing their backup strategies, and sharing some of yours, as well. Of course, it’s Mac Geek Gab, so that means there will be some tips, Cool Stuff Found, and your questions answered! Press play and enjoy learning at least five new things.

Get In Touch:

Sponsors

SPONSOR: Other World Computing: OWC’s Thunderbolt Dock is back in stock and shipping for just $249! With three downstream Thunderbolt 4 ports, four USB ports, Ethernet, audio, and card reader functionality, this is the dock you want!

SPONSOR: Amazon Pharmacy: Amazon Prime Members can save on prescription medication when not using insurance and get FREE 2-day Delivery. Visit Amazon.com/MGGRX to learn more.

Show Notes

Chapters/Timestamps/Stuff mentioned:

3 thoughts on “Dissecting Your Backups — Mac Geek Gab 863

  • This is a wonderful idea but for some reason I can’t get the shell scripts to work. I’ve tried running them directly in the Terminal and get “zsh: permission denied: /Users/scott/Library/Scripts/Scott’s Scripts/TurnWifiOff.sh” (that’s the path to my script). Trying to use the “Run a shell script” in CCC yields the same result.

    I’ve copied your script from above and pasted it into a BBEdit document, then saved the document as “TurnWifiOff.sh”. Am I doing something wrong with the script? I’m an experienced Mac user and have built many helpful AppleScripts but shell scripts are a mystery to me.

    Any thoughts? Thanks in advance.

    1. Apologies for the delayed reply. In order to run a .sh shell script, it needs to be set to “executable.” The easiest way to do that, using your file as an example, is to set it to “world executable” (meaning every user can run it). To do that, type the following into Terminal

      chmod a+ x “/Users/scott/Library/Scripts/Scott’s Scripts/TurnWifiOff.sh”

  • Regarding Lew’s scripts where he disables Wi-Fi before creating a bootable clone and then re-enables Wi-Fi after creating it, here are the scripts, as promised!

    WiFi_OFF.SH

    #!/bin/sh
    
    /usr/bin/afplay "/System/Library/Components/CoreAudio.component/Contents/SharedSupport/SystemSounds/system/bu rn complete.aif"
    
    networksetup -setairportpower en0 off
    
    

    WiFi_ON.SH

    #!/bin/sh
    
    /usr/bin/afplay "/System/Library/Components/CoreAudio.component/Contents/SharedSupport/SystemSounds/system/bu rn complete.aif"
    
    networksetup -setairportpower en0 on

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.