Das das nicht tut liess micht nicht los, mittlerweile habe ich fspot, gimp, digikam, gtkam und gThumb probiert. Nur gThumb tut
die anderen meckern. Und gthumb gefällt mir wegen der Verzeichnisstruktur nicht, daher ein kleines (zT gefundenes) Shellscript geschrieben das tut was ich möchte:
Code: Alles auswählen
#!/bin/bash
# benutzte Pakete: gphoto2, mmv
# modifiziertes Skript von
# http://forum.ubuntuusers.de/topic/84134/?highlight=eos+400d (johnnyl)
# get year (iE "2007")
year=`date +%Y`
# get day of month (iE "01-Jan")
daymonth=`date +%d-%b`
# create subdirs if needed, no failure if existent due to -p
sudo mkdir -p ~/Pictures/$year/$daymonth/raw
# enter ~/Pictures/Year/Day-Month
cd ~/Pictures/$year/$daymonth
# detect Camera - just for display
sudo gphoto2 --auto-detect
#get all files
sudo gphoto2 --get-all-files
# make all filenames lowercase
sudo mmv "*" "#l1"
# move rawdata out of way
sudo mv *.cr2 ~/Pictures/$year/$daymonth/raw/
# change user and group of all photos
sudo chown -R partner:photos ~/Pictures/$year/$daymonth
# change permissions to rw for me and group, read for others
chmod 664 ~/Pictures/$year/$daymonth/*.jpg
chmod 664 ~/Pictures/$year/$daymonth/raw/*.cr2
echo Bitte übertrage Dateien löschen sonst gibts bald Doppeldaten
Die vielen sudo's schmerzen mich zwar, aber so klappt es und ich habe hoffentlich bald eine schöne, geordnete Bildersammlung
Danke für den Tip mit gThumb, das werde ich -da komfortabler als die Kamera- zum Grobsortieren der Bilder nehmen.