Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Several files are backed up with each snapshot #1437

Open
Elbchillharmonie opened this issue May 14, 2023 · 24 comments
Open

Several files are backed up with each snapshot #1437

Elbchillharmonie opened this issue May 14, 2023 · 24 comments

Comments

@Elbchillharmonie
Copy link

Elbchillharmonie commented May 14, 2023

I've the issue that backintime backs up several files with each snapshot, especially photos. As photos are the vast majority of my backup, it's probably more than 90% which are backed up again and again although I did not touch these files. The speed is also very low and thus needs hours. The transfer is from my laptop (ext4) to my openmediavault NAS (ext4) with 1Gbit LAN. My NAS regularly runs out of space because of this. However, I think it's not a full backup (my last snapshot hat a size of 1.3 TB, my laptop has approx. 1.4 TB). The snapshot compare function makes backintime not responding.

I don't know whether this is related to issue #988. I tried to run it with "--no-perms --no-group --no-owner", but I've the impression that even more files are being backed up with these settings.

$ backintime --diagnostics
{
"backintime": {
"name": "Back In Time",
"version": "1.3.4-dev",
"latest-config-version": 6,
"local-config-file": "/home/UsernameReplaced/.config/backintime/config",
"local-config-file-found": true,
"global-config-file": "/etc/backintime/config",
"global-config-file-found": false,
"started-from": "/usr/share/backintime/common",
"running-as-root": false,
"user-callback": "/home/UsernameReplaced/.config/backintime/user-callback",
"keyring-supported": true
},
"host-setup": {
"platform": "Linux-6.1.28-1-lts-x86_64-with-glibc2.37",
"system": "Linux #1 SMP PREEMPT_DYNAMIC Thu, 11 May 2023 15:52:41 +0000",
"os-release": {
"NAME": "Arch Linux",
"ID": "arch",
"PRETTY_NAME": "Arch Linux",
"BUILD_ID": "rolling",
"ANSI_COLOR": "38;2;23;147;209",
"HOME_URL": "https://archlinux.org/",
"DOCUMENTATION_URL": "https://wiki.archlinux.org/",
"SUPPORT_URL": "https://bbs.archlinux.org/",
"BUG_REPORT_URL": "https://bugs.archlinux.org/",
"PRIVACY_POLICY_URL": "https://terms.archlinux.org/docs/privacy-policy/",
"LOGO": "archlinux-logo"
},
"display-system": "x11",
"locale": "de_DE, UTF-8",
"PATH": "/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/android-ndk:/opt/android-sdk/tools:/opt/android-sdk/tools/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/opt/matlab/bin",
"RSYNC_OLD_ARGS": "(not set)",
"RSYNC_PROTECT_ARGS": "(not set)"
},
"python-setup": {
"python": "3.11.3 main Apr 5 2023 15:52:25 CPython GCC 12.2.1 20230201",
"python-executable": "/usr/bin/python3",
"python-executable-symlink": true,
"python-executable-resolved": "/usr/bin/python3.11",
"sys.path": [
"/usr/share/backintime/qt/plugins",
"/usr/share/backintime/common/plugins",
"/usr/share/backintime/plugins",
"/usr/share/backintime/common",
"/usr/lib/python311.zip",
"/usr/lib/python3.11",
"/usr/lib/python3.11/lib-dynload",
"/usr/lib/python3.11/site-packages"
],
"qt": "PyQt 5.15.9 / Qt 5.15.8"
},
"external-programs": {
"rsync": {
"program": "rsync",
"version": "3.2.7",
"protocol": "31.0",
"copyright": "(C) 1996-2022 by Andrew Tridgell, Wayne Davison, and others.",
"url": "https://rsync.samba.org/",
"capabilities": {
"file_bits": 64,
"inum_bits": 64,
"timestamp_bits": 64,
"long_int_bits": 64,
"socketpairs": true,
"symlinks": true,
"symtimes": true,
"hardlinks": true,
"hardlink_specials": true,
"hardlink_symlinks": true,
"IPv6": true,
"atimes": true,
"batchfiles": true,
"inplace": true,
"append": true,
"ACLs": true,
"xattrs": true,
"secluded_args": "optional",
"iconv": true,
"prealloc": true,
"stop_at": true,
"crtimes": false
},
"optimizations": {
"SIMD_roll": true,
"asm_roll": false,
"openssl_crypto": true,
"asm_MD5": false
},
"checksum_list": [
"xxh128",
"xxh3",
"xxh64",
"md5",
"md4",
"sha1",
"none"
],
"compress_list": [
"zstd",
"lz4",
"zlibx",
"zlib",
"none"
],
"daemon_auth_list": [
"sha512",
"sha256",
"sha1",
"md5",
"md4"
],
"license": "GPLv3",
"caveat": "rsync comes with ABSOLUTELY NO WARRANTY"
},
"ssh": "OpenSSH_9.3p1, OpenSSL 3.0.8 7 Feb 2023",
"sshfs": "3.7.3",
"encfs": "(no encfs)",
"shell": "/bin/bash",
"shell-version": "GNU bash, Version 5.1.16(1)-release (x86_64-pc-linux-gnu)"
}
}

I'm using backintime-git from AUR:

aur/backintime-cli-git 1.3.2.r111.g6fc658dd-1 (+28 0.02) (Installiert: 1.3.3.r11.g66d248fe-1)
aur/backintime-git 1.3.2.r111.g6fc658dd-1 (+28 0.02) (Installiert: 1.3.3.r11.g66d248fe-1)

@buhtz
Copy link
Member

buhtz commented May 14, 2023

Moin @Elbchillharmonie , thanks for reporting.

Can you please confirm that the backups are duplicated files and not hardlinks? You can use ls -i to show the inode numbers of your files. Compare that numbers of a specific file between two snapshots. If the numbers equal that it is a hard link and not a duplicate. If they are different that it is a duplicate.

If it is a duplicate please compare their content via diff and their rights via ls -l.

@buhtz buhtz added the Bug label May 14, 2023
@Elbchillharmonie
Copy link
Author

Elbchillharmonie commented May 14, 2023

Moin @buhtz thanks for your response. I just checked some examples in the last two snapshots, they have different inodes:

> $ ls -ali 20230506-014444-122/backup/home/USER/Bilder/Fotos/2005/20051231\ Silvester\ 2005\ 31.12.2005/20051231T203122-FUJIFILMFinePixA303.jpg
187826419 -rwxr-x--- 2 USER users 310611 31. Dez 2005  '20230506-014444-122/backup/home/USER/Bilder/Fotos/2005/20051231 Silvester 2005 31.12.2005/20051231T203122-FUJIFILMFinePixA303.jpg'
 $ ls -ali 20230402-221501-210/backup/home/USER/Bilder/Fotos/2005/20051231\ Silvester\ 2005\ 31.12.2005/20051231T203122-FUJIFILMFinePixA303.jpg
86147646 -rwxr-x--- 1 USER users 310611 31. Dez 2005  '20230402-221501-210/backup/home/USER/Bilder/Fotos/2005/20051231 Silvester 2005 31.12.2005/20051231T203122-FUJIFILMFinePixA303.jpg'
 $ ls -ali 20230506-014444-122/backup/home/USER/Bilder/Fotos/2022/20220417\ Ostersonntag/20220417T174458-NikonD7200_2477.JPG
188221293 -rwxr-x--- 2 USER users 13456642 17. Apr 2022  '20230506-014444-122/backup/home/USER/Bilder/Fotos/2022/20220417 Ostersonntag/20220417T174458-NikonD7200_2477.JPG'
 $ ls -ali 20230402-221501-210/backup/home/USER/Bilder/Fotos/2022/20220417\ Ostersonntag/20220417T174458-NikonD7200_2477.JPG
101188617 -rwxr-x--- 1 USER users 13456642 17. Apr 2022  '20230402-221501-210/backup/home/USER/Bilder/Fotos/2022/20220417 Ostersonntag/20220417T174458-NikonD7200_2477.JPG'

Only the link count seems to be different. Diff shows no difference at all.

@buhtz
Copy link
Member

buhtz commented May 14, 2023

The issue might be a duplicate of #988 as you stated. Currently there is no easy or quick way to fix it because we still don't know why it happens. It is hard to reproduce and investigate.

You still tried to use --no-perms but the problem persists? Are you sure?

