Julien Pierre
Julien Pierre
Here is the log. I'm really not too sure what to make of it, but one of the operations is triggering the bug. My OS is entirely up to date...
More diagnostic - looks like this is related to the img file. ``` madbrain@pi64:~ $ ls -al /backup/pi64/pi64-tar-backup-20240525-180707 ^C madbrain@pi64:~ $ ls -al /backup/pi64/pi64-tar-backup-20240525-180707 ^C madbrain@pi64:~ $ ls -al /backup/pi64/pi64-tar-backup-20240525-180707/*...
trailing output of ls with that file . ``` close(3) = 0 futex(0x7fb41918cc, FUTEX_WAKE_PRIVATE, 2147483647) = 0 statx(AT_FDCWD, "/backup/pi64/pi64-tar-backup-20240525-180707/pi64-backup.img", AT_STATX_SYNC_AS_STAT|AT_SYMLINK_NOFOLLOW|AT_NO_AUTOMOUNT, STATX_MODE|STATX_NLINK|STATX_UID|STATX_GID|STATX_MTIME|STATX_SIZE, ``` Looks like it's hanging in statx. Probably more...
Ha ! Yeah, I have been coding since 1989. That was some time before Linux. My DOS & OS/2 days. I'm still mainly a C/C++ programmer nowadays. I actually found...
I figured I wouldn't be the first one. Unfortunately, so far, I left the problem-causing entry in fstab for /backup, and this happened. ``` madbrain@pi64:~ $ sudo dd if=/dev/sda1 of="/backup/test.img"...
I always used CIFS/Samba for my backups. I never saw any hang on Buster, only Bookworm. Not sure if it's the tar command - that sounds unlikely, but perhaps it...
Some progress. I wrote the following script to simulate raspiBackup . ``` #!/bin/bash echo "clean up previous test" rm /backup/test/* echo "stopping services" systemctl stop smokeping && systemctl stop apache2...
After a reboot, had no issue with the following script : ``` root@pi64:~# cat simbackup.sh #!/bin/bash echo "clean up previous test" rm /backup/test/* echo "stopping services" systemctl stop smokeping &&...
Yes, it's possible that redirection has something to do with it. However, I see the problem even without verbose/debug logging enabled, so I'm not sure that it does. What would...
Tried it against a Windows 10 share - same problem, hangs in ls -al .