Re: How to know when a fuse filesystem is properly unmounted

2025-05-20 Thread Tim Woodall
On Mon, 19 May 2025, songbird wrote: Tim Woodall wrote: Short script below that shows my problem. fusermount -u (and umount) both return before all the data is written out to the backing file on a fuse FS. Is there any way to tell when this is complete? I tried running fuse in the foreground a

Re: How to know when a fuse filesystem is properly unmounted

2025-05-19 Thread songbird
Tim Woodall wrote: > Short script below that shows my problem. > > fusermount -u (and umount) both return before all the data is written > out to the backing file on a fuse FS. Is there any way to tell when this > is complete? I tried running fuse in the foreground and then doing a > wait $PID b

How to know when a fuse filesystem is properly unmounted

2025-05-19 Thread Tim Woodall
Short script below that shows my problem. fusermount -u (and umount) both return before all the data is written out to the backing file on a fuse FS. Is there any way to tell when this is complete? I tried running fuse in the foreground and then doing a wait $PID but that didn't help, I still