For our investigation can you give us some more information's about how the source and destination are linked together?

  • What type of snapshot profile is it? (SSH, local, (not) encrypted)
  • Do you mount the destination somehow? Samba, NFS, ...?

@Elbchillharmonie
Copy link
Author

Elbchillharmonie commented May 14, 2023

Oh sorry, it seems it didn't execute with --no-perms because it keeps me asking

Möchten Sie Ihren öffentlichen SSH-Schlüssel
auf den entfernten Rechner kopieren,
um Anmeldung ohne Passwort zu aktivieren?

(Do you want to copy your SSH public key to the remote machine to enable passwordless login?)

If I click "No", a password prompt follows and I'm in a loop. I can only cancel, but then the rsync argument isn't saved. If I click "yes", I'm in the same loop. I can only cancel, but then the rsync argument isn't saved. Is this another bug?

I tried to do it in the config file directly, but it keeps on overwriting it. How can I pass the message to bit?

Edit: Forgot to answer the other questions:

  • I'm using the SSH profile.
  • As per consule output, it is mounted like this INFO: mount ssh: $USER@192.168.178.XX:/media/$ID/home/$USER/Backup/ on /home/$USER/.local/share/backintime/mnt/F0752738/mountpoint

@buhtz
Copy link
Member

buhtz commented May 14, 2023

Oh sorry, it seems it didn't execute with --no-perms because it keeps me asking

Möchten Sie Ihren öffentlichen SSH-Schlüssel
auf den entfernten Rechner kopieren,
um Anmeldung ohne Passwort zu aktivieren?

I'm not sure if I understand that. Is passwordless login activated?
When you use a shell/bash can you execute ssh $USER@192.168.178.XX without being asked for a password?

I'm also not sure about the --no-perms. Where did you put it in? You should use the Expert Options in the Settings dialog of BIT. There you find a field "Past additional arguments to rsync".

