Moja Konfiguracija
cd /media sudo mkdir timecapmilan sudo mkdir timecapbackups
MojĀ /etc/fstab
//192.168.110.32/Apple-Data/Milan /media/timecapmilan cifs password=koma69zadar,sec=ntlm,vers=1.0,rw,iocharset=utf8,file_mode=0777,dir_mode=0777 //192.168.110.32/Apple-Data/BACKUPS /media/timecapbackups cifs password=koma69zadar,sec=ntlm,vers=1.0,rw,iocharset=utf8,file_mode=0777,dir_mode=0777
Original Post
Firstly I installed smbfs and smbclient software using apt-get, but Synaptics works just as well. SMBFS and SMBCLIENT lets the machine talk over the the CIFS protocol (Server Message Block, the latest version of SAMBA as I understand)
Secondly I created a mount point as follows
cd /media
sudo mkdir capsule
Thirdly I modified the /etc/fstab file using VI from the Terminal by adding the following line:
//10.0.1.1/TCNAME/MyFiles /media/capsule cifs password=p@ssw0rd,rw,iocharset=utf8,file mode=0777,dirmode=0777
The great thing about adding the server name in the fstab file is that this way Ubuntu will mount the Time Capsule upon each startup as compared to just typing the following in the terminal:
sudo mount.cifs //10.0.1.1/”My Time Capsule”/MyFiles /media/capsule -o pass=p@ssw0rd
Typing the above in the Terminal works too, but you will have to do it on each startup.