Mailinglist Archive: opensuse (3618 mails)
< Previous | Next > |
Re: [opensuse] Organize Your Digital Photos - exiftool and jhead
- From: Manne Merak <mannemerak@xxxxxxxxx>
- Date: Thu, 29 Jan 2009 14:32:16 +0200
- Message-id: <4981A1D0.70902@xxxxxxxxx>
nordi wrote:
The issue is I dont want to re-backup the old photos, just the ones
after a specific date.
Manne
--
To unsubscribe, e-mail: opensuse+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse+help@xxxxxxxxxxxx
Manne Merak wrote:Thanks, ok, almost there. How do I only get the diff files?
On this, how do you people backup your photos?
The second is difficult unless you just dump the whole lot every time -
but these dirs get BIG.
Just use rsync. I have switched from a hand-written backup script to
rsync, and it is simply 1000 times better (conservative estimate). All
you need is
#!/bin/bash
tobackup="/home/manne/pictures" # no trailing slash
storage="/media/your_usbdisk/pic_backup"
nice ionice -n7 rsync -av --delete -HAX "$tobackup" "$storage"
A script like this does a backup of my homedir in <1 minute after the
initial run.
Regards
nordi
The issue is I dont want to re-backup the old photos, just the ones
after a specific date.
Manne
--
To unsubscribe, e-mail: opensuse+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse+help@xxxxxxxxxxxx
< Previous | Next > |