Linux - HardwareThis forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
You wouldn't think it'd be a problem, but it is....
I am installing a 64bit Gentoo on an AMD64 arch. My wireless network card has the rt73usb chipset which is supported by the Kernel. rt73usb is compiled into the kernel and not as a module.
My problem is that init starts to boot before all the device drivers are loaded. As a result, the init scripts try to bring up the wireless interface before it exists. As a result, my network services don't start and I have to start them manually.
Is there anyone out there who knows a way to stop the init process long enough for all the hardware to be loaded???
I had the same / a similar (?) problem with kubuntu 8.04.2.
Rather than re-write the init scripts, I just bring up my wireless with these lines in /etc/rc.local just before the final exit 0 in that file:
Code:
# restart wireless networking, or it doesn't work
ifdown eth1
ifup eth1
replace eth1 with whatever the name of your wireless interface is.
Now the wireless interface comes up at boot (if I am in range).
What you propose won't work. For one, there is no /etc/rc.local directory.
Different distros put rc.local in different places and I am not familiar with Gentoo, but a quick search shows that Gentoo may use the file /etc/conf.d/local.start instead:
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.