-- 以下是我的问题 Starting udevd... /etc/init.d/rcS: /etc/init.d/rcS: 7: /sbin/udevd: not found /etc/init.d/rcS: /etc/init.d/rcS: 8: /sbin/udevstart: not found
可是在/sbin/下确实存在这两个文件,而且/etc/udev/下面的文件我也已经建好。 我在进入shell后,手动运行: /sbin $ udevd --daemon /bin/sh: udevd: not found 还是一样的情况,请高人指点迷津
If this is a new install and configuring it for a Pure UDEV system, or you get an error when you finally reboot after installing udev and setting it correctly like this: WARNING: Unable to open an initial console. It is because there is no /dev/console and /dev/null. What is happening is that /dev/console is needed before udev is populating the /dev folder. You can try this by manually deleting all static devices in /dev folder from another system, then rebooting to the udev system. You will get the console error. You will also notice that it is faulting at a time before it normally loads udev. If you just make /dev/console though it will then fail for /dev/null. So it needs both of those static in /dev, at least for the time being. The fix for now is to manually create them in your /dev folder.
cd /dev mknod -m 660 console c 5 1 mknod -m 660 null c 1 3