bit-team / backintime

Back In Time - An easy-to-use backup tool for GNU Linux using rsync in the back
https://backintime.readthedocs.io
GNU General Public License v2.0
2.01k stars 197 forks source link

Error when backing up. Error: rsync: [generator] chgrp "..." failed: Invalid argument (22) #1373

Closed mdjojm closed 1 year ago

mdjojm commented 1 year ago

Here is the full error [E] Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.battery_bench.txt.gqpOxS" failed: Invalid argument (22)

It seems to happen with every file in a folder that starts with a ".".

This is weird to me because this has never happened till now I have uninstalled and reinstalled and compiled from source and the problem remains.

I am backing up to my nas running truenas using nfs from my pc running linux Mint Cinnamon version 5.4.12.

buhtz commented 1 year ago

Dear @mdjojm ,

thank you for your report. I have an idea what the problem could be.

Before you try something please explain to us ""reinstalled and compiled from source". Where you you get BIT from? The package repository of your Distro? One of the release in our GitHub account? Or do you clone our GitHub repo?

Which distribution you are using?

Please try this commands and show us the output. Maybe not all of them will work. Don't worry.

Depending on your error my assumption is you are using BIT 1.3.2 or earlier with rsync 2.3.4 or newer. If that is the case you can use a workaround. Look in the Expert Options of your snapshot and add --old-args as additional options to rsync.

The background of your problem is described in https://github.com/bit-team/backintime#incompatibility-with-rsync--324 and

1247

aryoda commented 1 year ago

It seems to happen with every file in a folder that starts with a ".".

This could be shell globbing issue (eg. *) in the rsync args.

@mdjojm Please also show us the output of backintime --debug backup with the actual rsync arguments, it start with output similar to this:

DEBUG: [common/snapshots.py:767 Snapshots.backup] Call command "rsync ...

Edit: The output shopt dotglob would also be helpful

mdjojm commented 1 year ago

Dear @mdjojm ,

thank you for your report. I have an idea what the problem could be.

Before you try something please explain to us ""reinstalled and compiled from source". Where you you get BIT from? The package repository of your Distro? One of the release in our GitHub account? Or do you clone our GitHub repo?

I cloned the GitHub repo.

Which distribution you are using?

I am using linux Mint Cinnamon version 5.4.12.

* `backintime --diagnostics`

WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited WARNING: D-Bus message: Launch helper exited with unknown return code 1 WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure { "backintime": { "name": "Back In Time", "version": "1.3.3-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": false }, "host-setup": { "platform": "Linux-5.15.0-50-generic-x86_64-with-glibc2.35", "system": "Linux #56-Ubuntu SMP Tue Sep 20 13:23:26 UTC 2022", "os-release": { "NAME": "Linux Mint", "ID": "linuxmint", "PRETTY_NAME": "Linux Mint 21", "VERSION": "21 (Vanessa)", "ID_LIKE": "ubuntu debian", "VERSION_ID": "21", "HOME_URL": "https://www.linuxmint.com/", "SUPPORT_URL": "https://forums.linuxmint.com/", "BUG_REPORT_URL": "http://linuxmint-troubleshooting-guide.readthedocs.io/en/latest/", "PRIVACY_POLICY_URL": "https://www.linuxmint.com/", "VERSION_CODENAME": "vanessa", "UBUNTU_CODENAME": "jammy" }, "display-system": "x11", "locale": "en_US, UTF-8", "PATH": "/home/UsernameReplaced/.local/bin:/home/UsernameReplaced/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/UsernameReplaced/mycroft-core/bin", "RSYNC_OLD_ARGS": "(not set)", "RSYNC_PROTECT_ARGS": "(not set)" }, "python-setup": { "python": "3.10.6 main Nov 2 2022 18:53:38 CPython GCC 11.3.0", "python-executable": "/usr/bin/python3", "python-executable-symlink": true, "python-executable-resolved": "/usr/bin/python3.10", "sys.path": [ "/usr/share/backintime/qt/plugins", "/usr/share/backintime/common/plugins", "/usr/share/backintime/plugins", "/usr/share/backintime/common", "/usr/lib/python310.zip", "/usr/lib/python3.10", "/usr/lib/python3.10/lib-dynload", "/usr/local/lib/python3.10/dist-packages", "/usr/lib/python3/dist-packages", "/usr/lib/python3.10/dist-packages" ], "qt": "PyQt 5.15.6 / Qt 5.15.3" }, "external-programs": { "rsync": "3.2.3", "ssh": "OpenSSH_8.9p1 Ubuntu-3, OpenSSL 3.0.2 15 Mar 2022", "sshfs": "(no sshfs)", "encfs": "(no encfs)", "shell": "/bin/bash", "shell-version": "GNU bash, version 5.1.16(1)-release (x86_64-pc-linux-gnu)" } }

* `backintime --version`

backintime 1.3.3-dev

* `rsync --version` or `rsync -V` or `rsync --VV` (one of them should work)

rsync version 3.2.3 protocol version 31 Copyright (C) 1996-2020 by Andrew Tridgell, Wayne Davison, and others. Web site: https://rsync.samba.org/ Capabilities: 64-bit files, 64-bit inums, 64-bit timestamps, 64-bit long ints, socketpairs, hardlinks, hardlink-specials, symlinks, IPv6, atimes, batchfiles, inplace, append, ACLs, xattrs, optional protect-args, iconv, symtimes, prealloc, stop-at, no crtimes Optimizations: SIMD, no asm, openssl-crypto Checksum list: xxh128 xxh3 xxh64 (xxhash) md5 md4 none Compress list: zstd lz4 zlibx zlib none

Depending on your error my assumption is you are using BIT 1.3.2 or earlier with rsync 2.3.4 or newer. If that is the case you can use a workaround. Look in the Expert Options of your snapshot and add --old-args as additional options to rsync.

The background of your problem is described in https://github.com/bit-team/backintime#incompatibility-with-rsync--324 and #1247

buhtz commented 1 year ago

Thanks for your report. Depending on your initial error message and the fact that you are using rsync 3.2.3 I would say your problem is not caused by #1247. The cause of the problem could be totally different. Or it could be a side-effect introduced by my PR #1351 fixing #1247.

What type of snapshot profile is this?

If you can reproduce the problem, please start backintime-qt --debug in a terminal, try to create that snapshot and give us the full terminal output. Please try to post the output here formatted as code because it improves readability.

After that I would ask if you could install the last stable release 1.3.2 of BIT and if the problem is reproducible with it, too?

EDIT: Please let me add some more questions you partly have answered but I need to be sure about that points:

A shot into the blue Your destination (snapshot folder) is NTFS filesystem. An answer on "Unix & Linux" state that the ' character (part of your path: JOJM'S BASE) is illegal. But on the other side I have no problems to create a folder named JOJM'S BASE on my Windows 10 machine. 😕

aryoda commented 1 year ago

WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited WARNING: D-Bus message: Launch helper exited with unknown return code 1 WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure

ChildExited did also occur in https://github.com/bit-team/backintime/issues/1233#issuecomment-1238625172 but there was no way to reproduce it.

I think this is not the root problem here since it affects only udev configs but I will put this on my TODO list... I need more details for this (= I am waiting for the --debug output here).

aryoda commented 1 year ago

Regarding

WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited

I assume that the installation from Github is correct (configure/make/make install) for both common and qt folder.

