Exit Review: Nokia 6585

img_0760This post is inspired by Bunnie’s Exit Review of his Blackberry, he also did one for his Thinkpad T60.  The concept is a good one, often our new gadget purchases are based on our personal past experiences as much as they are influenced by our friends and “the latest new thing”.

From the picture above, you can see that its had a hard life.  The paint is rubbing off on the corners, the keypad is starting to show black plastic under the chipped keys and the screen is held on with some scotch tape.  This phone has survived countless high impact falls to the floor, a few to pavement- and a handful that resulted in a yard sale style disassembly upon impact.

This was my 3rd Nokia phone.  When I purchased the 6585 in late 2004 I was switching from a GSM based carrier onto a CDMA carrier, my reasoning here was for improved coverage.  At the time, GSM coverage at my home was spotty (it has improved since).   I was attracted to the form factor (4.17” x 1.77” x 0.80”), and battery life (standby time 6 days).

Via eBay I did pick up the headset (with integrated radio antenna) which served me well.  Both the speaker phone and headset voice quality were such that I could be on a business conference call and people couldn’t tell that I wasn’t on my office phone.  As for extras, there wasn’t much to rave about.  The web browser would quickly drain your battery.  The screen 128×128 resolution and 4096 colours was poor.  The embedded java was only MIDP1.0.  The radio was a neat addition, but I never used it.

This phone does have an IRDA port on it.  This let me synchronize my contacts with a PC with the Nokia PC Suite.  I could also store pictures (low quality due to the display) on the phone to customize it.  This was also the first phone which I did any amount of text messaging with, and found the predictive T9 input to be fairly usable.  I also found the alarm clock to be invaluable when traveling – hotel alarm clocks can be challenging when you’re jet lagged.

I probably would still be using this phone had the battery life not degraded to the point where it needed charging daily to be reliable at all.  It was far too common to hear the sad ‘dee doop’ Nokia low battery sound from my pocket.

While the 6585 didn’t offer a lot of whiz bang features, it did work well as a phone.  The PC connectivity is something I can’t imagine not having now.   My new phone is another Nokia, more on that in a future post.

Playing in the Cloud

mirrors_edge_2dThere has been lots of talk lately about “the cloud” – I was a little taken aback by this blog posting from Google which implied that Google is the cloud.  Pat also recently posted about web UIs that I’d recommend people check out.  I’ve been keeping an eye on some of the instant on OSes, and it turns out a friend of mine is involved with one of the companies offering a cloud solution.  I’ll admit that the cloud concept is very cool – but what I really want is to host my own cloud (and yes, that does seem a bit backward).

Let’s get back to what computers are good at – entertaining us.  If you haven’t seen this yet, you need to check out mirrorsedge2d.com – a pretty neat flash based game that is a 2D take on Mirrors Edge.  It only take about 30mins of toying around to exhaust the content on the beta site right now, but if you enjoy 2d platformer games this will hook you.

The other night my internet connection was down for about 30 minutes.  How annoying will that be once all our data is in the cloud?

Ubuntu with Apple’s Time Machine

timemachineOnce I had managed to get Leopard up and going on the mac mini with all of the user settings copied over, it was time to start exploring new features.  Time Machine was first on the list – but I wanted to have it back up over the network to my Ubuntu Linux server.  I probably took the long route to a solution, but what I have seems to be working.  The two main parts of getting time machine to work are: a) make it so the Mac can see the network storage b) trick time machine into using it as a destination.

Part A – I believe that you can use a non-AFP network storage solution (and my Mac can see my Samba volumes for shared files) but I went the route of enabling AFP.  This is based on instructions found here, but I’ll repeat it here with my comments:

  1. We’ve got to recompile netatalk to have encryption.  You’ll need the universe repository enabled, and the development tools.  Details can be found in the ubuntu forums.
    sudo apt-get install dpkg-dev
    sudo apt-get install devscripts
    sudo apt-get install libssl-dev
    apt-get source netatalk
    sudo apt-get build-dep netatalk
    sudo apt-get install cracklib2-dev
    cd netatalk-2.0.3
    DEB_BUILD_OPTIONS=ssl debuild
    sudo dpkg -i ../netatalk_2.0.3-3ubuntu1_i386.deb

    You’ll probably want to issue a ‘hold’ on the netatalk package by using dpkg –set-selections to prevent being upgraded
    For the lazy – here is a link to the .deb I created.
  2. Modify the configuration file /etc/netatalk/AppleVolumes.default to point at the location you are going to store files.  Ensure ownership and permissions are correct for the user you want to have access this location.
  3. Now we install avahi
    sudo aptitude install avahi-daemon
    Edit /etc/netatalk/afpd.conf to contain:
    - -noddp -uamlist uams_randnum.so,uams_dhx.so
    you might add -noslp to that line above to remove a warning, the key is that the configuration must be on a single line.
    Edit the hosts line in  /etc/nsswitch to match
    hosts: files dns mdns4
    Download using wget http://www.disgruntled-dutch.com/media/afpd.service
    and install that in /etc/avahi/services
    Restart the services:
    sudo /etc/init.d/netatalk restart
    sudo /etc/init.d/avahi-daemon restart

At this point your Mac should be able to discover the service and see the volume as a shared drive.

Part B – Tricking the Mac into using this volume as a backup.  You may not need to do any of the work in Part A at all as is evidenced by other people claiming success on the net.

  1. Create a file named “.com.apple.timemachine.supported” at the root of the filesystem we pointed at in (2).  I’m not entirely sure this is required, but it didn’t hurt.
  2. On the Mac we need to fiddle one default.  Enter the following command in a terminal:
    defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1
    At this point, Time Machine would connect, but then fail with the error message: “Time Machine Error – Backup disk image could not be created”
  3. The ReadyNAS folk had a solution that worked for me.  Create the backup volume locally on the Mac and move it to the network volume:
    Determine your hostname, hopefully it is a simple one.
    Issue the command “ifconfig en0 | grep ether” which will find the MAC address of your Mac.
    Using <hostname>_<mac address>.sparsebundle as the filename we create a new volume:
    hdiutil create -size 140g -fs HFS+J \
    -volname "Backup of magpie" \
    magpie_0016cbaf91d7.sparsebundle

    Copy the newly created “sparse bundle” to the network volume.
  4. Now start up Time Machine – you should be good to go.  I opted to leave SpotLight enabled, this did significantly slow down the backup performance – but I do want the ability to search for “lost” files from the backup.

Time Machine is pretty weird.  I had assumed (wrongly) that it simply gave you a file view in time.  It turns out that many of the Mac applications are time machine aware, and will show you a views of the past.  For example, you can view your email through time and recover the mailbox from the past.

[Edit: April 2013 – it’s been some time since I stopped using this solution. I experienced this failing twice for me in basically the same manner. When the timemachine volume would get full my backup would stop being accessible. Instead of spend more time figuring out what exactly was wrong, I’ve moved onto an rsync (rsnapshot) based solution].