[Bug]: The backup disk image could not be created #169
-
Describe the BugI receive the error "The backup disk image could not be created" when trying to backup for the first time Expected BehaviorA successful backup! Steps to Reproduce
How You're Launching the Container
/home/ubuntu/timemachine/jeremy.conf:
Container Logs
Additional Context/mnt/timemachine/backup:
The I saw in #84 that writing to NTFS would not be supported. The underlying filesystem is ext4, in this case. I tried vfat/FAT32, but that didn't seem to work, due to a lack of permissions support. I also found in a few instances people using ext4 without problems. Any ideas? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
I bumped the debug level up to "3" and found this:
There are file access attempts previously that seem to have run fine:
|
Beta Was this translation helpful? Give feedback.
-
I was able to get this working:
Until I added the umask flag ( |
Beta Was this translation helpful? Give feedback.
I was able to get this working:
sudo mount -t vfat /dev/sda3 /mnt/timemachine/ -o rw,uid=1000,gid=1000,umask=007,dmask=007
Until I added the umask flag (
0000
initially) it wasn't working. 🤷🏻♂️