View previous topic :: View next topic |
Author |
Message |
abuthemagician n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 13 Jul 2004 Posts: 23
|
Posted: Wed Jul 14, 2004 7:29 pm Post subject: Cannot modprobe tulip |
|
|
when i try to modprobe Tulip, i get:
FATAL: Could not load /lib/modules/2.6.5-gentoo/modules.dep: No such file or directory
I just did a fresh network install using the gentoo-sources kernel and followed the install instructions to a T. Any ideas? My kernel version is 2.4.26 |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
Mickys21 n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
![](images/avatars/gallery/Simpsons/simpsons_homer.gif)
Joined: 22 Jul 2003 Posts: 61 Location: Ipswich, UK
|
Posted: Wed Jul 14, 2004 7:35 pm Post subject: |
|
|
After compiling the kernel...
Code: |
make menuconfig
make
| ...etc
make sure you do a
Code: |
make modules_install
|
had a similar problem myself
if not just double check you included the tulip mod in the kernel
hope that helps[/code] |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
abuthemagician n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 13 Jul 2004 Posts: 23
|
Posted: Wed Jul 14, 2004 7:40 pm Post subject: |
|
|
i think i just left it out of my kernel config.... guess i'll have to recompile the kernel.... |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
abuthemagician n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 13 Jul 2004 Posts: 23
|
Posted: Wed Jul 14, 2004 7:50 pm Post subject: |
|
|
nope. even after adding it as a module and running make modules_install i still get the same thing
this is what i ran after make menuconfig
make dep && make bzImage modules modules_install |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
Mickys21 n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
![](images/avatars/gallery/Simpsons/simpsons_homer.gif)
Joined: 22 Jul 2003 Posts: 61 Location: Ipswich, UK
|
Posted: Wed Jul 14, 2004 8:39 pm Post subject: |
|
|
this is how you compile a 2.4 kernel.. a 2.6 kernel is slighty different..
after a make menuconfig
type
"make"
when that is finished type...
"make modules"
and then
"make modules install"
after that mount boot, then
cp /usr/src/linux-2.6.5/arch/i386/boot/bzImage /boot
i had a simlar problem saying...
"FATAL: Could not load /lib/modules/2.6.x-gentoo/modules.dep: No such file or directory"
i'd forgot to do "make modules_install" so the following link did not exist |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
abuthemagician n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 13 Jul 2004 Posts: 23
|
Posted: Wed Jul 14, 2004 8:43 pm Post subject: |
|
|
got it working. can't have a bootsplash like the live cd yet, going to try later tho. Now i gotta get xfree86 installed, gnome and some other stuff.. Gotta love Virtual Server 2005... my VPC2004 trial ran out, but VS2005 is the same thing pretty much |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
jdgill0 Veteran
![Veteran Veteran](/images/ranks/rank_rect_5_vet.gif)
![](images/avatars/21334652964256d54fd1047.jpg)
Joined: 25 Mar 2003 Posts: 1366 Location: Lexington, Ky -- USA
|
Posted: Thu Jul 15, 2004 12:38 pm Post subject: |
|
|
Mickys21 wrote: | after a make menuconfig
type
"make"
when that is finished type...
"make modules"
and then
"make modules install"
|
If you do "make" you don't have to do "make modules" with 2.6 kernel, because "make" does that by default.
To see a list of default targets for "make"
It will show "vmlinux, bzImage, and modules" are default targets. Since I use bzImage only, I typically do:
Code: | make bzImage modules modules_install |
|
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|