79566120

Date: 2025-04-10 08:34:32
Score: 0.5
Natty:
Report link

When mounting a fuse-type mount, the actual fuse program is ran as a service (daemon) in the system.

When you access the mount point, doing so under strace (example: strace npm ci) won't trace the fuse service.

To debug the actual fuse, you should mount it with the -o debug flag.

And if you really want to strace it, find the service PID using ps and attach it to strace using strace -p.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Oren Kishon