This is rather technical and non-standard for my educational technology blog posts here– but I need to record this as much for myself as for others who may find this useful. I am now finding myself referring back to my own blog more frequently now, to remember something or share it again. Scary!
Since upgrading to Macintosh OS 10.4 Tiger, my laptop has no longer automatically reconnected to our university wireless network. We use 802.1X encryption– this upgrade did not affect my ability to reconnect after waking the laptop from sleep on other unencrypted wireless networks, just the encrypted one here at the university. Today thanks to the amazing skills of Danny Mar, we found a solution to this problem. Unfortunately, because it involves having the operating system recreate a read-only file, it requires use of the Terminal. But it DOES work! Here is what we did.
- Click on Spotlight, type “terminal,” down arrow to the application and press enter.
- Navigate to the root by typing cd /
- Change the directory to library/Preferences/SystemConfiguration.
- Execute the “sudo” command (superuser-do) to rename the airport preferences plist file something else (I renamed it “temp.plist”: mv com.apple.airport.preferences.plist temp.plist
- Reconnect to the wireless network (this rebuilt the preference setting).
- Put the computer to sleep.
- Wake up from sleep.
The computer should now automatically reconnect to the wireless when waking up from sleep! If it doesn’t reconnect, open Internet Connect, disconnect, and click CONNECT again.
Here is the copied sequence of commands we used in the Terminal to do this. You can see that the command mv (rename) when done without the sudo command first results in a “Permission Denied” error, because that file is “read only” to users. The command “ls” is directory list, equivalent in DOS to “dir”. Another cool Terminal trick Danny taught me was typing part of a directory or file name, and then pressing the tab key to complete it. Pressing up arrow retypes the previous command, and you can left arrow to add something in front of it, like the sudo command.
Last login: Thu Oct 20 14:09:29 on console
Welcome to Darwin!
Shadowfax:~ myusername$ cd /
Shadowfax:/ myusername$ cd library
Shadowfax:/library myusername$ cd Preferences
Shadowfax:/library/Preferences myusername$ cd SystemConfiguration/
Shadowfax:/library/Preferences/SystemConfiguration myusername$ ls
NetworkInterfaces.plist com.apple.nat.plist
com.apple.PowerManagement.plist preferences.plist
com.apple.airport.preferences.plist preferences.plist.system_default
Shadowfax:/library/Preferences/SystemConfiguration myusername$ mv com.apple.airport.preferences.plist temp.plist
mv: rename com.apple.airport.preferences.plist to temp.plist: Permission denied
Shadowfax:/library/Preferences/SystemConfiguration myusername$ sudo mv com.apple.airport.preferences.plist temp.plist
Password:
Shadowfax:/library/Preferences/SystemConfiguration myusername$ ls
NetworkInterfaces.plist preferences.plist
com.apple.PowerManagement.plist preferences.plist.system_default
com.apple.nat.plist temp.plist
On this day..
- Introducing Your Next Educational Conference Speaker! - 2011
- The Fisch Flip in Michigan: Dale Eizenga on flipping traditional lecture and homework routines - 2010
- Facial Recognition in Software Programs and Online - 2010
- Is the E-Rate Program in the United States broken? - 2009
- Saturday morning in a 1 to 1 household - 2008
- Chris Lehmann on School Change at Ignite Philly - 2008
- More thinking about mobile, field recording for podcasts - 2007
- They're not digital natives or immigrants - 2006
- Amazing Web 2.0 tools - 2005
- InterWrite SchoolPad - 2005



























