Mind Mining Medium

Unmount all mounted Apple Filing Protocol (AFP) volumes

I travel from location to location, jumping from one wireless access point to another. While I love my mac, but I’ve always hated that it stalls whenever I reconnect to a wireless network because I didn’t unmount my AFPs before disconnecting. The operating system would give me the spinner of death for a few minutes before it stopped.

I set out to fix this problem. More after the break.

First, I wrote a script that will unmount all AFP mounts.

#!/bin/bash
#
# Unmount all Apple Filing Protocol (AFP) volumes that are currently
# mounted
#
# Version 1.0
#
# Date Written: 2007-10-11
# Last Modified: 2007-10-11 02:03 PM (14:03)
#
# (c) Copyright 2007 Ali Karbassi.
# Released under the GPL license
# http://www.gnu.org/copyleft/gpl.html

if [ `df | grep 'afp' | wc -l | sed 's| ||g'` != '0' ]
then
  umount $(df | grep 'afp' | sed 's|.* /|/|')
fi

Save the above to any location. I have a folder in my user directory called Scripts, so this file is located at ~/Scripts/unmountAllAFP.sh. Be sure to chmod +x this file. You can do this like so:

chmod +x unmountAllAFP.sh

Then you will need to install SleepWatcher (current version as of now is 2.0.4).

After this is installed, load up terminal and follow along.

cd ~
touch .sleep
chmod 0700 .sleep
mate .sleep

Note that I use TextMate. You can replace mate with nano.

Once you have the .sleep file open, add the absolute location of the script you want to run when your mac goes to sleep. For this example, we want our unmounting script to run. You should have the following in the file.

~/Scripts/unmountAllAFP.sh

That’s it. This will run every-time your mac goes to sleep.