Please have a look into the log file of your last snapshot. You will find it in ~/.local/share/backintime/takesnapshot_<N>.log where <N> is the profile number of your snapshot profile. Look for the two files you reported (20220417T174458-NikonD7200_2477.JPG and 20051231T203122-FUJIFILMFinePixA303.jpg and show us that lines in the log.

@Elbchillharmonie
Copy link
Author

Elbchillharmonie commented May 14, 2023

Sorry no. 2, I used the wrong field (ssh prefix). I'll try again.

I've only one big log takesnapshot_.log. Log extract:

[I] Schnappschuss erstellen (rsync: BACKINTIME: cf...p..... home/$USER/Bilder/Fotos/2005/20051231 Silvester 2005 31.12.2005/20051231T203122-FUJIFILMFinePixA303.jpg)
[C] cf...p..... home/$USER/Bilder/Fotos/2005/20051231 Silvester 2005 31.12.2005/20051231T203122-FUJIFILMFinePixA303.jpg

The second entry, I can't find, but it's in the bit GUI log viewer:

[C] cf...p..... home/$USER/Bilder/Fotos/2022/20220417 Ostersonntag/20220417T174458-NikonD7200_2477.JPG

@buhtz
Copy link
Member

buhtz commented May 14, 2023

cf...p.....
     ^

That p indicates that rsync see's different permissions between the two files it compares. That is the reason why it was transfered and not hardlinked.

From my understand --no-perms would "fix" this behavior. But it is better to investigate the real reason why the permissions are different.

If the destination would be mounted via NFS or Samba there are a lot of ways to influence permissions. But when using just SSH I have no idea what it could be.

@Elbchillharmonie
Copy link
Author

Now I've several errors Error: rsync: [generator] link ... failed: File exists (17) or No such file or directory (2).

How can I tell backintime that it shall start a completely new snapshot and do not reuse "new_snapshot"?

I'm only using the SSH profile and let backintime do the rest. I'm not aware of any adjustments.

@buhtz
Copy link
Member

buhtz commented May 14, 2023

Can you start backintime-qt with --debug please and then post the complete output please.
Please use the "Add code" symbol (the fifth) at GitHub editor and not the "Add quote".

@Elbchillharmonie
Copy link
Author

Here we go:

DEBUG: [common/backintime.py:589 argParse] Arguments: {'debug': True} | unknownArgs: []

Back In Time
Version: 1.3.4-dev

Back In Time comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions; type `backintime --license' for details.

DEBUG: [common/backintime.py:677 getConfig] config file: /home/$USER/.config/backintime/config
DEBUG: [common/backintime.py:678 getConfig] share path: /home/$USER/.local/share/backintime
DEBUG: [common/backintime.py:679 getConfig] profiles: 1=Hauptprofil
DEBUG: [common/pluginmanager.py:240 PluginManager.load] Register plugin path /usr/share/backintime/plugins
DEBUG: [common/pluginmanager.py:257 PluginManager.load] Add plugin qt4plugin.py
DEBUG: [common/pluginmanager.py:257 PluginManager.load] Add plugin notifyplugin.py
DEBUG: [qt/qttools.py:175 createQApplication] QT QPA platform plugin: xcb
DEBUG: [qt/qttools.py:176 createQApplication] QT_QPA_PLATFORMTHEME=<not set>
DEBUG: [qt/qttools.py:178 createQApplication] QT_STYLE_OVERRIDE=<not set>
DEBUG: [qt/qttools.py:179 createQApplication] QT active style: breeze
DEBUG: [qt/qttools.py:180 createQApplication] QT fallback style: breeze
DEBUG: [qt/qttools.py:181 createQApplication] QT supported styles: ['Breeze', 'Oxygen', 'Windows', 'Fusion']
DEBUG: [qt/qttools.py:182 createQApplication] themeSearchPaths: ['/home/$USER/.local/share/icons', '/usr/share/icons', '/home/$USER/.icons', ':/icons']
DEBUG: [qt/qttools.py:183 createQApplication] fallbackSearchPaths: []
DEBUG: [qt/qttools.py:185 createQApplication] Is SystemTray available: True
DEBUG: [qt/qttools.py:197 createQApplication] Trying to set App ID for non-privileged user
DEBUG: [common/sshtools.py:285 SSH.startSshAgent] ssh-agent started successful: SSH_AUTH_SOCK=/tmp/ssh-XXXXXXAmh1G3/agent.44848 | SSH_AGENT_PID=44849
DEBUG: [common/sshtools.py:340 SSH.unlockSshAgent] Add private key /home/$USER/.ssh/id_rsa to ssh agent
DEBUG: [common/sshtools.py:350 SSH.unlockSshAgent] Password available: False
DEBUG: [common/mount.py:686 SSH.mountProcessLockAcquire] Acquire mountprocess lock /home/$USER/.local/share/backintime/mnt/44842.lock
DEBUG: [common/sshtools.py:681 SSH.checkPingHost] Check ping host
DEBUG: [common/sshtools.py:700 SSH.checkPingHost] Host 192.168.178.XX is available
DEBUG: [common/mount.py:582 SSH.checkFuse] Check fuse
DEBUG: [common/sshtools.py:423 SSH.checkLogin] Check login
DEBUG: [common/sshtools.py:599 SSH.checkRemoteFolder] Check remote folder
DEBUG: [common/sshtools.py:626 SSH.checkRemoteFolder] Call command: ssh -o ServerAliveInterval=240 -o LogLevel=Error -o IdentityFile=/home/$USER/.ssh/id_rsa -p 2222 $USER@192.168.178.XX d=0;test -e "/media/$ID/home/$USER/Backup/" || d=1;test $d -eq 1 && mkdir "/media/$ID/home/$USER/Backup/"; err=$?;test $d -eq 1 && exit $err;test -d "/media/$ID/home/$USER/Backup/" || exit 11;test -w "/media/$ID/home/$USER/Backup/" || exit 12;test -x "/media/$ID/home/$USER/Backup/" || exit 13;exit 20
DEBUG: [common/sshtools.py:636 SSH.checkRemoteFolder] Command returncode: 20
DEBUG: [common/sshtools.py:191 SSH._mount] Call mount command: sshfs -o ServerAliveInterval=240 -o LogLevel=Error -o IdentityFile=/home/$USER/.ssh/id_rsa -p 2222 -o idmap=user -o cache_dir_timeout=2 -o cache_stat_timeout=2 $USER@192.168.178.XX:/media/$ID/home/$USER/Backup/ /home/$USER/.local/share/backintime/mnt/F0752738/mountpoint
INFO: [common/mount.py:430 SSH.mount] mount ssh: $USER@192.168.178.XX:/media/$ID/home/$USER/Backup/ on /home/$USER/.local/share/backintime/mnt/F0752738/mountpoint
DEBUG: [common/mount.py:713 SSH.mountLockAquire] Set mount lock /home/$USER/.local/share/backintime/mnt/F0752738/locks/44842.lock
DEBUG: [common/mount.py:698 SSH.mountProcessLockRelease] Release mountprocess lock /home/$USER/.local/share/backintime/mnt/44842.lock
DEBUG: [common/tools.py:1421 readCrontab] Read 7 lines from users crontab
DEBUG: [common/config.py:1518 Config.removeOldCrontab] Clearing system Back In Time entries
DEBUG: [common/config.py:1552 Config.cronLine] Profile: Hauptprofil | Automatic backup: Wiederholend (anacron)
DEBUG: [common/tools.py:1458 writeCrontab] Wrote 7 lines to users crontab
DEBUG: [common/backintime.py:589 argParse] Arguments: {'debug': True, 'command': 'backup', 'func': <function backup at 0x7fe0d25080e0>} | unknownArgs: []

Back In Time
Version: 1.3.4-dev

Back In Time comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions; type `backintime --license' for details.

DEBUG: [common/backintime.py:677 getConfig] config file: /home/$USER/.config/backintime/config
DEBUG: [common/backintime.py:678 getConfig] share path: /home/$USER/.local/share/backintime
DEBUG: [common/backintime.py:679 getConfig] profiles: 1=Hauptprofil
DEBUG: [common/pluginmanager.py:240 PluginManager.load] Register plugin path /usr/share/backintime/plugins
DEBUG: [common/pluginmanager.py:257 PluginManager.load] Add plugin qt4plugin.py
DEBUG: [common/pluginmanager.py:257 PluginManager.load] Add plugin notifyplugin.py
INFO: [common/snapshots.py:704 Snapshots.backup] Lock
DEBUG: [common/tools.py:1370 inhibitSuspend] Inhibit Suspend started. Reason: take snapshot
DEBUG: [common/sshtools.py:285 SSH.startSshAgent] ssh-agent started successful: SSH_AUTH_SOCK=/tmp/ssh-XXXXXXdlRanI/agent.44913 | SSH_AGENT_PID=44914
DEBUG: [common/sshtools.py:340 SSH.unlockSshAgent] Add private key /home/$USER/.ssh/id_rsa to ssh agent
DEBUG: [common/sshtools.py:350 SSH.unlockSshAgent] Password available: False
DEBUG: [common/mount.py:686 SSH.mountProcessLockAcquire] Acquire mountprocess lock /home/$USER/.local/share/backintime/mnt/44910.lock
INFO: [common/mount.py:424 SSH.mount] Mountpoint /home/$USER/.local/share/backintime/mnt/F0752738/mountpoint is already mounted
DEBUG: [common/mount.py:713 SSH.mountLockAquire] Set mount lock /home/$USER/.local/share/backintime/mnt/F0752738/locks/44910.lock
DEBUG: [common/mount.py:698 SSH.mountProcessLockRelease] Release mountprocess lock /home/$USER/.local/share/backintime/mnt/44910.lock
INFO: [common/snapshots.py:735 Snapshots.backup] Take a new snapshot. Profile: 1 Hauptprofil
INFO: [common/snapshots.py:1092 Snapshots.takeSnapshot] Found leftover 'new_snapshot' which can be continued.
INFO: [common/snapshots.py:1140 Snapshots.takeSnapshot] Call rsync to take the snapshot
DEBUG: [common/snapshots.py:767 Snapshots.backup] Call command "rsync --recursive --times --devices --specials --hard-links --human-readable -s --links --perms --executability --group --owner --info=progress2 --no-inc-recursive --no-perms --no-group --no-owner --rsh=ssh -o ServerAliveInterval=240 -o LogLevel=Error -o IdentityFile=/home/$USER/.ssh/id_rsa -p 2222 --delete --delete-excluded -v -i --out-format=BACKINTIME: %i %n%L --link-dest=../../20230506-014444-122/backup --chmod=Du+wx --exclude=/home/$USER/.local/share/backintime/mnt/1_44910 --exclude=/home/$USER/.local/share/backintime --exclude=.local/share/backintime/mnt --include=/home/$USER/ --include=/home/ --exclude=.gvfs --exclude=.cache/* --exclude=.thumbnails* --exclude=[Tt]rash* --exclude=*.backup* --exclude=*~ --exclude=.dropbox* --exclude=/proc/* --exclude=/sys/* --exclude=/dev/* --exclude=/run/* --exclude=/etc/mtab --exclude=/var/cache/apt/archives/*.deb --exclude=lost+found/* --exclude=/tmp/* --exclude=/var/tmp/* --exclude=/var/backups/* --exclude=.Private --exclude=/home/$USER/mnt --exclude=/home/$USER/Medien --exclude=/home/$USER/Transfer --exclude=/home/$USER/Share --exclude=/home/$USER/build --include=/home/$USER/** --exclude=* / $USER@192.168.178.XX:/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup"

@buhtz
Copy link
Member

buhtz commented May 14, 2023

I can't see the errors you described. The output looks OK to me.

@Elbchillharmonie
Copy link
Author

They started a bit later and are also in the log:

notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] rename "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200811 AAA/.20200811T143912-NikonD7200_4039.JPG.WUpNTR" -> "home/$USER/Bilder/Fotos/2020/20200811 AAA/20200811T143912-NikonD7200_4039.JPG": No such file or directory (2)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] stat "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200816 XXX/.20200816T081314-NikonD7200_4055.JPG.CyKYwT" failed: No such file or directory (2)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] rename "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200816 XXX/.20200816T081314-NikonD7200_4055.JPG.CyKYwT" -> "home/$USER/Bilder/Fotos/2020/20200816 XXX/20200816T081314-NikonD7200_4055.JPG": No such file or directory (2)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] stat "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200822 YYY/.20200822T165340-NikonD7200_4079.JPG.dY7wrR" failed: No such file or directory (2)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] rename "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200822 YYY/.20200822T165340-NikonD7200_4079.JPG.dY7wrR" -> "home/$USER/Bilder/Fotos/2020/20200822 YYY/20200822T165340-NikonD7200_4079.JPG": No such file or directory (2)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] stat "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200823 ZZZ/.20200823T163530-NikonD7200_4083.JPG.3bpUZU" failed: No such file or directory (2)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] rename "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200823 ZZZ/.20200823T163530-NikonD7200_4083.JPG.3bpUZU" -> "home/$USER/Bilder/Fotos/2020/20200823 ZZZ/20200823T163530-NikonD7200_4083.JPG": No such file or directory (2)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] link "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200814 BBB/20200814T145228-NikonD7200_4051.NEF" => ../../20230506-014444-122/backup/home/$USER/Bilder/Fotos/2020/20200814 BBB/20200814T145228-NikonD7200_4051.NEF failed: File exists (17)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] link "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200816 VVV/20200816T081332-NikonD7200_4058.NEF" => ../../20230506-014444-122/backup/home/$USER/Bilder/Fotos/2020/20200816 VVV/20200816T081332-NikonD7200_4058.NEF failed: File exists (17)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] link "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200816 VVV/20200816T092732-NikonD7200_4061.NEF" => ../../20230506-014444-122/backup/home/$USER/Bilder/Fotos/2020/20200816 VVV/20200816T092732-NikonD7200_4061.NEF failed: File exists (17)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] link "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200816 VVV/20200816T163918-NikonD7200_4069.NEF" => ../../20230506-014444-122/backup/home/$USER/Bilder/Fotos/2020/20200816 VVV/20200816T163918-NikonD7200_4069.NEF failed: File exists (17)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] link "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200816 VVV/20200816T164200-NikonD7200_4077.NEF" => ../../20230506-014444-122/backup/home/$USER/Bilder/Fotos/2020/20200816 VVV/20200816T164200-NikonD7200_4077.NEF failed: File exists (17)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] link "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200822 PPP/20200822T165354-NikonD7200_4080.NEF" => ../../20230506-014444-122/backup/home/$USER/Bilder/Fotos/2020/20200822 PPP/20200822T165354-NikonD7200_4080.NEF failed: File exists (17)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] link "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200823 ZZZ/20200823T163636-NikonD7200_4088.NEF" => ../../20230506-014444-122/backup/home/$USER/Bilder/Fotos/2020/20200823 ZZZ/20200823T163636-NikonD7200_4088.NEF failed: File exists (17)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] link "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200825 QQQ/20200825T183834-NikonD7200_4092.NEF" => ../../20230506-014444-122/backup/home/$USER/Bilder/Fotos/2020/20200825 QQQ/20200825T183834-NikonD7200_4092.NEF failed: File exists (17)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] link "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200825 QQQ/20200825T185752-NikonD7200_4094.NEF" => ../../20230506-014444-122/backup/home/$USER/Bilder/Fotos/2020/20200825 QQQ/20200825T185752-NikonD7200_4094.NEF failed: File exists (17)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] link "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200825 QQQ/20200825T185856-NikonD7200_4096.NEF" => ../../20230506-014444-122/backup/home/$USER/Bilder/Fotos/2020/20200825 QQQ/20200825T185856-NikonD7200_4096.NEF failed: File exists (17)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] link "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200825 QQQ/20200825T190210-NikonD7200_4101.NEF" => ../../20230506-014444-122/backup/home/$USER/Bilder/Fotos/2020/20200825 QQQ/20200825T190210-NikonD7200_4101.NEF failed: File exists (17)
notify-send Back In Time ($USER) : Hauptprofil Error: rsync: [generator] stat "/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup/home/$USER/Bilder/Fotos/2020/20200827 TTT/.20200827T233232-NikonD7200_4104.MOV.judR2Q" failed: No such file or directory (2)

