bindfs
bindfs copied to clipboard
`Input/output error` when accessing `/dev/pts/0`
I'm using sudo bindfs -o direct_io,allow_other,dev /dev run/dev
. However, accessing run/dev/pts/0
gives me Input/output error
.
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
.
Yeah, sorry, I have very little time to work on bindfs these days :disappointed:
It seems unrealistic, possibly even technically impossible with FUSE, to make bindfs emulate magic filesystems like /proc
and /dev
entirely faithfully.
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 does not react well with devpts.
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 is what /dev/ptmx
and /dev/pts/*
are) that are on ext4.