Q1: What does the make test in the common folder show (I'd expect some failing unit tests)?

The best guess so far is missing dependencies (we had some undocumented dependencies in the past).

Q2: Co could you please check if all of the documented packages are installed and check if the warning still appears with backintime --diagnostics?

https://github.com/bit-team/backintime#from-sources

esp. the D-Bus-relevant ones

mdjojm commented 1 year ago

Thanks for your report. Depending on your initial error message and the fact that you are using rsync 3.2.3 I would say your problem is not caused by #1247. The cause of the problem could be totally different. Or it could be a side-effect introduced by my PR #1351 fixing #1247.

What type of snapshot profile is this?

* local

* local encrypted

* SSH

* SSH encrypted

I have it as local at the moment

If you can reproduce the problem, please start backintime-qt --debug in a terminal, try to create that snapshot and give us the full terminal output. Please try to post the output here formatted as code because it improves readability.

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

Back In Time Version: 1.3.3-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.

WARNING: [common/tools.py:1906 __init__] Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: [common/tools.py:1907 __init__] D-Bus message: Launch helper exited with unknown return code 1
WARNING: [common/tools.py:1908 __init__] Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
DEBUG: [common/backintime.py:677 getConfig] config file: /home/joe/.config/backintime/config
DEBUG: [common/backintime.py:678 getConfig] share path: /home/joe/.local/share/backintime
DEBUG: [common/backintime.py:679 getConfig] profiles: 1=Main profile, 2=ipod, 3=hdd2, 4=Google Photos
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=qt5ct
DEBUG: [qt/qttools.py:178 createQApplication] QT_STYLE_OVERRIDE=<not set>
DEBUG: [qt/qttools.py:179 createQApplication] QT active style: qt5ct-style
DEBUG: [qt/qttools.py:180 createQApplication] QT fallback style: 
DEBUG: [qt/qttools.py:181 createQApplication] QT supported styles: ['cleanlooks', 'gtk2', 'cde', 'motif', 'plastique', 'qt5ct-style', 'Windows', 'Fusion']
DEBUG: [qt/qttools.py:182 createQApplication] themeSearchPaths: ['/home/joe/.local/share/icons', '/usr/share/cinnamon/icons', '/var/lib/flatpak/exports/share/icons', '/usr/local/share/icons', '/usr/share/icons', '/var/lib/snapd/desktop/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/tools.py:862 keyringSupported] Available keyring backends:
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.kwallet.DBusKeyring (priority: 4.9)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.fail.Keyring (priority: 0)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.libsecret.Keyring (priority: 4.8)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.chainer.ChainerBackend (priority: 10)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.SecretService.Keyring (priority: 5)
DEBUG: [common/tools.py:878 keyringSupported] Metaclass keyring.backends.Gnome.Keyring not found: AttributeError("module 'keyring.backends' has no attribute 'Gnome'")
DEBUG: [common/tools.py:880 keyringSupported] Metaclass keyring.backends.kwallet.Keyring not found: AttributeError("module 'keyring.backends.kwallet' has no attribute 'Keyring'")
DEBUG: [common/tools.py:884 keyringSupported] Metaclass keyring.backend.SecretServiceKeyring not found: AttributeError("module 'keyring.backend' has no attribute 'SecretServiceKeyring'")
DEBUG: [common/tools.py:886 keyringSupported] Metaclass keyring.backend.GnomeKeyring not found: AttributeError("module 'keyring.backend' has no attribute 'GnomeKeyring'")
DEBUG: [common/tools.py:888 keyringSupported] Metaclass keyring.backend.KDEKWallet not found: AttributeError("module 'keyring.backend' has no attribute 'KDEKWallet'")
DEBUG: [common/tools.py:899 keyringSupported] Available supported backends: [<class 'keyring.backends.SecretService.Keyring'>, <class 'keyring.backends.kwallet.DBusKeyring'>]
DEBUG: [common/tools.py:905 keyringSupported] No appropriate keyring found. 'keyring.backends.chainer' can't be used with BackInTime
DEBUG: [common/mount.py:73 Mount.__init__] pw-cache is not running
DEBUG: [common/mount.py:81 Mount.__init__] Call command: /usr/bin/backintime pw-cache start
DEBUG: [common/tools.py:1410 readCrontab] Read 2 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: Main profile | Automatic backup: At every boot/reboot
DEBUG: [common/config.py:1552 Config.cronLine] Profile: ipod | Automatic backup: Disabled
DEBUG: [common/config.py:1552 Config.cronLine] Profile: hdd2 | Automatic backup: Disabled
DEBUG: [common/config.py:1552 Config.cronLine] Profile: Google Photos | Automatic backup: Disabled
DEBUG: [common/config.py:1502 setupCron] Crontab didn't change. Skip writing.
DEBUG: [common/tools.py:862 keyringSupported] Available keyring backends:
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.kwallet.DBusKeyring (priority: 4.9)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.fail.Keyring (priority: 0)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.libsecret.Keyring (priority: 4.8)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.chainer.ChainerBackend (priority: 10)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.SecretService.Keyring (priority: 5)
DEBUG: [common/tools.py:878 keyringSupported] Metaclass keyring.backends.Gnome.Keyring not found: AttributeError("module 'keyring.backends' has no attribute 'Gnome'")
DEBUG: [common/tools.py:880 keyringSupported] Metaclass keyring.backends.kwallet.Keyring not found: AttributeError("module 'keyring.backends.kwallet' has no attribute 'Keyring'")
DEBUG: [common/tools.py:884 keyringSupported] Metaclass keyring.backend.SecretServiceKeyring not found: AttributeError("module 'keyring.backend' has no attribute 'SecretServiceKeyring'")
DEBUG: [common/tools.py:886 keyringSupported] Metaclass keyring.backend.GnomeKeyring not found: AttributeError("module 'keyring.backend' has no attribute 'GnomeKeyring'")
DEBUG: [common/tools.py:888 keyringSupported] Metaclass keyring.backend.KDEKWallet not found: AttributeError("module 'keyring.backend' has no attribute 'KDEKWallet'")
DEBUG: [common/tools.py:899 keyringSupported] Available supported backends: [<class 'keyring.backends.SecretService.Keyring'>, <class 'keyring.backends.kwallet.DBusKeyring'>]
DEBUG: [common/tools.py:905 keyringSupported] No appropriate keyring found. 'keyring.backends.chainer' can't be used with BackInTime
DEBUG: [common/mount.py:73 Mount.__init__] pw-cache is not running
DEBUG: [common/mount.py:81 Mount.__init__] Call command: /usr/bin/backintime pw-cache start
DEBUG: [common/configfile.py:528 Config.setCurrentProfile] change current profile: 2=ipod
DEBUG: [common/backintime.py:589 argParse] Arguments: {'debug': True, 'profile_id': 2, 'command': 'backup', 'func': <function backup at 0x7f73c09803a0>} | unknownArgs: []

Back In Time
Version: 1.3.3-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.

WARNING: [common/tools.py:1906 __init__] Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: [common/tools.py:1907 __init__] D-Bus message: Launch helper exited with unknown return code 1
WARNING: [common/tools.py:1908 __init__] Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
DEBUG: [common/backintime.py:677 getConfig] config file: /home/joe/.config/backintime/config
DEBUG: [common/backintime.py:678 getConfig] share path: /home/joe/.local/share/backintime
DEBUG: [common/backintime.py:679 getConfig] profiles: 1=Main profile, 2=ipod, 3=hdd2, 4=Google Photos
DEBUG: [common/configfile.py:528 Config.setCurrentProfile] change current profile: 2=ipod
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: [common/snapshots.py:1898 Snapshots.flockExclusive] Set flock /tmp/backintime.lock
INFO: [common/snapshots.py:704 Snapshots.backup] Lock
DEBUG: [common/tools.py:1359 inhibitSuspend] Inhibit Suspend started. Reason: take snapshot
DEBUG: [common/tools.py:862 keyringSupported] Available keyring backends:
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.chainer.ChainerBackend (priority: 10)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.SecretService.Keyring (priority: 5)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.libsecret.Keyring (priority: 4.8)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.kwallet.DBusKeyring (priority: 4.9)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.fail.Keyring (priority: 0)
DEBUG: [common/tools.py:878 keyringSupported] Metaclass keyring.backends.Gnome.Keyring not found: AttributeError("module 'keyring.backends' has no attribute 'Gnome'")
DEBUG: [common/tools.py:880 keyringSupported] Metaclass keyring.backends.kwallet.Keyring not found: AttributeError("module 'keyring.backends.kwallet' has no attribute 'Keyring'")
DEBUG: [common/tools.py:884 keyringSupported] Metaclass keyring.backend.SecretServiceKeyring not found: AttributeError("module 'keyring.backend' has no attribute 'SecretServiceKeyring'")
DEBUG: [common/tools.py:886 keyringSupported] Metaclass keyring.backend.GnomeKeyring not found: AttributeError("module 'keyring.backend' has no attribute 'GnomeKeyring'")
DEBUG: [common/tools.py:888 keyringSupported] Metaclass keyring.backend.KDEKWallet not found: AttributeError("module 'keyring.backend' has no attribute 'KDEKWallet'")
DEBUG: [common/tools.py:899 keyringSupported] Available supported backends: [<class 'keyring.backends.SecretService.Keyring'>, <class 'keyring.backends.kwallet.DBusKeyring'>]
DEBUG: [common/tools.py:905 keyringSupported] No appropriate keyring found. 'keyring.backends.chainer' can't be used with BackInTime
DEBUG: [common/mount.py:73 Mount.__init__] pw-cache is not running
DEBUG: [common/mount.py:81 Mount.__init__] Call command: /usr/bin/backintime pw-cache start
INFO: [common/snapshots.py:735 Snapshots.backup] Take a new snapshot. Profile: 2 ipod
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 --delete --delete-excluded -v -i --out-format=BACKINTIME: %i %n%L --link-dest=../../20221128-112854-757/backup --chmod=Du+wx --exclude=/mnt/truenas/backups/jojm Backups/ipod backup --exclude=/home/joe/.local/share/backintime --exclude=.local/share/backintime/mnt --include=/media/joe/JOJM'S BASE/ --include=/media/joe/ --include=/media/ --exclude=.gvfs --exclude=.cache/* --exclude=.thumbnails* --exclude=.local/share/[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 --include=/media/joe/JOJM'S BASE/** --exclude=* / /mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup"
WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.Trash-1000" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.Trash-1000/expunged" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.Trash-1000/files" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.Trash-1000/info" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/backdrops" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codepages" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/docs" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/doom" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/icons" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/lua_scripts" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/pictureflow" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/goban" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/themes" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/JesusLives" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/OverLoad" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/PodMini" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/Rockboxed" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/cabbiev2" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/classic_statusbar" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/Calendars" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/Contacts" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.000" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.001" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/Notes" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/Playlists" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/System Volume Information" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/gospels" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/Device" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/Music" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/Music/F00" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/Music/F01" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/Music/F02" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/Music/F03" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/Music/F04" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/Music/F05" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/iTunes" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/barely soci" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/darknet d" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/decoding the unkown" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/editing podcast" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/hacked" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/hacker history" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/lemmino" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/mkbhd show" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/open source security" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/osint" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/some ordinary podcast" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/the Hacker mind" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/theories of the third kind" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/trash taste" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/wan show" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podusb" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.BOOTEX.LOG.XLZMEM" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.battery_bench.txt.hECfxg" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.everything.md5sum.Qk2Puf" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.gospels.bmark.JUWd8w" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.podcasts.bmark.DhDsWz" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.podusb.bmark.lP8tuG" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rb-lua_functions.txt.L58Tvq" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.Trash-1000/info/.Bygone Visions of Cosmic Neighbors [LhfCietvDZo].mp3.trashinfo.F5YGVy" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.playlist_control.AS6hzz" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.config.cfg.kXXeXU" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.database.ignore.gCbIdc" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.database_0.tcd.pYM7ot" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.database_1.tcd.b78BxN" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.database_2.tcd.RTC8W6" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.database_3.tcd.twKE0n" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.database_4.tcd.cEwYIF" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.database_5.tcd.Wfcdwt" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.database_6.tcd.REPyfs" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.database_7.tcd.xdlpD1" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.database_8.tcd.p4YlHs" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.database_idx.tcd.J9fLh1" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.most-recent.bmark.gSivaH" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.nvram.bin.ku3keT" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.rbutil.log.5MlZFd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.rockbox-info.txt.2iuS8p" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.rockbox.ipod.15PY6e" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.tagnavi.config.hKPMMu" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/.viewers.config.D0LHHt" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/backdrops/.JesusLives_bd.bmp.zWvpMX" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/backdrops/.cabbiev2.bmp.nskWt1" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.a52.codec.RqrC1W" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.a52_rm.codec.3bTg3O" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.aac.codec.3MHeke" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.aac_bsf.codec.5HvA0l" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.adx.codec.ejk11z" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.aiff.codec.OxzRds" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.alac.codec.FjiF1U" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.ape.codec.f4tixj" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.asap.codec.ECtGa8" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.atrac3_rm.codec.Baaee5" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.au.codec.bfIPQI" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.ay.codec.hdh7RV" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.cook.codec.yOFxNz" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.flac.codec.8rXjLK" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.gbs.codec.ntggFN" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.hes.codec.H8sEXh" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.kss.codec.jCMMM8" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.mod.codec.qedPUx" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.mpa.codec.ybhdkA" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.mpc.codec.6U1xN7" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.nsf.codec.AQMoqS" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.raac.codec.Fo6owv" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.sgc.codec.hDQErR" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.shorten.codec.BQO7gt" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.sid.codec.RbLEGG" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.smaf.codec.6MrJvw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.spc.codec.Ov8LZK" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.speex.codec.nhAMSe" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.tta.codec.yCXVAY" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.vgm.codec.QZsolZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.vorbis.codec.VURAtt" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.vox.codec.KawYf2" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.wav.codec.jgGlvu" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.wav64.codec.ONWtvo" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.wavpack.codec.qFdE0C" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.wma.codec.m8iPvL" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codecs/.wmapro.codec.0qYEqJ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codepages/.932.cp.D8dnEG" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codepages/.936.cp.KS0cEw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codepages/.949.cp.wLRh36" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codepages/.950.cp.yzvVIi" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/codepages/.iso.cp.kaY8cg" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/docs/.COPYING.txt.KoNwTn" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/docs/.KNOWN_ISSUES.txt.fWES7v" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/docs/.LICENSES.txt.tJ5AP8" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/docs/.sample.colours.smeyoZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/docs/.sample.icons.pYg6rg" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/doom/.default.dfg.pYdQ33" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/doom/.doomf.wad.GyhO2v" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/doom/.rockdoom.wad.WWAEAW" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/doom/.tranmap.dat.NohehT" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.05-Tiny.fnt.Qly8TJ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.06-Tiny.fnt.IpsUh2" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.07-Fixed.fnt.n6Rzzj" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.08-Atadore.fnt.Hx1TIu" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.08-Fixed.fnt.RDiV7v" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.08-Namil.fnt.sjzZ5X" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.08-Nedore.fnt.jb8P50" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.08-Rockbox-Propfont.fnt.gV3wMA" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.08-Sazanami-Mincho.fnt.0ZbglH" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.08-Schumacher-Clean.fnt.xv47xF" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.09-Fixed.fnt.AKvqgE" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.09-Fixed.gc.LL50Lk" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.09-Nedore.fnt.kZuO6E" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.09-Sazanami-Mincho.fnt.3fXycY" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.10-Adobe-Helvetica-Bold.fnt.LXmQXE" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.10-Adobe-Helvetica-Bold.gc.cjQJxf" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.10-Adobe-Helvetica.gc.kI4ZIN" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.10-Artwiz-Snap.fnt.vMSA2H" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.10-Fixed.fnt.BqOu6v" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.10-Fixed.gc.HUWyDp" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.10-Nimbus.fnt.ANlQBP" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.10-Nimbus.gc.QzJCnq" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.10-ProFont.fnt.9gaN5m" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.10-Sazanami-Mincho.fnt.orf7GP" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.11-Nimbus.fnt.wZ5TGM" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.11-ProFont.fnt.93H9Ox" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.11-Sazanami-Mincho.fnt.cSYG2a" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.12-Adobe-Helvetica-Bold.fnt.C6uaX3" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.12-Adobe-Helvetica-Bold.gc.DqUNqU" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.12-Adobe-Helvetica.fnt.w8WpHz" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.12-Adobe-Helvetica.gc.JLPLhq" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.12-Fixed-SemiCond.fnt.sqIcG5" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.12-Fixed-SemiCond.gc.Yc9faT" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.12-Nimbus.fnt.9bzDzC" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.12-Nimbus.gc.g8hfEX" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.12-ProFont.fnt.15FqgX" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.12-Sazanami-Mincho.fnt.6VVrX3" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.12-Terminus.fnt.GKy1fD" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.12-Terminus.gc.KcxdEt" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.13-Fixed-SemiCond-Bold.fnt.wafGDH" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.13-Fixed-SemiCond.fnt.npEiEJ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.13-Fixed.fnt.rl55iu" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.13-Nimbus.fnt.GWCzlb" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.13-Sazanami-Mincho.fnt.RjUDcJ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.14-Adobe-Helvetica-Bold.fnt.78h7Jx" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.14-Adobe-Helvetica-Bold.gc.i5UkZ1" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [sender] read errors mapping "/media/joe/JOJM'S BASE/.rockbox/fonts/14-Rockbox-Mix.fnt": Input/output error (5)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.14-Sazanami-Mincho.fnt.4Lufs9" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.14-Terminus-Bold.fnt.4e7vMo" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.14-Terminus.fnt.Drkg56" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.15-Adobe-Helvetica.fnt.pXPSwp" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.15-ProFont.fnt.SJeyCz" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.16-Adobe-Helvetica-Bold.fnt.KIBJ9h" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.16-Adobe-Helvetica.fnt.WvPzia" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.16-GNU-Unifont.fnt.5RKIx0" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.16-Jackash.fnt.qOsSnA" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.16-Terminus-Bold.fnt.7FzE61" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.16-Terminus.fnt.JI7H7J" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.17-ProFont.fnt.8uzuNo" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.18-Adobe-Helvetica-Bold.fnt.5iVAKF" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.18-Adobe-Helvetica.fnt.Eqe0Zu" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.18-Fixed-Bold.fnt.Y6lZks" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.19-Nimbus.fnt.J3Ef0y" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.20-Artwiz-Snap.fnt.bvsgqj" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.20-Terminus-Bold.fnt.2l8ALX" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.20-Terminus.fnt.NiqZFO" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.21-Adobe-Helvetica-Bold.fnt.UWIHMn" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.21-Adobe-Helvetica.fnt.GfFd1k" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.22-ProFont.fnt.BTshuQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.24-Terminus-Bold.fnt.ZVGqms" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.24-Terminus.fnt.tlMcp4" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.27-Adobe-Helvetica-Bold.fnt.n1LpId" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.27-Adobe-Helvetica.fnt.6fT0Ta" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.28-Terminus-Bold.fnt.Auf8hn" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.28-Terminus.fnt.gERYwF" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.29-ProFont.fnt.vyZNFz" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.32-Terminus-Bold.fnt.FgSdcp" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.32-Terminus.fnt.r3AeDQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.35-Adobe-Helvetica-Bold.fnt.NFmmZ9" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.35-Adobe-Helvetica.fnt.h0SgVq" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/fonts/.35-Nimbus.fnt.VEA2BV" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/icons/.Barebones-4x12.bmp.xdjMM3" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/icons/.tango_small_mono.bmp.MRRIWQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/icons/.tango_small_viewers_mono.bmp.60dFpA" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/icons/.viewers.6x8x2.bmp.rZiJX2" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/icons/.viewers.bmp.8fzOaT" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.afrikaans.lng.U9yH9X" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.arabic.lng.to3Gc0" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.basque.lng.91GHKC" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.bulgarian.lng.IQnLqD" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.catala.lng.CpUz6l" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.chinese-simp.lng.qgh03A" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.chinese-trad.lng.TXkL8P" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.czech.lng.S8KrDH" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.dansk.lng.x3l1rC" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.deutsch.lng.RRXIBe" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.eesti.lng.OVkTYF" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.english-us.lng.i3g5Ah" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.english.lng.GvQwh5" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.espanol.lng.xE603M" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.esperanto.lng.fhNQd6" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.finnish.lng.fAS9JL" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.francais.lng.ZSYidO" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.galego.lng.7bWq93" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.greek.lng.vCCP9v" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.hebrew.lng.jbsxnE" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.hindi.lng.eIAbZ8" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.hrvatski.lng.DrXxid" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.islenska.lng.oFoKaw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.italiano.lng.aW39rR" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.japanese.lng.abv4Uf" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.korean.lng.IFvBwD" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.latviesu.lng.zkZEZj" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.lietuviu.lng.fNus7u" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.magyar.lng.kO4HCw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.nederlands.lng.G8PAF7" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.norsk-nynorsk.lng.8GHwwi" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.norsk.lng.aPMzET" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.polski.lng.EMAvh9" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.portugues-brasileiro.lng.763JBs" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.portugues.lng.kvBOYn" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.romaneste.lng.XWXEtK" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.russian.lng.NoZRCj" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.slovak.lng.STMWJF" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.slovenscina.lng.OZpYDY" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.srpski.lng.IuI3iI" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.svenska.lng.Mjx36w" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.tagalog.lng.KInIw7" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.turkce.lng.bb1pEy" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.ukrainian.lng.FCjrVn" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.vlaams.lng.Da7kH3" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.voicestrings.zip.cUB5Fy" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.wallisertitsch.lng.nCpdUx" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/langs/.walon.lng.ZvSmPQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.clock_settings.iWkBo1" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.alarmclock.rock.wzVrDG" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.battery_bench.rock.gol55o" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.calculator.rock.xKOcMZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.calendar.rock.pEh5i9" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.chessclock.rock.EZAaoM" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.clock.rock.G2et0a" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.dict.rock.s6bghZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.disktidy.config.OGvRAh" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.disktidy.rock.ewRicd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.keybox.rock.YxlixA" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.lamp.rock.j8vw76" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.lrcplayer.rock.17IpNL" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.main_menu_config.rock.xqrY4f" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.md5sum.rock.ol2JZs" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.metronome.rock.D5EdHT" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.otp.rock.garoru" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.periodic_table.rock.BPJsaD" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.random_folder_advance_config.rock.k2lodu" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.remote_control.rock.aToRpD" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.resistor.rock.DjmSoa" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.settings_dumper.rock.nX6ydV" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.stats.rock.bnQYju" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.stopwatch.dat.rrjFbx" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.stopwatch.rock.3tcHX7" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/apps/.text_editor.rock.orZA8q" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.vu_meter.6Csnik" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.bounce.rock.Qml3tg" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.cube.rock.BDrvbe" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.demystify.rock.XrVP4U" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.fft.cfg.criQXK" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.fft.rock.FIrsQR" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.fire.rock.frPAPd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.fireworks.rock.eGOg0F" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.fractals.rock.d9Rg1v" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.logo.rock.gq4gPi" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.lua_scripts.lua.17cbTL" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.matrix.rock.qOZWAw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.mosaique.rock.8ssX6u" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.oscilloscope.cfg.1nOCuS" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.oscilloscope.rock.TuKxfy" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.pictureflow.cfg.q57Dft" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.pictureflow.rock.qr97jH" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.pictureflow_emptyslide.bmp.Kcc1PA" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.pictureflow_splash.bmp.N7a52u" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.plasma.rock.g6iwLQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.rocklife.rock.eOd1YV" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.snow.rock.s5A7tw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.starfield.rock.4CUr12" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/.vu_meter.rock.NqK9Am" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/lua_scripts/.dbgettags.lua.1tcGRB" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/lua_scripts/.dump_rbsettings.lua.GfHh8b" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/lua_scripts/.fade2sleep.lua.cNRkbb" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/lua_scripts/.filebrowse.lua.rLtQ7q" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/lua_scripts/.fileview.lua.c1qXmh" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/lua_scripts/.fileviewers.lua.fjeBMz" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/lua_scripts/.print_lua_func.lua.OXLbfd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/lua_scripts/.printmenu.lua.SrZ5DL" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/lua_scripts/.rlimg.lua.NiJOLK" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/lua_scripts/.tagnav.lua.s4qktf" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/lua_scripts/.track_metadata.lua.lpwgFN" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/pictureflow/.ab0cdf30.pfraw.CW9X6R" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/demos/pictureflow/.emptyslide.pfraw.W9G8ZL" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.2048.rock.aqc3wl" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.2048.save.azM4dU" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.2048.score.W5E0I5" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.blackjack.rock.i2vsdx" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.boomshine.lua.qLiTfK" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.brickmania.rock.GdxlsU" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.bubbles.data.ADWK7u" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.bubbles.rock.06X6w9" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.bubbles.score.gfhau0" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.chessbox.pgn.xm09N2" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.chessbox.rock.WB9eXC" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.chessbox.save.c6DYzQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.chopper.cfg.EnZSnp" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.chopper.rock.JQXpiY" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.dice.cfg.aqAYsb" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.dice.rock.aSXTFo" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.doom.rock.6ggJhF" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.flipit.rock.BwUd3E" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.gbn_misc.bin.7bcbOR" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.goban.cfg.zl5rK0" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.goban.rock.mHq7Xt" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.jackpot.rock.vhrcDq" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.jewels.rock.KbJ4gv" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.maze.rock.cb42Gi" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.mazezam.rock.eO7f0g" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.minesweeper.rock.dgVqEK" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.pegbox.cfg.U4uAHO" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.pegbox.rock.tTUsPp" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.pong.rock.rT0dCl" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.reversi.rock.780pgQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.robotfindskitten.rock.GRavyA" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.rockblox.rock.vepc9K" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.rockblox1d.rock.YcoFum" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.sliding_puzzle.rock.H6NHrd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.snake.cfg.LAB8yP" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.snake.rock.qsS4uZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.snake.score.7B0kxT" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.snake2.levels.YtZpyY" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.snake2.rock.iFEGhB" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.snake2.score.QsEW81" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.sokoban.levels.PqmNeU" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.sokoban.rock.f5mPNR" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.solitaire.rock.gGCZe9" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.spacerocks.rock.BGt8Dz" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.star.rock.N9PWrP" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.sudoku.rock.kudNLj" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.wormlet.cfg.dDHYgE" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.wormlet.rock.XeXMSI" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.xobox.rock.rKBCbd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/.xobox.score.0O1qcw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/games/goban/.goban_d.sgf.80F7B0" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.bmp.ovl.PUmrxn" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.chip8.rock.V25zQo" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.credits.rock.qVoceN" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.frotz.rock.pvyo6H" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.gif.ovl.nzPe7g" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.jpeg.ovl.LYes3M" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.lua.rock.19KC6x" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.midi.rock.ZfDc0o" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.mikmod.rock.yPFx4C" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.mp3_encoder.rock.qXYYcl" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.mpegplayer.cfg.qrya9s" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.mpegplayer.rock.A56nGI" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.pdbox.rock.PKgheB" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.png.ovl.w6oRq8" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.rockbox-fonts.config.2wB6cH" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.search.rock.kKNpDO" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.shopper.rock.Sdm8AW" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.shortcuts_append.rock.90VVie" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.shortcuts_view.rock.9aT2kw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.sort.rock.cmxwN0" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.speedread.rock.rBJBpH" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.text_viewer.rock.RoN8RI" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.theme_remove.rock.5IrZs0" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.tv_file.dat.YYbtsQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.vbrfix.rock.PhBRZt" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.wav2wv.rock.sLexnG" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.wavview.rock.iM4AsI" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.windows_lnk.rock.Iajh6b" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/.zxbox.rock.QSH6IM" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.actions.lua.uaBs9w" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.audio.lua.xcIFTu" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.blit.lua.3lQb2P" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.buttons.lua.Sxbmlp" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.color.lua.SlvA5H" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.draw.lua.QnIJJm" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.draw_floodfill.lua.i1vhi1" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.draw_num.lua.r67cCX" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.draw_poly.lua.aJQy0b" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.draw_text.lua.R0Iu27" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.files.lua.1Dl3Gm" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.image.lua.RYW2JA" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.image_save.lua.wTRuQY" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.lcd.lua.6tsg08" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.math_ex.lua.DhbVPT" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.pcm.lua.fVEcf2" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.playlist.lua.VDsVcu" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.poly_points.lua.RMXlKy" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.print.lua.L6U5jy" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.printtable.lua.pbdTxJ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.rb_defines.lua.f9W5Ke" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.rbcompat.lua.18dvAA" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.rbsettings.lua.OSpMIz" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.settings.lua.cq2Wui" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.sound.lua.S0WUQn" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.sound_defines.lua.jOC9WL" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/rocks/viewers/lua/.timer.lua.0nLXu8" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/themes/.JesusLives.cfg.FCkku3" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/themes/.OverLoad.cfg.gL1idC" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/themes/.PodMini.cfg.NU7NE7" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/themes/.Rockboxed.cfg.kNGc0o" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/themes/.cabbiev2.cfg.P2uveK" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/themes/.rockbox_default_icons.cfg.IjQy9W" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/themes/.rockbox_failsafe.cfg.uawV1T" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/themes/.sprocket.cfg.dLHJZl" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/themes/.terminus.cfg.QDqgGD" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.JesusLives.wps.eFwSbJ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.OverLoad.wps.VJ1fio" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.PodMini.fms.UN5vKT" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.PodMini.sbs.CAAJ3N" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.PodMini.wps.hqX4lA" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.Rockboxed.wps.5QAPcc" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.cabbiev2.wps.TbcHUO" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.classic_statusbar.rsbs.aMiJ10" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.classic_statusbar.sbs.npI5AH" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.rockbox_failsafe.fms.1gI44A" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.rockbox_failsafe.sbs.0ZTf07" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.rockbox_failsafe.wps.TcbW9U" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.sprocket.sbs.s7jlQ3" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.sprocket.wps.miR4cT" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/.terminus.wps.Uq0OQa" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/JesusLives/.Battery.bmp.uX9DgI" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/JesusLives/.PlayIcons.bmp.vSX5Fo" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/JesusLives/.Repeat.bmp.WmkwTl" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/JesusLives/.Shuffle.bmp.gVPwTN" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/JesusLives/.Volume.bmp.NOZ6jb" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/JesusLives/.bg.bmp.hxdxVn" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/JesusLives/.playbar.bmp.Ot2AQ1" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/OverLoad/.bar-4.bmp.kwCVeZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/OverLoad/.battery-4.bmp.nReHYM" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/OverLoad/.bg-138x110-4.bmp.41RWaq" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/OverLoad/.codec-2.bmp.7GY8Vr" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/OverLoad/.dot-4.bmp.87K4bj" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/OverLoad/.encoding-2.bmp.uM16PA" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/OverLoad/.lock-2.bmp.Tp6VK1" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/OverLoad/.playmode-4.bmp.fgXDGO" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/OverLoad/.repeat-2.bmp.ibwtl5" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/OverLoad/.shuffle-2.bmp.91eHx6" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/PodMini/.battery.bmp.NOzMeM" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/PodMini/.playmodes.bmp.1JWAib" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/PodMini/.progressbar.bmp.E5WOae" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/PodMini/.progressbar_backdrop.bmp.s2Qrpb" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/Rockboxed/.battery-grey-medium.bmp.vrQVkX" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/Rockboxed/.bg-138x110x2.bmp.iQH8yV" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/Rockboxed/.lock-grey.bmp.uFGs9a" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/Rockboxed/.mode-grey.bmp.KPgLqd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/Rockboxed/.pg-grey-118.bmp.QGTVSO" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/Rockboxed/.repeat-grey-medium.bmp.x3OoHF" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/Rockboxed/.shuffle-grey-medium.bmp.2on90q" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/Rockboxed/.volume-grey.bmp.5FR53s" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/cabbiev2/.battery-160x128x2.bmp.LDKZQW" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/cabbiev2/.lock-160x128x2.bmp.Ie9rjr" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/cabbiev2/.pb-138x110x2.bmp.qPw0hj" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/cabbiev2/.playmode-160x128x2.bmp.1aqnyQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/cabbiev2/.repeat-160x128x2.bmp.6UhEzG" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/cabbiev2/.shuffle-160x128x2.bmp.IsD86k" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/cabbiev2/.volume-160x128x2.bmp.noOyPa" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/cabbiev2/.wpsbackdrop-138x110x2.bmp.nztWep" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/classic_statusbar/.access_disk.bmp.bPmNl2" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/classic_statusbar/.access_flash.bmp.Bj5j5T" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/classic_statusbar/.batter-y.bmp.QgJ47Y" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/classic_statusbar/.battery.bmp.s8vAx3" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/classic_statusbar/.rec_channels.bmp.13jUA6" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/classic_statusbar/.rec_encoders.bmp.VrCbJJ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/classic_statusbar/.rec_frequencies.bmp.MNaA7B" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/classic_statusbar/.rec_mpegbitrates.bmp.XiPEvZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/classic_statusbar/.status.bmp.EDUMc0" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/classic_statusbar/.volume.bmp.N0q7z4" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.batt-charge-strip.bmp.2Mt7XX" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.batt-strip.bmp.TmXbym" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.crossfade-12.bmp.IZxREb" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.crossfade.bmp.5pmOsz" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.hdd-activity-wide.bmp.WknQJd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.hdd-activity.bmp.HJWHAT" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.hold.bmp.fI6J8G" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.play-status.bmp.mkwiaq" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.prog-bar-empty.bmp.fqWtmQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.prog-bar-full.bmp.PG39mV" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.repeat-strip.bmp.Hg5ey7" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.separator.bmp.yJsadf" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.shuffle.bmp.c9c3xf" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/.rockbox/wps/sprocket/.vol-bar-strip.bmp.1Abazf" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/Contacts/.ipod_created_instructions.vcf.4Gdu31" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/Contacts/.ipod_created_sample.vcf.dJd2hr" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.000/.FILE0000.CHK.5A0K38" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.001/.FILE0000.CHK.4GaUfv" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0000.CHK.KF9O13" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0001.CHK.dB1yzd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0002.CHK.y7O65n" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0003.CHK.s9R0NM" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0004.CHK.8myrut" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0005.CHK.1uQ5yT" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0006.CHK.tZt1U9" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0007.CHK.Kn5Z9n" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0008.CHK.ybgcsD" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0009.CHK.JXUaPy" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0010.CHK.fhrZHl" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0011.CHK.mY8Hzn" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0012.CHK.q8Sydf" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0013.CHK.gEdAhd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0015.CHK.85rD1T" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0016.CHK.AH8xcL" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0017.CHK.qyjiqB" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0018.CHK.lboS01" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0019.CHK.uo15Tb" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0020.CHK.kvgYFV" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0021.CHK.cIJcx8" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0022.CHK.V6hxiQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0023.CHK.GSczm2" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0024.CHK.OBDHM9" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0025.CHK.TjBdhw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0026.CHK.KlIpBr" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0027.CHK.iR620l" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0028.CHK.eEYwp5" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0029.CHK.JGQV3Q" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0030.CHK.G3P11t" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0031.CHK.dVrhjJ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0032.CHK.AKF1c9" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0033.CHK.nFLtRw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0034.CHK.Sf5qJB" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0035.CHK.SX4aaM" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/FOUND.002/.FILE0036.CHK.zyy6SM" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/Notes/.Instructions.bEHgPP" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/System Volume Information/.IndexerVolumeGuid.QO7lVU" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/System Volume Information/.WPSettings.dat.gPXsUW" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/Device/.Preferences.63OsTU" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/Device/.SysInfo.VOQIjN" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/iTunes/.Play Counts.fGWyvo" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/iTunes/.iTunesControl.JCwpVp" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/iTunes/.iTunesDB.CWI5Tw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/iTunes/.iTunesPrefs.ZS6v9I" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/iPod_Control/iTunes/.iTunesPrefs.plist.LrXX2v" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/.Apple Got Exposed Big Time.. [Xdgf07Odf1o].mp3.pu9yBC" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/.Apple store unionizing Louis Rossmann chimes in [cd4KXHsJ07I].mp3.2z16Bv" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/.Why 2b2t's Canal Has Been BLOCKED [bm4MPMDttAc].mp3.mhjBX3" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/.decoding the unkown.bmark.YUzCY9" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/.open source security.bmark.5H3xFr" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/.osint.bmark.l6cJCf" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/.some ordinary podcast.bmark.sHEsd2" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/.theories of the third kind.bmark.RHS0CQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/.trash taste.bmark.Z0yQ2m" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/.wan show.bmark.EexEJr" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/decoding the unkown/.'Double Alien Abduction - The Vanishing Yorkshire Miner and the Policeman Plucked from Time [0F4wJ0rd_WY].mp3.hJnlYj" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/decoding the unkown/.'Was 9_11 an Inside Job [XWgbDBIdFWM].mp3.XJ9Gtc" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/decoding the unkown/.Flight 401 - Ghosts on a Plane [BcV13sAUHpc].mp3.z4E2zQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/editing podcast/.'How Nope Manipulated You [P-t0tKSxW2Q].mp3.gEKoEZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/open source security/.Episode_350_Spam_Email_Content_Moderation_and_Infrastructure_Oh_My.mp3.DC0z1B" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/osint/.282-Major OSINT Updates.mp3.1GFmG4" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/osint/.283-Announcements, Updates, & News osint.mp3.GBuqEG" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/osint/.284-Password Managers & 2FA Revisited osint.mp3.r52LFt" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/some ordinary podcast/.'The Return of Penguinz0 (ft.Charlie) _ Some Ordinary Podcast #48 [sn5KlwaS2lo].mp3.EIjKNH" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/some ordinary podcast/.The New Pok\#303\#251mon Games Are Embarrassing.... (ft.LS Mark) _ Some Ordinary Podcast #49 [Hdyoaa5ss50].mp3.DZasy3" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/the Hacker mind/.EP59FINAL.mp3.QoCbGd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/theories of the third kind/.ElsaGate TOTTK.mp3.mcYZZt" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/trash taste/.'Roasting Our Trash Taste in TV Shows _ Trash Taste #126 [FPUyRrcaJhc].mp3.4kSqcE" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/trash taste/.We Finally Confront Moist Critical (ft. @penguinz0) _ Trash Taste #127 [x_eJHOgQ4iI].mp3.nuTonk" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podcasts/wan show/.Where Will This End - WAN Show November 25, 2022 [zYpyS2HaZHM].mp3.5gkC4L" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podusb/.Essay.docx.HOjQpf" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podusb/.Essay.odt.qc7Ks6" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJM'S BASE/podusb/.iPod_Thick_Back_Transparent_Resin_Compatible_v2.stl.pkd8bK" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [sender] read errors mapping "/media/joe/JOJM'S BASE/.rockbox/fonts/14-Rockbox-Mix.fnt": Input/output error (5)
WARNING: [common/snapshots.py:767 Snapshots.backup] Command "rsync --recursive --times --devices --specials --hard-links --human-readable -s --links --perms --executability --group --owner --info=progress2 --no-inc-recursive --delete --delete-excluded -v -i --out-format=BACKINTIME: %i %n%L --link-dest=../../20221128-112854-757/backup --chmod=Du+wx --exclude=/mnt/truenas/backups/jojm Backups/ipod backup --exclude=/home/joe/.local/share/backintime --exclude=.local/share/backintime/mnt --include=/media/joe/JOJM'S BASE/ --include=/media/joe/ --include=/media/ --exclude=.gvfs --exclude=.cache/* --exclude=.thumbnails* --exclude=.local/share/[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 --include=/media/joe/JOJM'S BASE/** --exclude=* / /mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup" returns 23
INFO: [common/snapshots.py:913 Snapshots.backupConfig] Save config file
INFO: [common/snapshots.py:989 Snapshots.backupPermissions] Save permissions
DEBUG: [common/snapshots.py:1190 Snapshots.takeSnapshot] Call command "rsync --dry-run -s -r --out-format=%n /mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/ /tmp/tmp1f5nyvll/"
DEBUG: [common/snapshots.py:1190 Snapshots.takeSnapshot] Command "rsync --dry-run ..." returns 0
INFO: [common/snapshots.py:962 Snapshots.backupInfo] Create info file
DEBUG: [common/snapshots.py:1885 Snapshots.createLastSnapshotSymlink] Create symlink /mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/last_snapshot => 20221128-112958-936
DEBUG: [common/snapshots.py:1545 Snapshots.freeSpace] Remove snapshots older than: 20211101-000000
DEBUG: [common/snapshots.py:1351 Snapshots.smartRemoveList] Considered: [20221128-112958-936, 20221128-112854-757, 20221122-114422-626, 20221118-112623-794, 20221111-133958-927]
DEBUG: [common/snapshots.py:1242 Snapshots.smartRemoveKeepAll] Keep all >= 20221122-000000-140 and < 20221129-000000-624
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221128-000000-499 and < 20221129-000000-130
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221128-000000-948 and < 20221129-000000-602
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221127-000000-955 and < 20221128-000000-899
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221127-000000-250 and < 20221128-000000-378
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221126-000000-783 and < 20221127-000000-887
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221126-000000-211 and < 20221127-000000-943
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221125-000000-120 and < 20221126-000000-290
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221125-000000-628 and < 20221126-000000-767
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221124-000000-174 and < 20221125-000000-751
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221124-000000-307 and < 20221125-000000-167
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221123-000000-133 and < 20221124-000000-714
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221123-000000-185 and < 20221124-000000-314
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221122-000000-729 and < 20221123-000000-286
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221122-000000-191 and < 20221123-000000-449
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221127-000000-198 and < 20221205-000000-298
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221127-000000-933 and < 20221205-000000-706
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221120-000000-176 and < 20221128-000000-246
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221120-000000-680 and < 20221128-000000-588
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221113-000000-498 and < 20221121-000000-818
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221113-000000-163 and < 20221121-000000-375
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221106-000000-108 and < 20221114-000000-431
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221106-000000-665 and < 20221114-000000-158
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221101-000000-942 and < 20221201-000000-240
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221101-000000-244 and < 20221201-000000-577
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221001-000000-738 and < 20221101-000000-633
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20221001-000000-606 and < 20221101-000000-585
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20220101-000000-518 and < 20230101-000000-543
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112958-936
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221128-112854-757
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221122-114422-626
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221118-112623-794
DEBUG: [common/snapshots.py:1275 Snapshots.smartRemoveKeepFirst] Do not keep failed snapshot 20221111-133958-927
DEBUG: [common/snapshots.py:1270 Snapshots.smartRemoveKeepFirst] Keep first >= 20220101-000000-498 and < 20230101-000000-851
DEBUG: [common/snapshots.py:1408 Snapshots.smartRemoveList] Keep snapshots: {20221111-133958-927, 20221128-112854-757, 20221118-112623-794, 20221122-114422-626, 20221128-112958-936}
DEBUG: [common/tools.py:862 keyringSupported] Available keyring backends:
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.chainer.ChainerBackend (priority: 10)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.SecretService.Keyring (priority: 5)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.libsecret.Keyring (priority: 4.8)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.kwallet.DBusKeyring (priority: 4.9)
DEBUG: [common/tools.py:865 keyringSupported] keyring.backends.fail.Keyring (priority: 0)
DEBUG: [common/tools.py:878 keyringSupported] Metaclass keyring.backends.Gnome.Keyring not found: AttributeError("module 'keyring.backends' has no attribute 'Gnome'")
DEBUG: [common/tools.py:880 keyringSupported] Metaclass keyring.backends.kwallet.Keyring not found: AttributeError("module 'keyring.backends.kwallet' has no attribute 'Keyring'")
DEBUG: [common/tools.py:884 keyringSupported] Metaclass keyring.backend.SecretServiceKeyring not found: AttributeError("module 'keyring.backend' has no attribute 'SecretServiceKeyring'")
DEBUG: [common/tools.py:886 keyringSupported] Metaclass keyring.backend.GnomeKeyring not found: AttributeError("module 'keyring.backend' has no attribute 'GnomeKeyring'")
DEBUG: [common/tools.py:888 keyringSupported] Metaclass keyring.backend.KDEKWallet not found: AttributeError("module 'keyring.backend' has no attribute 'KDEKWallet'")
DEBUG: [common/tools.py:899 keyringSupported] Available supported backends: [<class 'keyring.backends.SecretService.Keyring'>, <class 'keyring.backends.kwallet.DBusKeyring'>]
DEBUG: [common/tools.py:905 keyringSupported] No appropriate keyring found. 'keyring.backends.chainer' can't be used with BackInTime
DEBUG: [common/mount.py:73 Mount.__init__] pw-cache is not running
DEBUG: [common/mount.py:81 Mount.__init__] Call command: /usr/bin/backintime pw-cache start
DEBUG: [common/snapshots.py:1914 Snapshots.flockRelease] Release flock /tmp/backintime.lock
INFO: [common/snapshots.py:814 Snapshots.backup] Unlock
DEBUG: [common/tools.py:1379 unInhibitSuspend] Release inhibit Suspend

After that I would ask if you could install the last stable release 1.3.2 of BIT and if the problem is reproducible with it, too?

EDIT: Please let me add some more questions you partly have answered but I need to be sure about that points:

* How old is that snapshot profile you use here? Did you created it totally fresh? Did you used it long before? Did you used it with another version of BIT before?

It is a couple of months old I dont remember if I made a new one identical to this one on the fresh install.

* What are the filesystem types of your source and destination folders?

I am copying off of an ipod that has been flashed with rockbox but I have tried off of my base linux ssd with the same errors. The destination is a nas that I have running with truenas installed mounted with nfs to my linux install.

* And if you mount them manually or by your OS (without BIT involved) how they are mounted?

To mount my ipod I just plug it in I dont have a manual way to mount it but my nas is manually mounted through the terminal using nfs.

A shot into the blue Your destination (snapshot folder) is NTFS filesystem. An answer on "Unix & Linux" state that the ' character (part of your path: JOJM'S BASE) is illegal. But on the other side I have no problems to create a folder named JOJM'S BASE on my Windows 10 machine. confused

I will be trying to rename it for the next while and see if that works I will report back if it does.

mdjojm commented 1 year ago

After renaming my ipod to JOJMS BASED it gave the same errors.

mdjojm commented 1 year ago

Regarding

WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited

I assume that the installation from Github is correct (configure/make/make install) for both common and qt folder.

Q1: What does the make test in the common folder show (I'd expect some failing unit tests)?

~/backintime/common$ make test
python3 -m unittest  -b test/test_applicationinstance.py
...................
----------------------------------------------------------------------
Ran 19 tests in 0.027s

OK
python3 -m unittest  -b test/test_argparser.py
.....................
----------------------------------------------------------------------
Ran 21 tests in 1.934s

OK
python3 -m unittest  -b test/test_backintime.py
WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
.WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
.s
----------------------------------------------------------------------
Ran 3 tests in 3.260s

OK (skipped=1)
python3 -m unittest  -b test/test_backup.py
...WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
.WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
.WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
..WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
...WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
.WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
.
----------------------------------------------------------------------
Ran 12 tests in 1.607s

OK
/usr/lib/python3.10/subprocess.py:1070: ResourceWarning: subprocess 14824 is still running
/usr/lib/python3.10/subprocess.py:1070: ResourceWarning: subprocess 15247 is still running
WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
python3 -m unittest  -b test/test_configfile.py
WARNING: Failed to connect to Udev serviceHelper daemon via D-Bus: org.freedesktop.DBus.Error.Spawn.ChildExited
WARNING: D-Bus message: Launch helper exited with unknown return code 1
WARNING: Udev-based profiles cannot be changed or checked due to Udev serviceHelper connection failure
WARNING: Failed to read process stat from /proc/15407/stat: [2] No such file or directory
......................................................
----------------------------------------------------------------------
Ran 54 tests in 0.008s

OK
python3 -m unittest  -b test/test_config.py
WARNING: Failed to read process stat from /proc/15201/stat: [2] No such file or directory
WARNING: Failed to read process stat from /proc/15215/stat: [2] No such file or directory
WARNING: Failed to read process stat from /proc/15247/stat: [2] No such file or directory
WARNING: Failed to read process stat from /proc/15461/stat: [2] No such file or directory
WARNING: Failed to read process stat from /proc/15465/stat: [2] No such file or directory
...........
----------------------------------------------------------------------
Ran 11 tests in 0.820s

OK
python3 -m unittest  -b test/test_diagnostics.py
E
======================================================================
ERROR: test_diagnostics (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: test_diagnostics
Traceback (most recent call last):
  File "/usr/lib/python3.10/unittest/loader.py", line 154, in loadTestsFromName
    module = __import__(module_name)
  File "/home/joe/backintime/common/test/test_diagnostics.py", line 4, in <module>
    import pyfakefs.fake_filesystem_unittest as pyfakefs_ut
ModuleNotFoundError: No module named 'pyfakefs'

----------------------------------------------------------------------
Ran 1 test in 0.000s

FAILED (errors=1)
make: *** [Makefile:574: unittest] Error 1

The best guess so far is missing dependencies (we had some undocumented dependencies in the past).

Q2: Co could you please check if all of the documented packages are installed and check if the warning still appears with backintime --diagnostics?

I am busy going through them although with chron-daemon I am getting this install error Package cron-daemon is a virtual package provided by: systemd-cron 1.15.18-1 bcron 0.11-9 cron:i386 3.0pl1-137ubuntu3 cron 3.0pl1-137ubuntu3 You should explicitly select one to install.

I am not sure which one to choose.

https://github.com/bit-team/backintime#from-sources

esp. the D-Bus-relevant ones

* `python3-dbus`  (**Edit: Added later here - don't forget**)

* `python3-dbus.mainloop.pyqt5`
aryoda commented 1 year ago

I am busy going through them although with chron-daemon I am getting this install error Package cron-daemon is a virtual package provided by: systemd-cron 1.15.18-1 bcron 0.11-9 cron:i386 3.0pl1-137ubuntu3 cron 3.0pl1-137ubuntu3 You should explicitly select one to install.

I am not sure which one to choose.

Please ignore this dependency, you have found another documentation bug ;-) Edit: I have put this on my TODO list. I intend to recommend cron as standard cron daemon package

https://github.com/bit-team/backintime#from-sources esp. the D-Bus-relevant ones

* `python3-dbus`  (**Edit: Added later here - don't forget**)

* `python3-dbus.mainloop.pyqt5`

OK, unit tests look good enough so please do just install above two packages if they are missing (edit) and the missing python3-pyfakefs package.

This should fix the D-Bus warnings... (at least on my Mint 21 VM it works)

aryoda commented 1 year ago

The destination is a nas that I have running with truenas installed mounted with nfs to my linux install.

TrueNAS seems to use ZFS internally by default but a remote mount via nfs implies some permissions "translations" that may be (re)configured in

Could you please show the mount arguments of your local computer for the TrueNAS (corresponding line in the output of mount).

Edit: A good summary about NFS limitations can be found here (incl. some workarounds): https://serverfault.com/questions/213647/rsync-fails-to-backup-some-files-giving-error-22

NFS won't let you change a file's UID/GID to ones that don't exist on the server

mdjojm commented 1 year ago

I am busy going through them although with chron-daemon I am getting this install error Package cron-daemon is a virtual package provided by: systemd-cron 1.15.18-1 bcron 0.11-9 cron:i386 3.0pl1-137ubuntu3 cron 3.0pl1-137ubuntu3 You should explicitly select one to install. I am not sure which one to choose.

Please ignore this dependency, you have found another documentation bug ;-) Edit: I have put this on my TODO list. I intend to recommend cron as standard cron daemon package

https://github.com/bit-team/backintime#from-sources esp. the D-Bus-relevant ones

* `python3-dbus`  (**Edit: Added later here - don't forget**)

* `python3-dbus.mainloop.pyqt5`

OK, unit tests look good enough so please do just install above two packages if they are missing (edit) and the missing python3-pyfakefs package.

This should fix the D-Bus warnings... (at least on my Mint 21 VM it works)

I installed them and the warnings are gone, but the errors are still happening.

mdjojm commented 1 year ago

The destination is a nas that I have running with truenas installed mounted with nfs to my linux install.

TrueNAS seems to use ZFS internally by default but a remote mount via nfs implies some permissions "translations" that may be (re)configured in

* `/etc/exports` file a the TrueNAS side (you should have a UI to configure this in TrueNAS)

* `/etc/fstab` file on your computer

Could you please show the mount arguments of your local computer for the TrueNAS (corresponding line in the output of mount).

192.168.***.***:/mnt/main_pool/big_data/jojms_data on /mnt/truenas type nfs4 (rw,relatime,vers=4.2,rsize=131072,wsize=131072,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=192.168.44.91,local_lock=none,addr=192.168.44.92)
/var/lib/snapd/snaps/snapd_17883.snap on /snap/snapd/17883 type squashfs (ro,nodev,relatime,errors=continue,x-gdu.hide)

IP partially redacted.

Edit: A good summary about NFS limitations can be found here (incl. some workarounds): https://serverfault.com/questions/213647/rsync-fails-to-backup-some-files-giving-error-22

NFS won't let you change a file's UID/GID to ones that don't exist on the server

It is super weird as I have used BIT many times to back up stuff to my server using NFS.

buhtz commented 1 year ago

NFS won't let you change a file's UID/GID to ones that don't exist on the server It is super weird as I have used BIT many times to back up stuff to my server using NFS.

This was just a hint. I'm still not sure which direction to go.

Can you please try the last stable release 1.3.2 of BIT (including full --debug output again)? Can you reproduce the error with that version?

aryoda commented 1 year ago

Edit: A good summary about NFS limitations can be found here (incl. some workarounds): https://serverfault.com/questions/213647/rsync-fails-to-backup-some-files-giving-error-22

NFS won't let you change a file's UID/GID to ones that don't exist on the server

It is super weird as I have used BIT many times to back up stuff to my server using NFS.

Me too and it worked very well with BiT.

What I wanted to point out is that

a) a change TrueNAS NFS settings as well as b) a change in the client NFS mount settings or c) changed file ownerships (user or group that does not exist in TrueNAS or is not mapped from client to TrueNAS)

may cause this problem and it is important to find out what is different now.

I stopped using NFS many years ago so I am no specialist here but I will try to find my old internal setup documentation and compare it to your mount attributes...

mdjojm commented 1 year ago

NFS won't let you change a file's UID/GID to ones that don't exist on the server It is super weird as I have used BIT many times to back up stuff to my server using NFS.

This was just a hint. I'm still not sure which direction to go.

Can you please try the last stable release 1.3.2 of BIT (including full --debug output again)? Can you reproduce the error with that version?

I will give it a shot right now.

mdjojm commented 1 year ago

NFS won't let you change a file's UID/GID to ones that don't exist on the server It is super weird as I have used BIT many times to back up stuff to my server using NFS.

This was just a hint. I'm still not sure which direction to go.

Can you please try the last stable release 1.3.2 of BIT (including full --debug output again)? Can you reproduce the error with that version?

How do I choose what version to install?

mdjojm commented 1 year ago

NFS won't let you change a file's UID/GID to ones that don't exist on the server It is super weird as I have used BIT many times to back up stuff to my server using NFS.

This was just a hint. I'm still not sure which direction to go.

Can you please try the last stable release 1.3.2 of BIT (including full --debug output again)? Can you reproduce the error with that version?

So I got BIT 1.3.2 from linux Mint's software manager and this is what the debug is showing.


:~$ backintime-qt --debug
DEBUG: [common/backintime.py:583 argParse] Arguments: {'debug': True} | unknownArgs: []

Back In Time
Version: 1.3.2

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:670 getConfig] config file: /home/joe/.config/backintime/config
DEBUG: [common/backintime.py:671 getConfig] share path: /home/joe/.local/share/backintime
DEBUG: [common/backintime.py:672 getConfig] profiles: 1=Main profile, 2=ipod, 3=hdd2, 4=Google Photos
DEBUG: [common/pluginmanager.py:90 PluginManager.load] Register plugin path /usr/share/backintime/plugins
DEBUG: [common/pluginmanager.py:106 PluginManager.load] Add plugin qt4plugin.py
DEBUG: [common/pluginmanager.py:106 PluginManager.load] Add plugin notifyplugin.py
DEBUG: [common/tools.py:829 keyringSupported] No appropriate keyring found. 'keyring.backends.chainer' can't be used with BackInTime
DEBUG: [common/mount.py:73 Mount.__init__] pw-cache is not running
DEBUG: [common/mount.py:81 Mount.__init__] Call command: /usr/bin/backintime pw-cache start
DEBUG: [common/tools.py:1237 readCrontab] Read 2 lines from users crontab
DEBUG: [common/config.py:1466 Config.removeOldCrontab] Clearing system Back In Time entries
DEBUG: [common/config.py:1500 Config.cronLine] Profile: Main profile | Automatic backup: At every boot/reboot
DEBUG: [common/config.py:1500 Config.cronLine] Profile: ipod | Automatic backup: Disabled
DEBUG: [common/config.py:1500 Config.cronLine] Profile: hdd2 | Automatic backup: Disabled
DEBUG: [common/config.py:1500 Config.cronLine] Profile: Google Photos | Automatic backup: Disabled
DEBUG: [common/tools.py:1274 writeCrontab] Wrote 2 lines to users crontab
DEBUG: [common/tools.py:829 keyringSupported] No appropriate keyring found. 'keyring.backends.chainer' can't be used with BackInTime
DEBUG: [common/mount.py:73 Mount.__init__] pw-cache is not running
DEBUG: [common/mount.py:81 Mount.__init__] Call command: /usr/bin/backintime pw-cache start
DEBUG: [common/configfile.py:529 Config.setCurrentProfile] change current profile: 3=hdd2
DEBUG: [common/tools.py:829 keyringSupported] No appropriate keyring found. 'keyring.backends.chainer' can't be used with BackInTime
DEBUG: [common/mount.py:73 Mount.__init__] pw-cache is not running
DEBUG: [common/mount.py:81 Mount.__init__] Call command: /usr/bin/backintime pw-cache start
DEBUG: [common/configfile.py:529 Config.setCurrentProfile] change current profile: 2=ipod
DEBUG: [common/backintime.py:583 argParse] Arguments: {'debug': True, 'profile_id': 2, 'command': 'backup', 'func': <function backup at 0x7f47a9c21fc0>} | unknownArgs: []

Back In Time
Version: 1.3.2

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:670 getConfig] config file: /home/joe/.config/backintime/config
DEBUG: [common/backintime.py:671 getConfig] share path: /home/joe/.local/share/backintime
DEBUG: [common/backintime.py:672 getConfig] profiles: 1=Main profile, 2=ipod, 3=hdd2, 4=Google Photos
DEBUG: [common/configfile.py:529 Config.setCurrentProfile] change current profile: 2=ipod
DEBUG: [common/pluginmanager.py:90 PluginManager.load] Register plugin path /usr/share/backintime/plugins
DEBUG: [common/pluginmanager.py:106 PluginManager.load] Add plugin qt4plugin.py
DEBUG: [common/pluginmanager.py:106 PluginManager.load] Add plugin notifyplugin.py
DEBUG: [common/snapshots.py:1751 Snapshots.flockExclusive] Set flock /tmp/backintime.lock
INFO: [common/snapshots.py:634 Snapshots.backup] Lock
DEBUG: [common/tools.py:1188 inhibitSuspend] Inhibit Suspend started. Reason: take snapshot
DEBUG: [common/tools.py:829 keyringSupported] No appropriate keyring found. 'keyring.backends.chainer' can't be used with BackInTime
DEBUG: [common/mount.py:73 Mount.__init__] pw-cache is not running
DEBUG: [common/mount.py:81 Mount.__init__] Call command: /usr/bin/backintime pw-cache start
INFO: [common/snapshots.py:665 Snapshots.backup] Take a new snapshot. Profile: 2 ipod
INFO: [common/snapshots.py:1022 Snapshots.takeSnapshot] Call rsync to take the snapshot
DEBUG: [common/snapshots.py:692 Snapshots.backup] Call command "rsync --recursive --times --devices --specials --hard-links --human-readable --links --perms --executability --group --owner --info=progress2 --no-inc-recursive --delete --delete-excluded -v -i --out-format=BACKINTIME: %i %n%L --link-dest=../../20221129-101500-208/backup --chmod=Du+wx --exclude=/mnt/truenas/backups/jojm Backups/ipod backup --exclude=/home/joe/.local/share/backintime --exclude=.local/share/backintime/mnt --include=/media/joe/JOJMS BASED/ --include=/media/joe/ --include=/media/ --exclude=.gvfs --exclude=.cache/* --exclude=.thumbnails* --exclude=.local/share/[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 --include=/media/joe/JOJMS BASED/** --exclude=* / /mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup"
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.Trash-1000" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.Trash-1000/expunged" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.Trash-1000/files" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.Trash-1000/info" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/backdrops" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codepages" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/docs" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/doom" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/icons" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/langs" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/rocks" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/rocks/apps" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/rocks/demos" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/rocks/demos/lua_scripts" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/rocks/demos/pictureflow" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/rocks/games" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/rocks/games/goban" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/rocks/viewers" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/rocks/viewers/lua" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/themes" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/wps" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/wps/JesusLives" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/wps/OverLoad" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/wps/PodMini" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/wps/Rockboxed" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/wps/cabbiev2" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/wps/classic_statusbar" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/wps/sprocket" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/Calendars" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/Contacts" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/FOUND.000" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/FOUND.001" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/FOUND.002" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/Notes" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/Playlists" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/System Volume Information" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/gospels" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/iPod_Control" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/iPod_Control/Device" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/iPod_Control/Music" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/iPod_Control/Music/F00" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/iPod_Control/Music/F01" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/iPod_Control/Music/F02" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/iPod_Control/Music/F03" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/iPod_Control/Music/F04" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/iPod_Control/Music/F05" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/iPod_Control/iTunes" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/Lewis Rossman" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/barely soci" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/darknet d" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/decoding the unkown" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/editing podcast" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/hacked" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/hacker history" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/lemmino" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/mental outlaw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/mkbhd show" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/open source security" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/osint" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/some ordinary podcast" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/the Hacker mind" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/theories of the third kind" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/trash taste" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podcasts/wan show" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podusb" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podusb/e2m" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podusb/e2m/Hermeneutics" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podusb/e2m/book michael eaton" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podusb/e2m/old" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podusb/e2m/term 3" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podusb/e2m/term 3/Introduction to Old Testament Studies" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podusb/e2m/term 3/Person and work of Jesus Christ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podusb/e2m/tts_texts" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podusb/planning" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.BOOTEX.LOG.7HuQIO" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.battery_bench.txt.iFhXdy" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.everything.md5sum.xQKXDs" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.gospels.bmark.0ECDer" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.podcasts.bmark.JkA8MZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.podusb.bmark.In0VTx" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rb-lua_functions.txt.0rCEvv" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.Trash-1000/info/.Bygone Visions of Cosmic Neighbors [LhfCietvDZo].mp3.trashinfo.GK7V9N" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.playlist_control.vB1lqQ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.config.cfg.AzVDdN" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.database.ignore.BxB4ne" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.database_0.tcd.ZQjJRY" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.database_1.tcd.oe4U1t" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.database_2.tcd.I4LZMt" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.database_3.tcd.RLFt0j" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.database_4.tcd.XM3kAF" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.database_5.tcd.MPSFsd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.database_6.tcd.p1k84Y" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.database_7.tcd.eKz5pa" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.database_8.tcd.eNIap8" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.database_idx.tcd.EZuvOZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.most-recent.bmark.cVHK4b" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.nvram.bin.yVLh80" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.rbutil.log.bbhBdy" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.rockbox-info.txt.BU5DZR" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.rockbox.ipod.SmnqWX" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.tagnavi.config.8evfGy" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/.viewers.config.w6pofD" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/backdrops/.JesusLives_bd.bmp.NLvEAi" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/backdrops/.cabbiev2.bmp.pySetN" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.a52.codec.cUZhiS" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.a52_rm.codec.AdftxB" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.aac.codec.RFisMU" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.aac_bsf.codec.7P5EAX" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.adx.codec.Qh1WzY" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.aiff.codec.PHG9nW" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.alac.codec.2YN5GE" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.ape.codec.LKZiCS" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.asap.codec.JnlqKi" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.atrac3_oma.codec.iWt4o9" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.atrac3_rm.codec.NADHDA" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.au.codec.nYqefi" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.ay.codec.I0bBoa" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.cook.codec.NfF9zg" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.flac.codec.Ng9QYP" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.gbs.codec.f8wWRl" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.hes.codec.PQ8d5a" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.kss.codec.IQzOSb" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.mod.codec.CJtTDU" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.mpa.codec.Melf8J" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.mpc.codec.z5hOoI" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.nsf.codec.RzNxhH" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.opus.codec.ekWa56" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.raac.codec.0lQARw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.sgc.codec.du4CM0" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.shorten.codec.Ao5kvP" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.sid.codec.iviVmp" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.smaf.codec.s4Nzrk" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.spc.codec.quIpcV" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.speex.codec.QLYq4y" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.tta.codec.NJ1kqB" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.vgm.codec.HBwE3j" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.vorbis.codec.0gcRkI" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.vox.codec.ub7Az3" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.wav.codec.jsI3C9" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.wav64.codec.HUYGQZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.wavpack.codec.AILtHg" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.wma.codec.UkGwge" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codecs/.wmapro.codec.VvrDxF" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codepages/.932.cp.nso8hR" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codepages/.936.cp.YREnOd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codepages/.949.cp.HzTS2h" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codepages/.950.cp.IOrA3K" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/codepages/.iso.cp.DjQFl1" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/docs/.COPYING.txt.7zXaIZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/docs/.KNOWN_ISSUES.txt.NIe4Op" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/docs/.LICENSES.txt.VClSsH" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/docs/.sample.colours.Oxb3om" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/docs/.sample.icons.vAKCxf" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/doom/.default.dfg.sNl7sl" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/doom/.doomf.wad.jgiWzP" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/doom/.rockdoom.wad.OHi5fa" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/doom/.tranmap.dat.0W231N" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.05-Tiny.fnt.4f7gSW" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.06-Tiny.fnt.zDvRVa" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.07-Fixed.fnt.xpVo6D" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.08-Atadore.fnt.Zc97bm" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.08-Fixed.fnt.VyEmKN" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.08-Namil.fnt.2HNXVR" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.08-Nedore.fnt.eOww6K" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.08-Rockbox-Propfont.fnt.uGc0Nt" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.08-Rockfont.fnt.x6Z07I" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.08-Sazanami-Mincho.fnt.e0VlEV" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.08-Schumacher-Clean.fnt.GPHVqr" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.09-Fixed.gc.MQaeu4" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.09-Nedore.fnt.dIpzf8" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.09-Sazanami-Mincho.fnt.aG7CQh" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.10-Adobe-Helvetica-Bold.fnt.eB7eVw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.10-Adobe-Helvetica-Bold.gc.ewPGxM" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.10-Adobe-Helvetica.fnt.7pkntW" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.10-Adobe-Helvetica.gc.oM9zaZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.10-Artwiz-Snap.fnt.U21RBy" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.10-Fixed.fnt.tw1D14" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.10-Fixed.gc.MjGXz9" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.10-Nimbus.fnt.HylHjV" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.10-Nimbus.gc.fj9wBe" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.10-ProFont.fnt.wDeChJ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.10-Sazanami-Mincho.fnt.4oYnSr" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.11-Nimbus.fnt.9wDYpB" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.11-ProFont.fnt.2Y9A7S" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.11-Sazanami-Mincho.fnt.Y9JhTp" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.12-Adobe-Helvetica-Bold.fnt.C004IZ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.12-Adobe-Helvetica-Bold.gc.6wt66L" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.12-Adobe-Helvetica.fnt.Ho6Px5" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.12-Adobe-Helvetica.gc.C0Mg1O" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.12-Fixed-SemiCond.fnt.LU4zyb" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.12-Fixed-SemiCond.gc.i8RzM3" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.12-Nimbus.fnt.AalEsR" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.12-Nimbus.gc.kQD6Hw" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.12-ProFont.fnt.6tquQ0" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.12-Sazanami-Mincho.fnt.HRdLfY" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.12-Terminus.fnt.oE1QQu" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.12-Terminus.gc.8ph4iK" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.13-Fixed-SemiCond-Bold.fnt.192oJJ" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.13-Fixed-SemiCond.fnt.sQVzYd" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.13-Fixed.fnt.ASohPs" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.13-Nimbus.fnt.Fm0DIK" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.13-Sazanami-Mincho.fnt.w2G3Pr" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.14-Adobe-Helvetica-Bold.fnt.TRObvx" failed: Invalid argument (22)
notify-send Back In Time (joe) : ipod Error: rsync: [receiver] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/.rockbox/fonts/.14-Adobe-Helvetica-Bold.gc.jo7c51" failed: Invalid argument (22)
Killed
DEBUG: [common/tools.py:829 keyringSupported] No appropriate keyring found. 'keyring.backends.chainer' can't be used with BackInTime
DEBUG: [common/mount.py:73 Mount.__init__] pw-cache is not running
DEBUG: [common/mount.py:81 Mount.__init__] Call command: /usr/bin/backintime pw-cache start
buhtz commented 1 year ago

Thanks for that.

The error also appears in the latest stable release 1.3.2. If @aryoda doesn't have another idea about it I would say this is an indication about that my PR #1351 doesn't introduce that problem. 🎉

The second good news are that this further narrows down the possible causes. 😄

You can try to run rsync without BIT and look if the same errors occur.

mdjojm commented 1 year ago

The destination is a nas that I have running with truenas installed mounted with nfs to my linux install.

TrueNAS seems to use ZFS internally by default but a remote mount via nfs implies some permissions "translations" that may be (re)configured in

* `/etc/exports` file a the TrueNAS side (you should have a UI to configure this in TrueNAS)

I used cat and got this from /etc/exports

V4: / -sec=sys
/mnt/main_pool/big_data/jojms_data
* `/etc/fstab` file on your computer
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/nvme0n1p3 during installation
UUID=807657ec-7ccf-4e3c-a96f-7e4e9bd918ef /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/nvme0n1p2 during installation
UUID=251F-02B6  /boot/efi       vfat    umask=0077      0       1
/swapfile                                 none            swap    sw              0       0

Could you please show the mount arguments of your local computer for the TrueNAS (corresponding line in the output of mount).

Edit: A good summary about NFS limitations can be found here (incl. some workarounds): https://serverfault.com/questions/213647/rsync-fails-to-backup-some-files-giving-error-22

NFS won't let you change a file's UID/GID to ones that don't exist on the server

mdjojm commented 1 year ago

Thanks for that.

The error also appears in the latest stable release 1.3.2. If @aryoda doesn't have another idea about it I would say this is an indication about that my PR #1351 doesn't introduce that problem. tada

The second good news are that this further narrows down the possible causes. smile

You can try to run rsync without BIT and look if the same errors occur.

You are right after running rsync I had the same issues! Do you think it is a issue with the way the nas is set up?

aryoda commented 1 year ago

THX for testing v1.3.2, so this is no regression in the current dev version.

To rule out (or identify) NFS as problem the simplest way would be to use one file from the error list and

  1. copy it to the TrueNAS into the same target folder (if it not yet exists)
  2. check the owner and group of the source file (ls -l)
  3. try to chgrp on the target file with the same group name as on the source file

If this throws an error it is a strong indication for a NFS or TrueNAS file system issue...

What we didn't discuss so far: It seems to happen only on hidden files starting with a dot in the file name.

mdjojm commented 1 year ago

So I sent it from my ipod to my ssd and it did it flawlessly. (except for a font file but I have always had issues with that and don't really care lol.)

So it is an issue with the nas.

mdjojm commented 1 year ago

THX for testing v1.3.2, so this is no regression in the current dev version.

To rule out (or identify) NFS as problem the simplest way would be to use one file from the error list and

1. copy it to the TrueNAS into the same target folder (if it not yet exists)

2. check the owner and group of the **source** file  (`ls -l`)

Folder on nas.

ls -l
total 9
drwx------ 2 nobody nogroup 10 Oct 19  2021 Rockboxed

Original folder. drwxr-xr-x 2 joe joe 4096 Oct 19 2021 Rockboxed

3. try to `chgrp` on the target file with the same group name as on the source file
 chgrp joe Rockboxed
chgrp: changing group of 'Rockboxed': Invalid argument

If this throws an error it is a strong indication for a NFS or TrueNAS file system issue...

What we didn't discuss so far: It seems to happen only on hidden files starting with a dot in the file name.

Looking back at the errors it seems like there are some files without dots also having issues. Like; notify-send Back In Time (joe) : ipod Error: rsync: [generator] chgrp "/mnt/truenas/backups/jojm Backups/ipod backup/backintime/joe-System-Product-Name/joe/2/new_snapshot/backup/media/joe/JOJMS BASED/podusb

aryoda commented 1 year ago

chgrp joe Rockboxed chgrp: changing group of 'Rockboxed': Invalid argument

Perfect, same error message :-)

My old nfs settings were using NFS3 not 4, and these settings:

nfs auto,nolock,users,rsize=32768,wsize=32768,atime,auto,rw,dev,exec,suid

In the exports file on the NAS I had these attributes:

(rw,async,no_wdelay,insecure,no_root_squash,all_squash,insecure_locks,anonuid=1026,anongid=100)

"*squash" and and the "anon" attributes were tricky (you have to find out existing group and user id on user NAS)

Edit: I guess the group ID for "joe" on your client is different on the NAS (if "joe" exists - anyhow the NAS does not have the group ID so you have to map/translate the group id somehow via the attributes...)

mdjojm commented 1 year ago

chgrp joe Rockboxed chgrp: changing group of 'Rockboxed': Invalid argument

Perfect, same error message :-)

My old nfs settings were using NFS3 not 4, and these settings:

nfs auto,nolock,users,rsize=32768,wsize=32768,atime,auto,rw,dev,exec,suid

In the exports file on the NAS I had these attributes:

(rw,async,no_wdelay,insecure,no_root_squash,all_squash,insecure_locks,anonuid=1026,anongid=100)

"squash" and and the "anon*" attributes were tricky (you have to find out existing group and user id on user NAS)

Edit: I guess the group ID for "joe" on your client is different on the NAS (if "joe" exists - anyhow the NAS does not have the group ID so you have to map/translate the group id somehow via the attributes...)

You said you moved from nfs is there a better system to use?

aryoda commented 1 year ago

You said you moved from nfs is there a better system to use?

Very good question :+1:

Not really. I am using CIFS now since the NAS has better UI-support to configure this but I never cared about user rights because everyone can either access all files or nothing on the same share (mounted remote folder).

I created different mounts for different purposes with different access restrictions and backup plans.

AFAIR "all or nothing" was the reason to use all_sqash for NFS which translates every user and group to the anonymous user and anonuid=1026,anongid=100 specified on the NAS-side which user and group id to use for the anonymous user/group.

aryoda commented 1 year ago

I think this is no BiT bug and I leave the issue open until @mdjojm can confirm this (please post the solution here if you find one. THX!)

mdjojm commented 1 year ago

I will be messing around with the nas until I find a solution and I will keep you guys posted! I love this software as it is the only open source one I have found to reliably work with a nas.

buhtz commented 1 year ago

I also use NFS to mount volumes/shares from the NAS (running Debian 11).

But with Back In Time I use "SSH snapshot profiles" only. In that case you don't need to take care of mounting.

aryoda commented 1 year ago

But with Back In Time I use "SSH snapshot profiles" only. In that case you don't need to take care of mounting.

Good hint, we should document this as a best practice somewhere

mdjojm commented 1 year ago

I also use NFS to mount volumes/shares from the NAS (running Debian 11).

But with Back In Time I use "SSH snapshot profiles" only. In that case you don't need to take care of mounting.

I will definitely look into this.

mdjojm commented 1 year ago

I got it working!

I messed around with the truenas /Sharing/smb/edit filesystem acl settings changed user, group, and everyone permissions and checked the box under "Apply permissions recursively". I also changed the NFS map all user and group to joe (I made a group and user for joe). I set up smb to my pc which I will probably change to as it uses a password.

After doing that and sleeping on it BIT works with smb if I run the root version.

aryoda commented 1 year ago

Great to hear it works now!

I messed around with the truenas /Sharing/smb/edit filesystem acl settings changed user, group, and everyone permissions and checked the box under "Apply permissions recursively". I also changed the NFS map all user and group to joe (I made a group and user for joe).

Did BiT work then with NFS or was all this without success?

I set up smb to my pc which I will probably change to as it uses a password. After doing that and sleeping on it BIT works with smb if I run the root version.

SMB is definitely easier but why do you need to run BiT as root (or asked differently: What went wrong when using BiT as normal user)?

mdjojm commented 1 year ago

Great to hear it works now!

I messed around with the truenas /Sharing/smb/edit filesystem acl settings changed user, group, and everyone permissions and checked the box under "Apply permissions recursively". I also changed the NFS map all user and group to joe (I made a group and user for joe).

Did BiT work then with NFS or was all this without success?

When I run BIT with root then it works with nfs and smb. (Although I am getting some chown errors with nfs right now but as far as I can tell all the files are making their way over.)

I set up smb to my pc which I will probably change to as it uses a password. After doing that and sleeping on it BIT works with smb if I run the root version.

SMB is definitely easier but why do you need to run BiT as root (or asked differently: What went wrong when using BiT as normal user)?

As of now for some reason on Linux it isn't giving me write access to my nas using smb just read unless I use root.(It works fine on windows. Not a big problem for me as I don't mind running BIT as root.)

aryoda commented 1 year ago

As of now for some reason on Linux it isn't giving me write access to my nas using smb just read unless I use root.(It works fine on windows. Not a big problem for me as I don't mind running BIT as root.)

Have you created a credentials file for the non-root user?

Your mount line in /etc/fstab should look similar to this:

//192.168.178.123/nas_data cifs auto,rw,nounix,users,uid=user123,gid=group123,credentials=/etc/cifs_smb_user_pwd 0 0

The credentials file has a content like this and must be chmod 644d:

username=user123
password=super_secret
mdjojm commented 1 year ago

As of now for some reason on Linux it isn't giving me write access to my nas using smb just read unless I use root.(It works fine on windows. Not a big problem for me as I don't mind running BIT as root.)

Have you created a credentials file for the non-root user?

Yeah I have

Your mount line in /etc/fstab should look similar to this:

I have tried a lot of things in the fstab file most of them didn't work

//192.168.178.123/nas_data cifs auto,rw,nounix,users,uid=user123,gid=group123,credentials=/etc/cifs_smb_user_pwd 0 0

So far I have tried.

//192.***.***.***/mnt/main_pool/big_data/jojms_data cifs auto,rw,nounix,users,uid=user123,gid=group123,credentials=/etc/.nas_creds 0 0 /mnt/truenassmb

mount: /etc/fstab: parse error at line 14 -- ignored

//192.***.***.***/mnt/main_pool/big_data/jojms_data cifs auto,rw,nounix,users,uid=user123,gid=group123,credentials=/etc/.nas_creds 0 0 This did nothing.(I am not sure if it mounted and if it did I do not know where.)

Just in the terminal not in fstab. sudo mount -t cifs //192.168.***.***/jojms_data -o cred=/etc/.nas_creds,vers=2.0 /mnt/truenassmb sudo mount -t cifs //192.168.***.***/jojms_data -o credentials=/etc/.nas_creds,vers=2.0 /mnt/truenassmb These both work but don't give me permissions.

The credentials file has a content like this and must be chmod 644d:

username=user123
password=super_secret

Yep my file does look like that.

aryoda commented 1 year ago

So far I have tried.

//192.***.***.***/mnt/main_pool/big_data/jojms_data cifs auto,rw,nounix,users,uid=user123,gid=group123,credentials=/etc/.nas_creds 0 0 /mnt/truenassmb

fstab has a different syntax than mount: After "0 0" there is no more mount path "/mnt/truenassmb" (remove this from line 14 in fstab).

Don't forget to sudo chown root:root /etc/.nas_creds + sudo chmod 644 /etc/.nas_creds