|
|
发表于 2004-11-1 21:36:09
|
显示全部楼层
打开/etc/rc.sysinit
在udev start以后加上两行
mknod /dev/nvidia0 c 195 0
mknod /dev/nvidiactl c 195 255
最后的结果是这样的
quote:
--------------------------------------------------------------------------------
# Fix console loglevel
if [ -n "$LOGLEVEL" ]; then
/bin/dmesg -n $LOGLEVEL
fi
if [ -f /etc/udev/udev.conf ];then
. /etc/udev/udev.conf
fi
[ -x /sbin/start_udev ] && /sbin/start_udev
mknod /dev/nvidia0 c 195 0
mknod /dev/nvidiactl c 195 255
# Initialize hardware
if [ -f /proc/sys/kernel/modprobe ]; then
if ! strstr cmdline nomodules && [ -f /proc/modules ] ; then
sysctl -w kernel.modprobe="/sbin/modprobe" >/dev/null 2>&1
sysctl -w kernel.hotplug="/sbin/hotplug" >/dev/null 2>&1
这样x的问题就应该解决了
这个是在redhat区找到的帖子 作者是fudaming |
|