There's a lot more...

@Elbchillharmonie
Copy link
Author

I restarted my computer and after that, backintime automatically deleted "new-snapshot" and the error messages disappeared. However, it still took several hours and backed up approx. 500 GB of files. The issue remains.

@buhtz
Copy link
Member

buhtz commented May 14, 2023

Somehow the permission is modified. That looks like a fact.
But we still don't know why.

But it will give us a good hint to further investigation.

@buhtz buhtz added this to the upcoming release (1.3.4) milestone May 14, 2023
@aryoda
Copy link
Contributor

aryoda commented May 16, 2023

The applied rsync cmd line contains --perms as well as --no-perms, I a not sure which toggle finally wins in rsync then:

DEBUG: [common/snapshots.py:767 Snapshots.backup] Call command "rsync --recursive --times --devices --specials --hard-links --human-readable -s --links --perms --executability --group --owner --info=progress2 --no-inc-recursive --no-perms --no-group --no-owner --rsh=ssh -o ServerAliveInterval=240 -o LogLevel=Error -o IdentityFile=/home/$USER/.ssh/id_rsa -p 2222 --delete --delete-excluded -v -i --out-format=BACKINTIME: %i %n%L --link-dest=../../20230506-014444-122/backup --chmod=Du+wx --exclude=/home/$USER/.local/share/backintime/mnt/1_44910 --exclude=/home/$USER/.local/share/backintime --exclude=.local/share/backintime/mnt --include=/home/$USER/ --include=/home/ --exclude=.gvfs --exclude=.cache/* --exclude=.thumbnails* --exclude=[Tt]rash* --exclude=*.backup* --exclude=*~ --exclude=.dropbox* --exclude=/proc/* --exclude=/sys/* --exclude=/dev/* --exclude=/run/* --exclude=/etc/mtab --exclude=/var/cache/apt/archives/*.deb --exclude=lost+found/* --exclude=/tmp/* --exclude=/var/tmp/* --exclude=/var/backups/* --exclude=.Private --exclude=/home/$USER/mnt --exclude=/home/$USER/Medien --exclude=/home/$USER/Transfer --exclude=/home/$USER/Share --exclude=/home/$USER/build --include=/home/$USER/** --exclude=* / $USER@192.168.178.XX:/media/$ID/home/$USER/Backup/backintime/thinkpad/$USER/1/new_snapshot/backup"

The question is: How did this happen? Should we recognize this when generating the rsync cmd line in BiT?

Somehow the permission is modified. That looks like a fact.

--perms may not result in the same permissions for a new target file because of umasking (see man rsync and man pam_umask):

New files get their "normal" permission bits set to the source file’s permissions masked with the receiving
directory’s default permissions (either the receiving process’s umask, or the permissions specified via the
destination directory’s default ACL)...

(Oversimplified) umask defines the "bit mask" which permissions should be removed from newly created files...

So --no-perms should work for newly backed-up files, but the permissions of existing files in previous snapshots will not be changed potentially causing duplicated files in the different snapshots...

With --perms a sensible change of the umask of the backup target would be necessary to keep the original permissions when using ssh (or changing the mount options if using a mounted target device).

Should we issue a clear warning in the BiT GUI if a user changes a profile from --perms to --no-perms (or vice-verse) to indicate possibly duplicated files (= waste of disk space) together with a link to FAQ?

@buhtz
Copy link
Member

buhtz commented May 16, 2023

The applied rsync cmd line contains --perms as well as --no-perms, I a not sure which toggle finally wins in rsync then:

I was asking this myself. The manpage of rsync tells the latest argument wins.

I need to sit down to understand the rest of the topic. It is hard for me to get that into my head. 😅

@aryoda
Copy link
Contributor

aryoda commented May 16, 2023

...continued...:

The rsync cmd line for taking a snapshot is built in the source code via

rsync_prefix = tools.rsyncPrefix(self.config, no_perms = False)

calling

backintime/common/tools.py

Lines 571 to 592 in 66d248f

