0
votes
0answers
378 views

Safely unmounting FUSE filesystems

Usually when I do umount mountpoint it may block until the cached data is actually written to the device, so I expect umount mountpoint && make_the_device_unavailable_now to be safe. Hovewer ...