- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- error compiling/installing e1000 NIC module
Operating System - Linux
1823749
Members
3875
Online
109664
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2008 10:24 AM
02-06-2008 10:24 AM
Please help asap.
rpms of Kernel-source, gcc, gcc++, are installed.
I have to install the latest module of Intel's e1000 NIC on my Linux Distro(SUSE Linux Ent 10 SP 1).
To remove the existing one(if any)
# rmmod e1000
no issue
then to install the latest one(downloaded from intels website)
# tar zxvf e1000-7.4.27.tar.gz
# cd e1000-7.4.27
# make install
make -C /usr/src/linux SUBDIRS=/root/Desktop/lan/drivers/e1000-7.4.27/src modules
make[1]: Entering directory `/usr/src/linux-2.6.16.46-0.12'
Makefile:450: .config: No such file or directory
WARNING: Symbol version dump /usr/src/linux-2.6.16.46-0.12/Module.symvers
is missing; modules will have no dependencies and modversions.
CC [M] /root/Desktop/lan/drivers/e1000-7.4.27/src/e1000_main.o
/bin/sh: scripts/basic/fixdep: No such file or directory
make[2]: *** [/root/Desktop/lan/drivers/e1000-7.4.27/src/e1000_main.o] Error 1
make[1]: *** [_module_/root/Desktop/lan/drivers/e1000-7.4.27/src] Error 2
make[1]: Leaving directory `/usr/src/linux-2.6.16.46-0.12'
make: *** [default] Error 2
then i change the directory
# cd /lib/modules/2.6.16.46-0.12-smp/kernel/drivers/net/e1000
then
# modprobe e1000.ko
FATAL: Could not load /lib/modules/2.6.16.46-0.12-default/modules.dep: No such file or directory
# modprobe e1000
FATAL: Could not load /lib/modules/2.6.16.46-0.12-default/modules.dep: No such file or directory
# insmod e1000
insmod: can't read 'e1000': No such file or directory
# insmod e1000.ko
insmod: error inserting 'e1000.ko': -1 Invalid module format
e1000.ko is present in the /lib/modules/2.6.16.46-0.12-smp/kernel/drivers/net/e1000 directory....then Why I am getting the above errors ?
Please help asap
rpms of Kernel-source, gcc, gcc++, are installed.
I have to install the latest module of Intel's e1000 NIC on my Linux Distro(SUSE Linux Ent 10 SP 1).
To remove the existing one(if any)
# rmmod e1000
no issue
then to install the latest one(downloaded from intels website)
# tar zxvf e1000-7.4.27.tar.gz
# cd e1000-7.4.27
# make install
make -C /usr/src/linux SUBDIRS=/root/Desktop/lan/drivers/e1000-7.4.27/src modules
make[1]: Entering directory `/usr/src/linux-2.6.16.46-0.12'
Makefile:450: .config: No such file or directory
WARNING: Symbol version dump /usr/src/linux-2.6.16.46-0.12/Module.symvers
is missing; modules will have no dependencies and modversions.
CC [M] /root/Desktop/lan/drivers/e1000-7.4.27/src/e1000_main.o
/bin/sh: scripts/basic/fixdep: No such file or directory
make[2]: *** [/root/Desktop/lan/drivers/e1000-7.4.27/src/e1000_main.o] Error 1
make[1]: *** [_module_/root/Desktop/lan/drivers/e1000-7.4.27/src] Error 2
make[1]: Leaving directory `/usr/src/linux-2.6.16.46-0.12'
make: *** [default] Error 2
then i change the directory
# cd /lib/modules/2.6.16.46-0.12-smp/kernel/drivers/net/e1000
then
# modprobe e1000.ko
FATAL: Could not load /lib/modules/2.6.16.46-0.12-default/modules.dep: No such file or directory
# modprobe e1000
FATAL: Could not load /lib/modules/2.6.16.46-0.12-default/modules.dep: No such file or directory
# insmod e1000
insmod: can't read 'e1000': No such file or directory
# insmod e1000.ko
insmod: error inserting 'e1000.ko': -1 Invalid module format
e1000.ko is present in the /lib/modules/2.6.16.46-0.12-smp/kernel/drivers/net/e1000 directory....then Why I am getting the above errors ?
Please help asap
Solved! Go to Solution.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2008 10:31 AM
02-06-2008 10:31 AM
Solution
According to this error:
make[1]: Entering directory `/usr/src/linux-2.6.16.46-0.12'
Makefile:450: .config: No such file or directory
It looks that you need the kernel source and you don't have it. Install the kernel source for 2.6.16.46-0.12 and try again.
make[1]: Entering directory `/usr/src/linux-2.6.16.46-0.12'
Makefile:450: .config: No such file or directory
It looks that you need the kernel source and you don't have it. Install the kernel source for 2.6.16.46-0.12 and try again.
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP