I'm a total newbie.....I'm running RH 9....
after compiling to kernel 2.6.3,I rebooting my computer and in booting procces of redhat 9 default kernel which usually presenting the message like :
Initialing USB Controller (USB uhci) [OK]
Initialing USB Keyboard [OK]
Initialing Mouse {OK]
but in booting proces of kernel 2.6.3, exactly presenting some errors booting process like this :
Initialing USB Controller (USB uhci) : Fatal : Modul usb_uhci not found [Failed]
Initialing USB Keyboard : Fatal : Modul Keybdev not found [Failed]
Initialing Mouse : Fatal : Modul Mousedev not found [Failde]
Applying iptables firewall rules bal bla bla bla............
try IP tables-restore-h or iptables--restore bala bla bla : [Failed]
Flushing all current rules and user defined cain : iptables : v1.7a can't init alize iptables "table" filter bla bla bla [Failed]
clearing all current rules and user defined cain : iptables : v1.7a can't init alize iptables "table" filter bla bla bla [Failed]
so what the solution for this problem.....I want to recompile kernel 2.6.3
its seems that you didnt comp
its seems that you didnt compile usb support in to your kernel
and other iptables message comes after installing module-tools
you have to do change something that i cant remember
this change is written in module-tools FAQ this specfic Red hat problem
i have same problem solved it after reading FAQ
Thanks and Regards
Muhammad Talha
where to find the module-tools FAQ you mentioned?
I tried to compile kernel 2.6.9 and met exactly the same problem described in the original post. Haven't found any workable solution online yet...
Error Process Booting After Compiling Kernel 2.6.3
add to your modprobe.conf.custom (the file which you have included from /etc/modprobe.conf)
alias usb-controller1 uhci-hcd # if you have an uchi capable controller
alias usb-controller2 ohci-hcd # if you have an ochi capable controller
alias usb-controller3 ehci-hcd # if you have an echi capable controller
...then
find and comment out the following lines in the /etc/rc.d/rc.sysinit
action $"Initializing USB keybord" ....
action $"Initializing USB mouse" ....
or yet better add a guard variable to the init script, so you can do
if [ "$KERNEL_2_6"="1" ]; then
.....
fi
to be able to load the modules for the 2.4.x kernel.
Expect the mouse in /dev/input/mice
Best regards
In my sysinit script I see th
In my sysinit script I see the following line:
---------------------------------
if [ $usb = "1" ]; then
needusbstorage=`LC_ALL=C grep -e "^I.*Cls=08" /proc/bus/usb/devices 2>/dev/null`
LC_ALL=C grep 'hid' /proc/bus/usb/drivers || action $"Initializing USB HID interface: " modprobe hid 2> /dev/null
action $"Initializing USB keyboard: " modprobe keybdev 2> /dev/null
action $"Initializing USB mouse: " modprobe mousedev 2> /dev/null
fi
if [ -f /fastboot ] || LC_ALL=C grep -iq "fastboot" /proc/cmdline 2>/dev/null ; then
fastboot=yes
----------------------------------
and in modprobe.conf I see the following line :
----------------------------------
alias usb-controller ehci-hcd
alias usb-controller1 usb-uhci
----------------------------------
I don't understand about your explanation....so what must I change and please give me one example..because I really don't understand
I have the same errors
I have same problems please helps somebody how to get them work I have installed USB but it still give the same things when it tries to initialise the keyboard and mouse. And same with ip-tables plaease help
thankyou in advance
USB and other boot up matters
your files (rc.sysinit and modprobe)seem to be okay. i would suggest you check this post:
www.linux-sys.org/upgrading/migration26.html
I had the same error messages
I had the same error messages and I compiled USB support into the kernel. From what I can tell if it can't find the modules then it displays the message whether the support is there or not. In my case USB works fine, it just spits out the messages.