> Le 20-01-2021, à 10:15:47 -0500, Stefan Monnier a écrit : >>> # find /dev -follow -printf "" >>You want `-mount` in there so you don't enter things like `/dev/fd` or >>`/dev/shm`. > I tried that on /
Not a good idea: the `-mount` will then preventing it from entering `/dev` since `/dev` is usually another mount point (using a sort of tmpfs). > and got no output at all. Since the problem is expected to be in /dev, I'd do: find /dev -mount -follow -printf "" Of course, I don't actually know if that'll catch the source of your problem. Stefan