On Fri, 2001-10-19 at 21:57, mmissett wrote: > >Probably you can try to create a character device by > >mknod /dev/input/mice c 13 63 > > This produced the answer: "mknod /dev/input/mice: > No such file or directory" > Now I know I was trying to *create* a file, but that > is the message I got.
/dev/input is the file (or directory ;) that doesn't exist. mkdir -p /dev/input && mknod /dev/input/mice c 13 63 -- Earthling Michel D�nzer (MrCooper)/ Debian GNU/Linux (powerpc) developer XFree86 and DRI project member / CS student, Free Software enthusiast

