Digikam/Håndtering af fotos fra flere installationer af digiKam
Håndtering af fotos fra flere installationer af digiKam
Fra Dmitri Popovs blog, 13. marts 2011
Vil du gemme dine fotos på en server eller netværksdisk? Vil du håndtere dem fra flere forskellige Linus-baserede maskiner ved brug af digiKam? Hver viser jeg, hvordan du gør det.
For det første skal du montere mappen på serveren, som indeholder fotoene på din maskine. Forudsat, at din server kører Linux og at du kan forbinde til den via SSH, så klan du montere mappen fra den fremmede maskine ved brug af sshfs. For at gøre dette skal du installere sshfs-pakken først. På Ubuntu og Debian-baserede Linux-distributioner kan du gøre dette ved at kommandoen
apt-get install sshfs
som root. Kør dernæst kommandoen id og bemærk din kontos uid og gid værdier (fx uid=1000 gid=1000). Brug så følgende kommando til at montere en server-mappe på din maskine:
sshfs user@host:/path/to/dir /mountpoint -o idmap=user -o uid=1000 -o gid=1000
Replace user with the name of the existing user on the server and host with the IP address of the server. Replace /path/to/dir with the path to the directory on the server and /mountpoint with the directory on your machine that will be used as a mount point. Once the directory has been mounted, you can use the files in it as they were on your own machine. To unmount the directory, use the fusermount command as follows:
fusermount -u /mountpoint
Next, you have to configure digiKam to use a MySQL database as its back-end. This would require, of course, a MySQL installation running either on your own server or on another remote machine. The Use digiKam with MySQL article provides detailed instructions on how to make digiKam work with MySQL.
The rest is easy. In digiKam, choose
and switch to the section. Press the button next to the entry, then add the folder that contains the photos from the mounted remote directory as a new album.In a similar manner, you can configure digiKam on any other machine you want to use to manage photos stored on the server.