def rsyncPrefix(config,
no_perms=True,
use_mode=['ssh', 'ssh_encfs'],
progress=True):
"""
Get rsync command and all args for creating a new snapshot. Args are
based on current profile in ``config``.
Args:
config (config.Config): current config
no_perms (bool): don't sync permissions (--no-p --no-g --no-o)
if ``True``.
:py:func:`config.Config.preserveAcl` == ``True`` or
:py:func:`config.Config.preserveXattr` == ``True``
will overwrite this to ``False``
use_mode (list): if current mode is in this list add additional
args for that mode
progress (bool): add '--info=progress2' to show progress
Returns:
list: rsync command with all args but without
--include, --exclude, source and destination

So --perms is always included I'd guess even if --no-perms is manually added into the bottom-most text field of the expert options.

We should fix this...

Perhaps we could add a "no perms" expert option checkbox and recognize conflicting expert options...

@buhtz
Copy link
Member

buhtz commented May 16, 2023

Do you mean this has an effect on the behavior/bug?

Here is the part of the rsyn manpage explaining the priority of arguments.

@aryoda
Copy link
Contributor

aryoda commented May 16, 2023

Here is the part of the rsyn manpage explaining the priority of arguments.

Looks indeed like the last option wins (even though the example does not directly mention what happens if directly conflicting arguments are used but only if another argument implicitly sets more [here: conflicting] arguments).

Do you mean this has an effect on the behavior/bug?

I'd say: No (for this issue)...

@aryoda
Copy link
Contributor

aryoda commented Jun 13, 2023

@Elbchillharmonie

I restarted my computer and after that, backintime automatically deleted "new-snapshot" and the error messages disappeared. However, it still took several hours and backed up approx. 500 GB of files. The issue remains.

Which photo software are you using? Maybe it updates meta data "in place" when viewing the photos ("last viewed")...
The file content may be same but rsync may recognize a file change in such cases.

Can you discover any pattern in the duplicated backup files...?

@Elbchillharmonie
Copy link
Author

Elbchillharmonie commented Nov 21, 2023

Hi again,

Sorry for the late feedback, but I only found time to dig deeper into this now.

First, I'm using digikam as my photo management software. The option "Write to item and XMP Sidecar" is activated. I assume that every time I write a tag to a photo or any similar operation, the file is considered as updated and backintime would add it to the snapshot. However, this does not explain why a lot of files are backed up every time as I do not change the photos every week or month. The good side of this option is that I can see by checking the date of the side car file (xmp file) when I made the last modification and this does not match with the frequent backups.

I analysed the inodes of the snapshots and I can see two patterns:

  1. Files which change their inode once in a while with a least one change on 2022-09-11 (SEP 2022) after upgrade to bt 1.3.2 and rsync 3.2.6.

  2. Files which change their inode with every snapshot starting with 2021-12-05 (DEC 2021). At that time, I had bt 1.3.1 and rsync 3.2.3 installed.

One thing that caught my eyes is that all changing inodes have "-rwxr-x---" as permissions, while the others have "-rw-r--r--". Could that be an issue?

Please find the output of "ln -ali" for several example files below:

128062254 -rwxr-x--- 2 $USER users 3051727 29. Okt 2006  '$path_to_backup/20210626-090001-430/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
128062254 -rwxr-x--- 2 $USER users 3051727 29. Okt 2006  '$path_to_backup/20210727-221501-577/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
127675954 -rwxr-x--- 4 $USER users 3051727 29. Okt 2006  '$path_to_backup/20210828-144505-116/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
127675954 -rwxr-x--- 4 $USER users 3051727 29. Okt 2006  '$path_to_backup/20210929-213001-765/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
127675954 -rwxr-x--- 4 $USER users 3051727 29. Okt 2006  '$path_to_backup/20211031-131501-272/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
127675954 -rwxr-x--- 4 $USER users 3051727 29. Okt 2006  '$path_to_backup/20211124-214501-658/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
128195464 -rwxr-x--- 1 $USER users 3051727 29. Okt 2006  '$path_to_backup/20211205-225230-337/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
285737632 -rwxr-x--- 1 $USER users 3051727 29. Okt 2006  '$path_to_backup/20220415-101502-997/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
413270056 -rwxr-x--- 1 $USER users 3051727 29. Okt 2006  '$path_to_backup/20220522-181938-367/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
329777192 -rwxr-x--- 1 $USER users 3051727 29. Okt 2006  '$path_to_backup/20220614-220001-235/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
254017538 -rwxr-x--- 1 $USER users 3051727 29. Okt 2006  '$path_to_backup/20220911-175622-688/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
270927889 -rwxr-x--- 1 $USER users 3051727 29. Okt 2006  '$path_to_backup/20221210-153001-484/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
153232597 -rwxr-x--- 1 $USER users 3051727 29. Okt 2006  '$path_to_backup/20221219-085423-136/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
85988464 -rwxr-x--- 1 $USER users 3051727 29. Okt 2006  '$path_to_backup/20221231-171501-355/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
89925474 -rwxr-x--- 1 $USER users 3051727 29. Okt 2006  '$path_to_backup/20230125-210002-891/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
131078361 -rwxr-x--- 1 $USER users 3051727 29. Okt 2006  '$path_to_backup/20230207-153001-333/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
151009930 -rwxr-x--- 1 $USER users 3051727 29. Okt 2006  '$path_to_backup/20230316-204502-517/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
86649181 -rwxr-x--- 1 $USER users 3051727 29. Okt 2006  '$path_to_backup/20230402-221501-210/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
188350465 -rwxr-x--- 1 $USER users 3051727 29. Okt 2006  '$path_to_backup/20230506-014444-122/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'
167247881 -rwxr-x--- 2 $USER users 3051727 29. Okt 2006  '$path_to_backup/20230514-185628-211/backup/home/$USER/Bilder/Fotos/2006/20061029/20061029T183519-CanonDIGITALIXUS60.JPG'


41947954 -rwxr-x--- 2 $USER users 324907 16. Nov 2002  '$path_to_backup/20210626-090001-430/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
41947954 -rwxr-x--- 2 $USER users 324907 16. Nov 2002  '$path_to_backup/20210727-221501-577/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
124791282 -rw-r--r-- 5 $USER users 324907 16. Nov 2002  '$path_to_backup/20210828-144505-116/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
124791282 -rw-r--r-- 5 $USER users 324907 16. Nov 2002  '$path_to_backup/20210929-213001-765/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
124791282 -rw-r--r-- 5 $USER users 324907 16. Nov 2002  '$path_to_backup/20211031-131501-272/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
124791282 -rw-r--r-- 5 $USER users 324907 16. Nov 2002  '$path_to_backup/20211124-214501-658/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
124791282 -rw-r--r-- 5 $USER users 324907 16. Nov 2002  '$path_to_backup/20211205-225230-337/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
169870315 -rw-r--r-- 13 $USER users 325270 16. Nov 2002  '$path_to_backup/20220415-101502-997/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
169870315 -rw-r--r-- 13 $USER users 325270 16. Nov 2002  '$path_to_backup/20220522-181938-367/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
169870315 -rw-r--r-- 13 $USER users 325270 16. Nov 2002  '$path_to_backup/20220614-220001-235/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
169870315 -rw-r--r-- 13 $USER users 325270 16. Nov 2002  '$path_to_backup/20220911-175622-688/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
169870315 -rw-r--r-- 13 $USER users 325270 16. Nov 2002  '$path_to_backup/20221210-153001-484/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
169870315 -rw-r--r-- 13 $USER users 325270 16. Nov 2002  '$path_to_backup/20221219-085423-136/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
169870315 -rw-r--r-- 13 $USER users 325270 16. Nov 2002  '$path_to_backup/20221231-171501-355/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
169870315 -rw-r--r-- 13 $USER users 325270 16. Nov 2002  '$path_to_backup/20230125-210002-891/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
169870315 -rw-r--r-- 13 $USER users 325270 16. Nov 2002  '$path_to_backup/20230207-153001-333/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
169870315 -rw-r--r-- 13 $USER users 325270 16. Nov 2002  '$path_to_backup/20230316-204502-517/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
169870315 -rw-r--r-- 13 $USER users 325270 16. Nov 2002  '$path_to_backup/20230402-221501-210/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
169870315 -rw-r--r-- 13 $USER users 325270 16. Nov 2002  '$path_to_backup/20230506-014444-122/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'
169870315 -rw-r--r-- 13 $USER users 325270 16. Nov 2002  '$path_to_backup/20230514-185628-211/backup//home/$USER/Bilder/Fotos/2002/20021116/20021116T133836-FUJIFILMFinePixA303.jpg'


24123839 -rwxr-x--- 2 $USER users 11351141  1. Mär 2020  '$path_to_backup/20210626-090001-430/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
24123839 -rwxr-x--- 2 $USER users 11351141  1. Mär 2020  '$path_to_backup/20210727-221501-577/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
127741470 -rwxr-x--- 4 $USER users 11351141  1. Mär 2020  '$path_to_backup/20210828-144505-116/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
127741470 -rwxr-x--- 4 $USER users 11351141  1. Mär 2020  '$path_to_backup/20210929-213001-765/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
127741470 -rwxr-x--- 4 $USER users 11351141  1. Mär 2020  '$path_to_backup/20211031-131501-272/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
127741470 -rwxr-x--- 4 $USER users 11351141  1. Mär 2020  '$path_to_backup/20211124-214501-658/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
128260883 -rwxr-x--- 1 $USER users 11351141  1. Mär 2020  '$path_to_backup/20211205-225230-337/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
301465789 -rwxr-x--- 1 $USER users 11351141  1. Mär 2020  '$path_to_backup/20220415-101502-997/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
425066694 -rwxr-x--- 1 $USER users 11351141  1. Mär 2020  '$path_to_backup/20220522-181938-367/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
334889423 -rwxr-x--- 1 $USER users 11351141  1. Mär 2020  '$path_to_backup/20220614-220001-235/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
258640232 -rwxr-x--- 1 $USER users 11351141  1. Mär 2020  '$path_to_backup/20220911-175622-688/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
375914553 -rwxr-x--- 1 $USER users 11351141  1. Mär 2020  '$path_to_backup/20221210-153001-484/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
153628491 -rwxr-x--- 1 $USER users 11351141  1. Mär 2020  '$path_to_backup/20221219-085423-136/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
86256562 -rwxr-x--- 1 $USER users 11351141  1. Mär 2020  '$path_to_backup/20221231-171501-355/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
97520862 -rwxr-x--- 1 $USER users 11351141  1. Mär 2020  '$path_to_backup/20230125-210002-891/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
131473792 -rwxr-x--- 1 $USER users 11351141  1. Mär 2020  '$path_to_backup/20230207-153001-333/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
151281737 -rwxr-x--- 1 $USER users 11351141  1. Mär 2020  '$path_to_backup/20230316-204502-517/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
85078839 -rwxr-x--- 1 $USER users 11351141  1. Mär 2020  '$path_to_backup/20230402-221501-210/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
192458629 -rwxr-x--- 1 $USER users 11351141  1. Mär 2020  '$path_to_backup/20230506-014444-122/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'
174894835 -rwxr-x--- 2 $USER users 11351141  1. Mär 2020  '$path_to_backup/20230514-185628-211/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.JPG'


24123841 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20210626-090001-430/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
24123841 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20210727-221501-577/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
24123841 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20210828-144505-116/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
24123841 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20210929-213001-765/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
24123841 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20211031-131501-272/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
24123841 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20211124-214501-658/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
24123841 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20211205-225230-337/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
24123841 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20220415-101502-997/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
24123841 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20220522-181938-367/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
24123841 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20220614-220001-235/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
258640234 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20220911-175622-688/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
258640234 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20221210-153001-484/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
258640234 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20221219-085423-136/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
258640234 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20221231-171501-355/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
258640234 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20230125-210002-891/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
258640234 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20230207-153001-333/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
258640234 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20230316-204502-517/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
258640234 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20230402-221501-210/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
258640234 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20230506-014444-122/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'
258640234 -rw-r--r-- 10 $USER users 21967816  1. Mär 2020  '$path_to_backup/20230514-185628-211/backup//home/$USER/Bilder/Fotos/2020/20200301/20200301T082236-NikonD7200_1852.NEF'


23341568 -rwxr-x--- 2 $USER users 16031712 14. Mai 2020  '$path_to_backup/20210626-090001-430/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
23341568 -rwxr-x--- 2 $USER users 16031712 14. Mai 2020  '$path_to_backup/20210727-221501-577/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
127742772 -rwxr-x--- 4 $USER users 16031712 14. Mai 2020  '$path_to_backup/20210828-144505-116/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
127742772 -rwxr-x--- 4 $USER users 16031712 14. Mai 2020  '$path_to_backup/20210929-213001-765/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
127742772 -rwxr-x--- 4 $USER users 16031712 14. Mai 2020  '$path_to_backup/20211031-131501-272/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
127742772 -rwxr-x--- 4 $USER users 16031712 14. Mai 2020  '$path_to_backup/20211124-214501-658/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
128262319 -rwxr-x--- 1 $USER users 16031712 14. Mai 2020  '$path_to_backup/20211205-225230-337/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
302252075 -rwxr-x--- 1 $USER users 16031712 14. Mai 2020  '$path_to_backup/20220415-101502-997/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
425853129 -rwxr-x--- 1 $USER users 16031712 14. Mai 2020  '$path_to_backup/20220522-181938-367/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
334890783 -rwxr-x--- 1 $USER users 16031712 14. Mai 2020  '$path_to_backup/20220614-220001-235/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
258642479 -rwxr-x--- 1 $USER users 16031712 14. Mai 2020  '$path_to_backup/20220911-175622-688/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
376045950 -rwxr-x--- 1 $USER users 16031712 14. Mai 2020  '$path_to_backup/20221210-153001-484/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
153629886 -rwxr-x--- 1 $USER users 16031712 14. Mai 2020  '$path_to_backup/20221219-085423-136/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
86257956 -rwxr-x--- 1 $USER users 16031712 14. Mai 2020  '$path_to_backup/20221231-171501-355/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
97522208 -rwxr-x--- 1 $USER users 16031712 14. Mai 2020  '$path_to_backup/20230125-210002-891/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
131475138 -rwxr-x--- 1 $USER users 16031712 14. Mai 2020  '$path_to_backup/20230207-153001-333/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
151283096 -rwxr-x--- 1 $USER users 16031712 14. Mai 2020  '$path_to_backup/20230316-204502-517/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
85602786 -rwxr-x--- 1 $USER users 16031712 14. Mai 2020  '$path_to_backup/20230402-221501-210/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
192459975 -rwxr-x--- 1 $USER users 16031712 14. Mai 2020  '$path_to_backup/20230506-014444-122/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'
174981841 -rwxr-x--- 2 $USER users 16031712 14. Mai 2020  '$path_to_backup/20230514-185628-211/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.JPG'


23341570 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20210626-090001-430/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
23341570 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20210727-221501-577/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
23341570 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20210828-144505-116/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
23341570 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20210929-213001-765/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
23341570 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20211031-131501-272/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
23341570 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20211124-214501-658/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
23341570 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20211205-225230-337/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
23341570 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20220415-101502-997/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
23341570 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20220522-181938-367/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
23341570 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20220614-220001-235/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
258642481 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20220911-175622-688/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
258642481 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20221210-153001-484/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
258642481 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20221219-085423-136/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
258642481 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20221231-171501-355/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
258642481 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20230125-210002-891/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
258642481 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20230207-153001-333/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
258642481 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20230316-204502-517/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
258642481 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20230402-221501-210/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
258642481 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20230506-014444-122/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'
258642481 -rw-r--r-- 10 $USER users 24881785 14. Mai 2020  '$path_to_backup/20230514-185628-211/backup/home/$USER/Bilder/Fotos/2020/20200514/20200514T172030-NikonD7200_2734.NEF'


23351266 -rwxr-x--- 2 $USER users 10998058  8. Feb 2021  '$path_to_backup/20210626-090001-430/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
23351266 -rwxr-x--- 2 $USER users 10998058  8. Feb 2021  '$path_to_backup/20210727-221501-577/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
127807293 -rwxr-x--- 4 $USER users 10998058  8. Feb 2021  '$path_to_backup/20210828-144505-116/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
127807293 -rwxr-x--- 4 $USER users 10998058  8. Feb 2021  '$path_to_backup/20210929-213001-765/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
127807293 -rwxr-x--- 4 $USER users 10998058  8. Feb 2021  '$path_to_backup/20211031-131501-272/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
127807293 -rwxr-x--- 4 $USER users 10998058  8. Feb 2021  '$path_to_backup/20211124-214501-658/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
128326419 -rwxr-x--- 1 $USER users 10998058  8. Feb 2021  '$path_to_backup/20211205-225230-337/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
305266825 -rwxr-x--- 1 $USER users 10998058  8. Feb 2021  '$path_to_backup/20220415-101502-997/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
428867721 -rwxr-x--- 1 $USER users 10998058  8. Feb 2021  '$path_to_backup/20220522-181938-367/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
335023929 -rwxr-x--- 1 $USER users 10998058  8. Feb 2021  '$path_to_backup/20220614-220001-235/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
258651030 -rwxr-x--- 1 $USER users 10998058  8. Feb 2021  '$path_to_backup/20220911-175622-688/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
272368951 -rwxr-x--- 1 $USER users 10998058  8. Feb 2021  '$path_to_backup/20221210-153001-484/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
153636160 -rwxr-x--- 1 $USER users 10998058  8. Feb 2021  '$path_to_backup/20221219-085423-136/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
86264124 -rwxr-x--- 1 $USER users 10998058  8. Feb 2021  '$path_to_backup/20221231-171501-355/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
97528244 -rwxr-x--- 1 $USER users 10998058  8. Feb 2021  '$path_to_backup/20230125-210002-891/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
131481112 -rwxr-x--- 1 $USER users 10998058  8. Feb 2021  '$path_to_backup/20230207-153001-333/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
151388506 -rwxr-x--- 1 $USER users 10998058  8. Feb 2021  '$path_to_backup/20230316-204502-517/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
87035453 -rwxr-x--- 1 $USER users 10998058  8. Feb 2021  '$path_to_backup/20230402-221501-210/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
186778263 -rwxr-x--- 1 $USER users 10998058  8. Feb 2021  '$path_to_backup/20230506-014444-122/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'
174987919 -rwxr-x--- 2 $USER users 10998058  8. Feb 2021  '$path_to_backup/20230514-185628-211/backup/home/$USER/Bilder/Fotos/2021/20210208/20210208T100454-NikonD7200_6208.JPG'


41949993 -rw-r--r-- 7 $USER users 314044 27. Dez 2003  '$path_to_backup/20210626-090001-430/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
41949993 -rw-r--r-- 7 $USER users 314044 27. Dez 2003  '$path_to_backup/20210727-221501-577/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
41949993 -rw-r--r-- 7 $USER users 314044 27. Dez 2003  '$path_to_backup/20210828-144505-116/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
41949993 -rw-r--r-- 7 $USER users 314044 27. Dez 2003  '$path_to_backup/20210929-213001-765/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
41949993 -rw-r--r-- 7 $USER users 314044 27. Dez 2003  '$path_to_backup/20211031-131501-272/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
41949993 -rw-r--r-- 7 $USER users 314044 27. Dez 2003  '$path_to_backup/20211124-214501-658/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
41949993 -rw-r--r-- 7 $USER users 314044 27. Dez 2003  '$path_to_backup/20211205-225230-337/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/20220415-101502-997/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/20220522-181938-367/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/20220614-220001-235/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/20220911-175622-688/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/20221210-153001-484/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/20221219-085423-136/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/20221231-171501-355/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/20230125-210002-891/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/20230207-153001-333/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/20230316-204502-517/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/20230402-221501-210/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/20230506-014444-122/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/20230514-185628-211/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'
169871438 -rw-r--r-- 13 $USER users 314381 27. Dez 2003  '$path_to_backup/last_snapshot/backup/home/$USER/Bilder/Fotos/2003/20031227/20031227T205057-FUJIFILMFinePixA303.jpg'


41955565 -rwxr-x--- 2 $USER users 2765318 17. Aug 2006  '$path_to_backup/20210626-090001-430/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
41955565 -rwxr-x--- 2 $USER users 2765318 17. Aug 2006  '$path_to_backup/20210727-221501-577/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
127675184 -rwxr-x--- 4 $USER users 2765318 17. Aug 2006  '$path_to_backup/20210828-144505-116/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
127675184 -rwxr-x--- 4 $USER users 2765318 17. Aug 2006  '$path_to_backup/20210929-213001-765/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
127675184 -rwxr-x--- 4 $USER users 2765318 17. Aug 2006  '$path_to_backup/20211031-131501-272/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
127675184 -rwxr-x--- 4 $USER users 2765318 17. Aug 2006  '$path_to_backup/20211124-214501-658/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
128194694 -rwxr-x--- 1 $USER users 2765318 17. Aug 2006  '$path_to_backup/20211205-225230-337/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
285607802 -rwxr-x--- 1 $USER users 2765318 17. Aug 2006  '$path_to_backup/20220415-101502-997/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
413140439 -rwxr-x--- 1 $USER users 2765318 17. Aug 2006  '$path_to_backup/20220522-181938-367/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
329647359 -rwxr-x--- 1 $USER users 2765318 17. Aug 2006  '$path_to_backup/20220614-220001-235/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
253887731 -rwxr-x--- 1 $USER users 2765318 17. Aug 2006  '$path_to_backup/20220911-175622-688/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
270927103 -rwxr-x--- 1 $USER users 2765318 17. Aug 2006  '$path_to_backup/20221210-153001-484/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
153231811 -rwxr-x--- 1 $USER users 2765318 17. Aug 2006  '$path_to_backup/20221219-085423-136/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
85987678 -rwxr-x--- 1 $USER users 2765318 17. Aug 2006  '$path_to_backup/20221231-171501-355/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
89924687 -rwxr-x--- 1 $USER users 2765318 17. Aug 2006  '$path_to_backup/20230125-210002-891/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
131077590 -rwxr-x--- 1 $USER users 2765318 17. Aug 2006  '$path_to_backup/20230207-153001-333/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
151009159 -rwxr-x--- 1 $USER users 2765318 17. Aug 2006  '$path_to_backup/20230316-204502-517/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
86380502 -rwxr-x--- 1 $USER users 2765318 17. Aug 2006  '$path_to_backup/20230402-221501-210/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
188219586 -rwxr-x--- 1 $USER users 2765318 17. Aug 2006  '$path_to_backup/20230506-014444-122/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
167116977 -rwxr-x--- 2 $USER users 2765318 17. Aug 2006  '$path_to_backup/20230514-185628-211/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'
167116977 -rwxr-x--- 2 $USER users 2765318 17. Aug 2006  '$path_to_backup/last_snapshot/backup/home/$USER/Bilder/Fotos/2006/20060817/20060817T130728-CanonDIGITALIXUS60.JPG'


125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20171125-205048-877/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20181226-141502-780/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20190828-203002-958/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20190928-171502-641/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20191116-201502-653/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20200227-090001-223/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20200331-160001-879/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20200425-140001-107/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20200528-111501-915/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20200617-144502-743/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20200727-211502-398/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20200827-204501-402/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20200927-133050-286/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20201031-120001-461/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20201130-210001-377/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20201230-101502-536/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20210129-110001-350/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20210227-223002-115/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20210327-101501-138/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20210422-101502-667/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20210530-140001-699/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20210626-090001-430/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20210727-221501-577/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20210828-144505-116/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20210929-213001-765/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20211031-131501-272/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20211124-214501-658/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20211205-225230-337/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20220415-101502-997/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20220522-181938-367/backup/home/$USER/Bilder/Screenshots/Ex1.png
125309619 -rw-r--r-- 31 $USER users 406027 20. Jul 2016  $path_to_backup/20220614-220001-235/backup/home/$USER/Bilder/Screenshots/Ex1.png
257034061 -rw-r--r-- 10 $USER users 406027 20. Jul 2016  $path_to_backup/20220911-175622-688/backup/home/$USER/Bilder/Screenshots/Ex1.png
257034061 -rw-r--r-- 10 $USER users 406027 20. Jul 2016  $path_to_backup/20221210-153001-484/backup/home/$USER/Bilder/Screenshots/Ex1.png
257034061 -rw-r--r-- 10 $USER users 406027 20. Jul 2016  $path_to_backup/20221219-085423-136/backup/home/$USER/Bilder/Screenshots/Ex1.png
257034061 -rw-r--r-- 10 $USER users 406027 20. Jul 2016  $path_to_backup/20221231-171501-355/backup/home/$USER/Bilder/Screenshots/Ex1.png
257034061 -rw-r--r-- 10 $USER users 406027 20. Jul 2016  $path_to_backup/20230125-210002-891/backup/home/$USER/Bilder/Screenshots/Ex1.png
257034061 -rw-r--r-- 10 $USER users 406027 20. Jul 2016  $path_to_backup/20230207-153001-333/backup/home/$USER/Bilder/Screenshots/Ex1.png
257034061 -rw-r--r-- 10 $USER users 406027 20. Jul 2016  $path_to_backup/20230316-204502-517/backup/home/$USER/Bilder/Screenshots/Ex1.png
257034061 -rw-r--r-- 10 $USER users 406027 20. Jul 2016  $path_to_backup/20230402-221501-210/backup/home/$USER/Bilder/Screenshots/Ex1.png
257034061 -rw-r--r-- 10 $USER users 406027 20. Jul 2016  $path_to_backup/20230506-014444-122/backup/home/$USER/Bilder/Screenshots/Ex1.png
257034061 -rw-r--r-- 10 $USER users 406027 20. Jul 2016  $path_to_backup/20230514-185628-211/backup/home/$USER/Bilder/Screenshots/Ex1.png


125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20171125-205048-877/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20181226-141502-780/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20190828-203002-958/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20190928-171502-641/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20191116-201502-653/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20200227-090001-223/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20200331-160001-879/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20200425-140001-107/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20200528-111501-915/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20200617-144502-743/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20200727-211502-398/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20200827-204501-402/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20200927-133050-286/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20201031-120001-461/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20201130-210001-377/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20201230-101502-536/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20210129-110001-350/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20210227-223002-115/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20210327-101501-138/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20210422-101502-667/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20210530-140001-699/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20210626-090001-430/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20210727-221501-577/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20210828-144505-116/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20210929-213001-765/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20211031-131501-272/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20211124-214501-658/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20211205-225230-337/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20220415-101502-997/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20220522-181938-367/backup/home/$USER/Bilder/Screenshots/Ex2.png
125309611 -rwxr-xr-x 31 $USER users 1291011 19. Aug 2001  $path_to_backup/20220614-220001-235/backup/home/$USER/Bilder/Screenshots/Ex2.png
257034053 -rwxr-xr-x 10 $USER users 1291011 19. Aug 2001  $path_to_backup/20220911-175622-688/backup/home/$USER/Bilder/Screenshots/Ex2.png
257034053 -rwxr-xr-x 10 $USER users 1291011 19. Aug 2001  $path_to_backup/20221210-153001-484/backup/home/$USER/Bilder/Screenshots/Ex2.png
257034053 -rwxr-xr-x 10 $USER users 1291011 19. Aug 2001  $path_to_backup/20221219-085423-136/backup/home/$USER/Bilder/Screenshots/Ex2.png
257034053 -rwxr-xr-x 10 $USER users 1291011 19. Aug 2001  $path_to_backup/20221231-171501-355/backup/home/$USER/Bilder/Screenshots/Ex2.png
257034053 -rwxr-xr-x 10 $USER users 1291011 19. Aug 2001  $path_to_backup/20230125-210002-891/backup/home/$USER/Bilder/Screenshots/Ex2.png
257034053 -rwxr-xr-x 10 $USER users 1291011 19. Aug 2001  $path_to_backup/20230207-153001-333/backup/home/$USER/Bilder/Screenshots/Ex2.png
257034053 -rwxr-xr-x 10 $USER users 1291011 19. Aug 2001  $path_to_backup/20230316-204502-517/backup/home/$USER/Bilder/Screenshots/Ex2.png
257034053 -rwxr-xr-x 10 $USER users 1291011 19. Aug 2001  $path_to_backup/20230402-221501-210/backup/home/$USER/Bilder/Screenshots/Ex2.png
257034053 -rwxr-xr-x 10 $USER users 1291011 19. Aug 2001  $path_to_backup/20230506-014444-122/backup/home/$USER/Bilder/Screenshots/Ex2.png
257034053 -rwxr-xr-x 10 $USER users 1291011 19. Aug 2001  $path_to_backup/20230514-185628-211/backup/home/$USER/Bilder/Screenshots/Ex2.png


41954218 -rwxr-x--- 2 $USER users 1094363 22. Mär 2006  '$path_to_backup/20210626-090001-430/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
41954218 -rwxr-x--- 2 $USER users 1094363 22. Mär 2006  '$path_to_backup/20210727-221501-577/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
127674158 -rwxr-x--- 4 $USER users 1094363 22. Mär 2006  '$path_to_backup/20210828-144505-116/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
127674158 -rwxr-x--- 4 $USER users 1094363 22. Mär 2006  '$path_to_backup/20210929-213001-765/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
127674158 -rwxr-x--- 4 $USER users 1094363 22. Mär 2006  '$path_to_backup/20211031-131501-272/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
127674158 -rwxr-x--- 4 $USER users 1094363 22. Mär 2006  '$path_to_backup/20211124-214501-658/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
128193591 -rwxr-x--- 1 $USER users 1094363 22. Mär 2006  '$path_to_backup/20211205-225230-337/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
285606744 -rwxr-x--- 1 $USER users 1094363 22. Mär 2006  '$path_to_backup/20220415-101502-997/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
413139381 -rwxr-x--- 1 $USER users 1094363 22. Mär 2006  '$path_to_backup/20220522-181938-367/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
329646301 -rwxr-x--- 1 $USER users 1094363 22. Mär 2006  '$path_to_backup/20220614-220001-235/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
253886685 -rwxr-x--- 1 $USER users 1094363 22. Mär 2006  '$path_to_backup/20220911-175622-688/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
270926045 -rwxr-x--- 1 $USER users 1094363 22. Mär 2006  '$path_to_backup/20221210-153001-484/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
153230631 -rwxr-x--- 1 $USER users 1094363 22. Mär 2006  '$path_to_backup/20221219-085423-136/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
85986618 -rwxr-x--- 1 $USER users 1094363 22. Mär 2006  '$path_to_backup/20221231-171501-355/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
89923346 -rwxr-x--- 1 $USER users 1094363 22. Mär 2006  '$path_to_backup/20230125-210002-891/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
131076559 -rwxr-x--- 1 $USER users 1094363 22. Mär 2006  '$path_to_backup/20230207-153001-333/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
151008128 -rwxr-x--- 1 $USER users 1094363 22. Mär 2006  '$path_to_backup/20230316-204502-517/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
86148042 -rwxr-x--- 1 $USER users 1094363 22. Mär 2006  '$path_to_backup/20230402-221501-210/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
187957271 -rwxr-x--- 1 $USER users 1094363 22. Mär 2006  '$path_to_backup/20230506-014444-122/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'
166854822 -rwxr-x--- 2 $USER users 1094363 22. Mär 2006  '$path_to_backup/20230514-185628-211/backup/home/$USER/Bilder/Fotos/2006/20060322/20060322T111902-FUJIFILMFinePixA303.jpg'

My version history of bt and rsync:

[..]
[2018-07-22 10:51] [ALPM] upgraded backintime (1.1.20-1 -> 1.1.24-1)
[2021-10-26T21:38:08+0200] [ALPM] upgraded backintime-cli (1.2.1-1 -> 1.3.1-3)
[2021-10-26T21:38:08+0200] [ALPM] upgraded backintime (1.2.1-1 -> 1.3.1-3)
[2022-01-03T19:22:42+0100] [ALPM] upgraded backintime-cli (1.3.1-3 -> 1.3.1-4)
[2022-09-11T17:42:36+0200] [ALPM] upgraded backintime-cli (1.3.1-4 -> 1.3.2-2)
[2022-09-11T17:42:36+0200] [ALPM] upgraded backintime (1.3.1-3 -> 1.3.2-2)
[2022-12-30T11:51:20+0100] [ALPM] upgraded backintime-git (1.3.2.r126.g3a56a4cf-1 -> 1.3.2.r127.g8495f9dc-1)
[2023-05-14T11:50:42+0200] [ALPM] upgraded backintime-cli-git (1.3.2.r126.g3a56a4cf-1 -> 1.3.3.r11.g66d248fe-1)
[2023-05-14T11:50:42+0200] [ALPM] upgraded backintime-git (1.3.2.r127.g8495f9dc-1 -> 1.3.3.r11.g66d248fe-1)

[..]
[2018-02-18 14:02] [ALPM] upgraded rsync (3.1.3pre1-1 -> 3.1.3-1)
[2020-02-04T23:00:30+0100] [ALPM] upgraded rsync (3.1.3-1 -> 3.1.3-3)
[2020-07-16T07:43:56+0200] [ALPM] upgraded rsync (3.1.3-3 -> 3.2.2-2)
[2020-10-02T22:50:26+0200] [ALPM] upgraded rsync (3.2.2-2 -> 3.2.3-1)
[2020-12-24T14:31:44+0100] [ALPM] upgraded rsync (3.2.3-1 -> 3.2.3-2)
[2021-05-13T14:44:36+0200] [ALPM] upgraded rsync (3.2.3-2 -> 3.2.3-3)
[2021-08-02T21:55:18+0200] [ALPM] upgraded rsync (3.2.3-3 -> 3.2.3-4)
[2022-06-28T22:33:04+0200] [ALPM] upgraded rsync (3.2.3-4 -> 3.2.4-1)
[2022-09-11T17:28:54+0200] [ALPM] upgraded rsync (3.2.4-1 -> 3.2.6-1)
[2022-10-02T16:21:32+0200] [ALPM] upgraded rsync (3.2.6-1 -> 3.2.6-2)
[2022-11-16T13:59:00+0100] [ALPM] upgraded rsync (3.2.6-2 -> 3.2.7-2)
[2022-12-30T11:47:13+0100] [ALPM] upgraded rsync (3.2.7-2 -> 3.2.7-3)
[2023-05-05T22:10:40+0200] [ALPM] upgraded rsync (3.2.7-3 -> 3.2.7-4)
[2023-09-27T22:14:02+0200] [ALPM] upgraded rsync (3.2.7-4 -> 3.2.7-6)

@emtiu
Copy link
Member

emtiu commented Nov 22, 2023

Thanks for your patience and comprehensive analysis!

One thing that caught my eyes is that all changing inodes have "-rwxr-x---" as permissions, while the others have "-rw-r--r--". Could that be an issue?

I'm quite sure this is the root of the problem. It's the same bug/misbehavior as in #994.

We're working on it, but it's a tricky one, I'm afraid …

@Miq1
Copy link

Miq1 commented Apr 4, 2024

I found that commenting out the "--executability" in tools.py (about at line 899 in the 1.4.1 code) plus addition of the "--no-perms" option solved my problem with the excess copies. I can live with that, but is of course is no clean solution.

There seems to be an incomplete implementation of a boolean "no_perms" value internally, that could do what the name implies, but it is

  • neither read nor written from/to the config file
  • not accessible from the GUI
  • is used internally with a fixed "no_perms=False" in calls to the rsync parameter setup.

@buhtz
Copy link
Member

buhtz commented Apr 4, 2024

Sounds like a hot trail ... 🔥

@buhtz buhtz removed this from the Upcoming release (1.5.0) milestone Jun 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

5 participants