|
|
我的网卡intel PRO/1000 MT,装的是e1000.4.4.19驱动.
我按照readme.txt文件提示安装,前4步都完成了,第5步 insmod是什么意思呀?参数和值怎么设置呀.
1. Move the base driver tar file to the directory of your choice. For example,
use /home/username/e1000 or /usr/local/src/e1000.
2. Untar/unzip archive:
tar zxf e1000-x.x.x.tar.gz
3. Change to the driver src directory:
cd e1000-x.x.x/src/
4. Compile the driver module:
make install
The binary will be installed as:
For Linux 2.2.x systems:
/lib/modules/[KERNEL_VERSION]/net/e1000.o
For Linux 2.4.x systems:
/lib/modules/[KERNEL_VERSION]/kernel/drivers/net/e1000.o
The install locations listed above are the default locations. They may
not be correct for certain Linux distributions. For more information,
see the ldistrib.txt file included in the driver tar.
5. Install the module:
insmod e1000 <parameter>=<value>
6. Assign an IP address to the interface by entering the following, where
x is interface number:
ifconfig ethx <IP_address>
7. Verify that the interface works. Enter the following, where <IP_address>
is the IP address for another machine on the same subnet as the interface
that is being tested:
ping <IP_address> |
|