If you made a 'usual' configuration of the Time Capsule with the Time Machine, the configuration could be like this:
EXAMPLE If your User Name in MacOSX is Tom "Tom's Time Capsule" is the main folder on the Time Machine (without ""!) "Tom" is the User Name you have in MacOSX "PWCapsule" is the Password to access it
To mount it
- Make a mount point
sudo mkdir /media/capsule
- Mount it with the command 'mount.cifs' or like this
- try these four different solutions:
sudo mount -t cifs //192.168.0.20/"Tom's Time Capsule" /media/capsule -o user=Tom,pass=PWCapsule
without username
sudo mount -t cifs //192.168.0.20/"Tom's Time Capsule" /media/capsule -o pass=PWCapsule
#adding a subdirectory
sudo mount -t cifs //192.168.0.20/"Tom's Time Capsule"/Tom /media/capsule -o user=Tom,pass=PWCapsule
sudo mount -t cifs //192.168.0.20/Tom's\ Time\ Capsule /media/capsule -o user=Tom,pass=PWCapsule
sudo mount -t cifs //192.168.0.20/Tom's\ Time\ Capsule/Tom /media/capsule -o user=Tom,pass=PWCapsule