Results 345 comments of DUO Labs

Seems to be an error with `posix_openpt (2: No such file or directory)) = 86`

`cat /dev/ptmx` gives `cat: /dev/ptmx: No such file or directory`. However, doing `chmod 666 diff/pts/ptmx` gives me `No such device`.

It seems that bindfs fails to open files that are submounts/different filesystems, which is what `/dev/ptmx` is.

> It seems unrealistic, possibly even technically impossible with FUSE, to make bindfs emulate magic filesystems like /proc and /dev entirely faithfully. Yes, it seems that for some reason, FUSE...

> Yes, it seems that for some reason, FUSE does not react well with devpts. I take that back, that's not why. Apparently, you can't `cat` certain character files (which...

This also affects yarn which reads `/proc/self/stat`

It seems that bindfs does not understand that `stat` is not an empty folder, but rather just exposes a 0-byte file instead.

SSHFS supports this with `-o direct_io`, but bindfs doesn't seem to support this: `fuse: unknown option(s): `-o direct_io`

[ptfs](https://github.com/ada-fs/ptfs) works, but it is linked against fuse2. However, `--forward-odirect` doesn't seem to do anything.

You have to set `int direct_io;` then `fi->direct_io=1;`