Archive for July, 2009

In order to access the Apple Time Capsule via Linux machine, here is what has to be done:

Step 1:

Make sure that you have smbfs and smbclient packages installed. In the popular Ubuntu distribution they are installed by default. In order to check you can use the terminal as follows:

sudo apt-get install smbfs
sudo apt-get install smbclient

Step 2:

Create a mount point:

cd /media
sudo mkdir capsule

Step 3:

Mount the drive:

sudo mount.cifs //10.0.1.1/"Capsule-Network-Name" /media/capsule -o pass=capsulepassword

The 10.0.1.1 address is the address which which the capsule identifies itself in the network. Respectively, Capsule-Network-Name is the name of the time machine in the network, capsulepassword is the password of the capsule.

Step 4:

You can now access the Time Capsule from Nautilus. If you want to write files into the Capsule you need to be identified as root. You ca open Nautilus as root by opening terminal and:

sudo nautilus

Enjoy!