Nick Smith wrote: >im not running udev and the mounting proc didnt help, its still >complaining about /dev/console, and that file is there. is there >a way to mount /dev if you arent running udev? or is it another >problem? > >
Ok, how about: cd /dev /sbin/MAKEDEV generic And if THAT doesn't work....I guess you'll have to do things the really old fashioned way: cd /dev /bin/mknod console c 5 1; /bin/chown root:tty console; /bin/chmod 600 console /bin/mknod null c 1 3; /bin/chmod 666 null /bin/mknod zero c 1 5; /bin/chmod 666 zero I am just guessing that if console doesn't exist, then neither will /dev/null or /dev/zero, both of which are important also. I hope this helps. -Richard -- [email protected] mailing list

