"The backup failed.
There was a failure in preparing the backup image of one of the volumes in the backup set. (0x807800C5)
Additional Information:
The mounted backup volume is inaccessible. Please retry the operation. (0x8078004F)."
From my research, it seems the solution might be to add the following to the smb.conf file:
"strict allocate = yes"
According to:
https://www.samba.org/samba/docs/man/ma ... onf.5.html
"When this is set to yes the server will change from UNIX behavior of not committing real disk storage blocks when a file is extended to the Windows behavior of actually forcing the disk system to allocate real storage blocks when a file is created or extended to be a given size. In UNIX terminology this means that Samba will stop creating sparse files."
It goes on to say that with EXT4 file systems (which is what my AS5002T formatted my drive as), this shouldn't be a problem. However, making that change is beyond me (and, probably beyond most normal people). So, could you please add an option somewhere in the Control Center where we could just check a box to set this option?
Just for giggles, here's what I've found that I'd have to do to change that one line: enable ssh login in ADM, use ssh to login, change the directory and edit the file with vi. None of which means anything to me.
Looking at the Services app under Terminal, it looks like SSH has been defaulted on and only [root] and [admin] can use it (which is odd, since I keep seeing stuff about disabling logging on via root - but, I digress since what I know of Linux can only be expressed with negative numbers). According to:
https://amigotechnotes.wordpress.com/20 ... ble-files/
when I login:
"When use ssh to login, use ssh root@[IP] or some files won’t be executable or editable. The web admin must be login with port 8000 by default."
So, I assume it would be something like "ssh root@xxx.xxx.xxx.xxx:8000" (but that might be too easy).
According to that last reference, smb.conf is at /volume0/usr/builtin/etc/samba/smb.conf. So, I assume I'd:
"cd /volume0/usr/builtin/etc/samba"
and then:
"vi smb.conf"
Then, according to:
http://www.cs.colostate.edu/helpdocs/vi.html
I'd go to the last line of the file with:
:$<Return> or G
Hit "I" to insert text, type in "strict allocate = yes", and then hit [ESC] to stop inserting text. Then I'd save and exit with:
Beats me how or if I would logoff the SSH session.