On Sun, Jan 21, 2001 at 02:46:14PM +0800, Livia Admin wrote: :ey guys.. can anyone help me in creating my /dev/psaux? :I tried './MAKEDEV psaux' and says dont know how to make device... and :also tried './MAKEDEV -d psaux' and still the same problem.. i'm sure :psaux mouse support in kernel is enabled. I'm using kernel-2.4.0
I know you've figured out MAKEDEV now, but just some info on doing it the hard way: mknod /dev/psaux c 10 1 general form mknod [OPTION]... NAME TYPE [MAJOR MINOR] you can get the major and minor numbers from /usr/src/linuc/Documentation/devices.txt if you ever need to make a really strange device for some reason (or find yourself without and hardrive devices *and* without without MAKEDEV, don't laugh, if you administer a RH box and have to use the "rescue" mode of the CDROM this is exactly where you'll be!!) -Jon