[问题]无法安装网卡驱动!!!!!!!!!!

系统安装、升级讨论
版面规则
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
回复
alexzc231
帖子: 9
注册时间: 2006-11-10 1:43

[问题]无法安装网卡驱动!!!!!!!!!!

#1

帖子 alexzc231 » 2006-11-11 3:14

也不能上网~ub默认也没有编译环境~我是新手~求教~
1.不上网怎么样安装便宜环境?
2.我有驱动程序 怎样安装?程序是c语言的代码和一个makefile (但是我没有安装环境)
3.从别的机子下载装了一堆kernel包 还有make包,装好后也不行 说匿名组(忘英文怎么写了)里没有"以太网"(也是英文) 什么的 晕啊~
谢谢大家~
头像
SuperWar3Fan
帖子: 1263
注册时间: 2006-05-20 6:25
来自: 山东淄博
联系:

#2

帖子 SuperWar3Fan » 2006-11-11 8:27

你的网卡是什么型号?
编译需要:
sudo apt-get install build-essential

进入目录
./configure
make
make install
头像
zhuqin_83
帖子: 10606
注册时间: 2006-05-13 4:02
联系:

#3

帖子 zhuqin_83 » 2006-11-11 8:32

不上网的话,用妳的安装cd。
把cd添加到源,然后sudo apt-get install build-essential。
HP Pavilion DV6-2064CA: AMD Turion II Ultra Dual-Core Mobile M640, HD4650, 2GBx2 DDR2-800, Seagate 500GB 7200RPM SATA, BD-ROM
DELL UltraSharp 2209WA
Arch64, Testing repo
alexzc231
帖子: 9
注册时间: 2006-11-10 1:43

#4

帖子 alexzc231 » 2006-11-11 13:14

这个是我的驱动里的说明.我又从via下的,高手能不能告诉我怎么编译呢?没有configue的.


**
**
** VIA Rhine Family Fast Ethernet Adapter
**
** Linux Driver
**
** v5.04 Aug. 2005
**
**


Introduction:
=============

The instructions listed below are for linux driver installation. You must
compile the source code to generate rhinefet.o(rhinefet.ko in 2.6.x kernel,
please remember to replace rhinefet.o with rhinefet.ko in the following
sentences if you are using 2.6.x kernel) and use insmod command to insert
rhinefet.o as module.


Contents of the Subdirectory:
=============================

linux.txt This file.
Makefile Makefile for generating driver object file
rhine_maic.c The linux core driver source code file
rhine_proc.c The source to create proc entries
rhine_wol.c The WOL supporting source file
rhine.h The extended driver header file
rhine_proc.h The header file for proc entries
rhine_wol.h The WOL supporting header file
rhine_cfg.h The general and basic info header file
kcompat.h The header file for Linux kernel version
compatibility.
_osdep.h OS depended function and macro defined
rhine_hw.h Rhine series MAC register supporting header file
rhine_hw.c shared function for accessing and configurating Rhine series MAC

Kernel Supported
================
This driver supports linux kernel version 2.2.x, 2.4.x and 2.6.x now.

CPU Supported
=============
This driver supports x86 and AMD64 based linux system.

Installation
============
Please enter the following commands at the UNIX prompt. Remember, UNIX is
case sensitive.

1) Create a temporary directory:
mkdir /temp

2) Change to the temporary directory:
cd /temp

3) Copy driver (rhinefet.tgz) from DOS disk, (mcopy below is one tool in
mtools, if you didn't install mtools, you can type
'mount -t msdos /dev/fd0 /mnt' and use 'cp /mnt/rhinefet.tgz /temp'
command to copy the driver to the temporary directory):
mcopy a:rhinefet.tgz .

4) untar the archive file:
tar xzvf rhinefet.tgz
cd rhinefet

5) Compile the driver source files and it will generate rhinefet.o, and
copy it to correct driver installation path (The installation directory
is different in different kernel versions. In 2.4.x/2.6.x kernel, the path
is /lib/modules/KERNEL_VERSION/kernel/drivers/net/, and in 2.2.x kernel,
the path is /lib/modules/KERNEL_VERSION/net/, the KERNEL_VERSION (see
above) means the kernel version of your Linux distribution. If you don't
know your kernel version , please run 'uname -r' command in command
line. The kernel version will look like '2.2.16', '2.4.2-2smp' etc.) :
make install

6) Check configuration file (/etc/modules.conf or /etc/conf.modules or
/etc/modprobe.conf, it depends on your Linux distribution) for loading
kernel modules. Make sure the first line below is appeared in the
configuration file, where # is the interface number (eg: alias eth0
rhinefet). If you need to set the driver options, below second line is
an example to set the NIC to 100Mbps fullduplex mode (remember to unmark
the line if it is put in the configuration file).
alias eth# rhinefet
#options eth# speed_duplex=2

7) Reboot now:
shutdown -r now

8) Install your driver module (If the driver module is in the wrong place,
an error message will appear, and say that can't find the driver
module):
insmod rhinefet.o

9) Use ifconfig command to assign the IP address, where # is network
interface number:
ifconfig eth# <IP>

10) Check the interface works:
ping <remote_host_IP>

Remove intermediate files
=========================
Please enter the following command to remove intermediate files generated
during the driver compilation:
make clean

Uninstallation
==============
Please enter the following command to uninstall your driver:
make uninstall

Bind the driver into kernel
===========================
In some applications (e.g. embedded OS), driver should be bound into the
kernel. The module installation/uninstallation describled in the above
sections are not appropriate. Below is the steps for binding driver in
kernel 2.4.x as an example:

1) Create a temporary directory:
mkdir /temp

2) Change to the temporary directory:
cd /temp

3) Copy driver (rhinefet.tgz) from DOS disk, (mcopy below is one tool in
mtools, if you didn't install mtools, you can type
'mount -t msdos /dev/fd0 /mnt' and use 'cp /mnt/rhinefet.tgz /temp'
command to copy the driver to the temporary directory):
mcopy a:rhinefet.tgz .

4) untar the archive file:
tar xzvf rhinefet.tgz

5) Change to the kernel source directory:
cd /usr/src/<kernel source>/driver/net

6) Create a directory for rhine family adapter driver and change to it:
mkdir rhinefet
cd rhinefet

7) Copy driver source form temporary directory to it:
cp /temp/rhinefet/* .

8) Replace the default Makefile with new Makefile with below 4 line content
(the Makefile used for driver binding into kernel is different with
the default one).
O_TARGET := rhinefet.o
obj-y := rhine_main.o rhine_proc.o rhine_wol.o rhine_hw.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make

9) Add the rhinefet information to /usr/src/<kernel source>/drivers/net/Makefile:
(add the lines with # in the head)
...
...
subdir-$(CONFIG_E100) += e100
#subdir-$(CONFIG_RHINEFET) += rhinefet
...
...
ifeq ($(CONFIG_E100),y)
obj-y += e100/e100.o
endif
#ifeq ($(CONFIG_RHINEFET),y)
# obj-y += rhinefet/rhinefet.o
#endif

10) Add the rhinefet information to /usr/src/<kernel source>/drivers/net/Config.in:
(add the lines with # in the head)
...
...
mainmenu_option next_comment
comment 'Ethernet (10 or 100Mbit)'
bool 'Ethernet (10 or 100Mbit)' CONFIG_NET_ETHERNET
...
...
#dep_tristate ' VIA Rhine Family Fast Ethernet Adapter support' CONFIG_RHINEFET $CONFIG_PCI
...
...
endmenu

11) Now, when you use following command, make menuconfig or make xconfig,
you will find a new device in 'Network device support'->'Ethernet(10 or 100Mbits)'.
Its name is 'VIA Rhine Family Fast Ethernet Adapter support'.

Note
====
1) Make sure the link file /usr/src/linux (or /usr/src/linux-2.4) is linked
to correctly kernel sources directory (eg: if you run 'uname -r', it
appears "2.4.2-2", then the link file must be linked to
/usr/src/linux-2.4.2 directory, or you will fail in compiling),
and make sure there are kernel header files in /usr/src/linux/include
directory (or /usr/src/linux-2.4/include), we need kernel header files
in compling.

2) If you can't install driver in SUSE Linux using insmod or modprobe
commands, and error messages appear (see below), please run 'uname -r'
in command line. And make sure the result of 'uname -r' (eg: 2.4.2-4GB)
is the same with the definition of UTS_RELEASE in
/usr/src/linux/include/linux/version.h. If not, please modify the
definition of UTS_RELEASE in /usr/src/linux/include/linux/version.h.

rhinefet.o: kernel-module version mismatch
rhinefet.o was compiled for kernel version 2.4.2
while this kernel is version 2.4.2-4GB.

3) Make sure that your kernel is built with network, fast_ethernet
and module support. Otherwise, you have to rebuild your kernel (see
below).
1. Go to /usr/src/linux (or /usr/src/linux-2.4) directory:
cd /usr/src/linux
2: Run 'make menuconfig' or 'make config' in text mode, or 'make
xconfig' in graphic mode.
3: Mark the options list above.
4: Exit and rebuild your kernel:
make dep;make clean;make bzImage
The file 'bzImage' will be at /usr/src/linux/arch/i386/boot/bzImage
5: Modify /etc/lilo.conf.(this file specifies where kernel image is)
6: Run 'lilo'
7: Reboot, and select the correct kernel image to boot your system.

4) You can use the utility (like netconfig, linuxconf) in your Linux
distribution to set your network parameters(like ip,gateway). These
parameters will be used at boot time. The following is the demonstration
to show how to use linuxconf (it's a utitlity in RedHat Linux 6.x) set
the network paramters.
1. Run linuxconf:
linuxconf
2. Enter setting in the Config/Networking/Client tasks/Basic host information/
and fill out the following information. Where 'xxx' is the IP address
what you have.
IP address: xxx.xxx.xxx.xxx
Netmask: 255.255.255.xxx
Net device: eth0
Kernel module: rhinefet

5) If you can't install driver at boot time.
If you can install your driver using insmod command, but you can't
install it at boot time, please check whether the driver is in the
correct directory (eg: /lib/modules/2.2.XXX/net/), and check the
/lib/modules/2.2.XXX/modules.dep file, it must include the following
line:
/lib/modules/2.2.XXX/net/rhinefet.o:

You can insert this line using depmod command or insert it manually.
Also, you must consult your Linux distribution installation guide
and learn how to set the IP address of your network interface and
up it at boot time.

6) If you can't compile this driver, and parse error messages appear,
please make sure your source code text format is right. You must convert
your source code text format from MS-DOS to UNIX, as show below (see
Solution 1 and 2).
Make sure the files in floppy disk are not rhinefet.tgz file. They must
be the source code text files (5 files), rhinefet.tgz is not a text file
, so it can't be converted.

Solution1:
If you use mcopy command to copy your driver from floppy disk to
linux, you can type:
mcopy -t a:\* .
then it will convert the format for you.

Solution2:
If you use mount command to mount floppy disk to linux, you can
type:
mount -t vfat -o conv=t /dev/fd0 /mnt/floppy
then, when you copy files from /mnt/floppy, these files format will
be right.

Module Parameter:
=================
The following parameters can be set when we install the driver module. You can
add this parameters when you execute 'insmod' or 'modprobe' command to install
the driver (as below).
insmod rhinefet.o parameter=value1,value2,value3,...
For example, if you have 3 NIC cards, and you want to set the speed_duplex
paramter value of them. You can type the following command to set it.
insmod rhinefet.o speed_duplex=1,2,3
Then, the parameter value of first card will be 1 (100Mbps half duplex mode),
the second card will be 2 (100Mbps full duplex mode), and the third card will
be 3 (10Mbps half duplex mode). Remember, our driver only support 8 cards
parameter setting.

1) speed_duplex
speed_duplex[] is used for setting the speed and duplex mode of NIC.
Value:
0: indicate autonegotiation for both speed and duplex mode (Default).
1: indicate 100Mbps half duplex mode
2: indicate 100Mbps full duplex mode
3: indicate 10Mbps half duplex mode
4: indicate 10Mbps full duplex mode

2) RxDescriptors
RxDescriptors[] is used for setting the number of receive descriptors.
Value:
64-128 (Default value: 64)

3) TxDescriptors
TxDescriptors[] is used for setting the number of transmit descriptors.
Value:
16-128 (Default value: 64)

4) enable_tagging (For management adapter only)
enable_tagging[] is used for enabling VLAN ID setting and enabling
priority transmit.
Value:
0: disable VID setting and priority transmit (Default).
1: enable VID setting and priority transmit.

5) VID_setting (For management adapter only)
VID_setting[] is used for setting the VLAN ID of NIC.
Value:
0: default VID.
1-4094: other VIDs.

6) rxcsum_offload (For management adapter only)
rxcsum_offload[] is used for setting the receive checksum offload ability
of NIC.
Value:
0: disable
1: enable (default)

7) txcsum_offload (For management adapter only)
txcsum_offload[] is used for setting the transmit checksum offload ability
of NIC.
Value:
0: disable (default)
1: enable

9) flow_control
flow_control[] is used for setting the flow control ability of NIC. Only
option 1(default) set flow control ability according to the auto-negotiation
result. Option 2, 3 are the forced flow control mode and they don't see the
auto-negotiation result.
Value:
1: hardware deafult (Default). Don't change the hardware register value
in MII ANAR.
2: disable flow control.
3: enable flow control.

10) IP_byte_align
IP_byte_align[] is used for IP header DWORD byte aligned (For IPVS environment).
(In some enviroment, the IP header should be DWORD byte aligned,or the packet
will be droped when we receive it. (eg: IPVS))
Value:
0: indicate the IP header won't be DWORD byte aligned (Default).
1: indicate the IP header will be DWORD byte aligned.

11) ValPktLen
ValPktLen[] is used for controlling driver to receive or drop
the frame with invalid layer 2 length.
Value:
0: Receive frame with invalid layer 2 length.
1: Drop frame with invalid layer 2 length.

12) wol_opts
wol_opts[] is used for controlling wake on lan behavior of NIC.
0: Wake up if recevied a magic packet. (Default)
1: Wake up if link status is on/off.
2: Wake up if recevied an arp packet.
4: Wake up if recevied any unicast packet.
Those value can be sumed up to support more than one option.
emphem
帖子: 8
注册时间: 2007-01-17 0:07

via网卡驱动

#5

帖子 emphem » 2007-11-11 8:56

我也是via的集成网卡,安装系统时也无法找到网络设备,我刚装好7.10,你那个驱动那个的给个连接!
emphem
帖子: 8
注册时间: 2007-01-17 0:07

#6

帖子 emphem » 2007-11-11 8:58

Installation
============
Please enter the following commands at the UNIX prompt. Remember, UNIX is
case sensitive.

1) Create a temporary directory:
mkdir /temp

2) Change to the temporary directory:
cd /temp

3) Copy driver (rhinefet.tgz) from DOS disk, (mcopy below is one tool in
mtools, if you didn't install mtools, you can type
'mount -t msdos /dev/fd0 /mnt' and use 'cp /mnt/rhinefet.tgz /temp'
command to copy the driver to the temporary directory):
mcopy a:rhinefet.tgz .

4) untar the archive file:
tar xzvf rhinefet.tgz
cd rhinefet

5) Compile the driver source files and it will generate rhinefet.o, and
copy it to correct driver installation path (The installation directory
is different in different kernel versions. In 2.4.x/2.6.x kernel, the path
is /lib/modules/KERNEL_VERSION/kernel/drivers/net/, and in 2.2.x kernel,
the path is /lib/modules/KERNEL_VERSION/net/, the KERNEL_VERSION (see
above) means the kernel version of your Linux distribution. If you don't
know your kernel version , please run 'uname -r' command in command
line. The kernel version will look like '2.2.16', '2.4.2-2smp' etc.) :
make install

6) Check configuration file (/etc/modules.conf or /etc/conf.modules or
/etc/modprobe.conf, it depends on your Linux distribution) for loading
kernel modules. Make sure the first line below is appeared in the
configuration file, where # is the interface number (eg: alias eth0
rhinefet). If you need to set the driver options, below second line is
an example to set the NIC to 100Mbps fullduplex mode (remember to unmark
the line if it is put in the configuration file).
alias eth# rhinefet
#options eth# speed_duplex=2


安装说明看的有点晕呀!
emphem
帖子: 8
注册时间: 2007-01-17 0:07

#7

帖子 emphem » 2007-11-11 9:06

这对你可能有帮助,我复来的!下面有相似安装说明 !

各位:哪有VIA VT6105 FOR LINUX的网卡驱动啊???


在Linux下如何驱动联想D-link DFE-530TX(最终稿)
蓝森林 http://www.lslnet.com 2001年12月31日 00:18


作 者: 郑良


在Linux下如何驱动联想D-link DFE-530TX
(也叫D-link DFE-530TX Rev B)网卡

D-Link公司出的网卡是大众化中档网卡,它的DFE-530TX Rev A在较新的Linux下(如红旗Linux 2.0、红旗Linux 2.4桌面版和Red Hat Linux 6.1以上)已能驱动,但它的第二版网卡:D-link DFE-530TX Rev B网卡(带网络唤醒功能),是目前大部分Linux(Red Hat Linux 7.1、中软Linux 3.0除外)均无法自动识别并驱动的。我经过摸索,终于找到如下方法,写出来供大家参考:

首先在http://www.legend-networks.com.cn/downfile/linux530_321.tar 或者 http://tsd.dlink.com.tw/info.nsf/04b7a7 ... 。然后将文件拷至软盘,在Linux超级用户权限下运行:

mount -t msdos /dev/fd0 /mnt/floppy
cd /root
mkdir temp
cd temp
cp /mnt/floppy/*.* /root/temp
tar xvf linux5~1.tar
make all

这样,生成关键的模块文件via-rhine.o,下面两条你可以任选其一:
一、复盖原有的via-rhine.o,然后象平时运行netconf配置。
二、修改/etc/rc.d下的rc.local,加人下面前两行;如果要绑定两个IP,加入第三行(具体IP、掩码值请修改);如果要设置缺省路由,加入第四行(网关具体IP值请修改):
insmod /root/temp/via-rhine.o
ifconfig eth0 up 10.4.4.29 netmask 255.0.0.0
ifconfig eth0:0 up 11.11.11.11 netmask 255.0.0.0
route add -net 0.0.0.0 netmask 0.0.0.0 gw 192.168.0.201

注意:eth0是网络设备名,10.4.4.29是IP,255.0.0.0是掩码,这三个根据具体情况修改。特别注意:可以不象平常的情况下去运行什么netconf,linuxconf,control-panel,也不必修改/etc/conf.modules。由于在系统启动完成后,才启动网卡,因此,在启动时看不到网卡启动的状态(如eth0 ... OK 之类的)。调试计算机为NEC PowerMate LX PII/400和HP Vectra VL 5/90。在Red Hat Linux 6.2、7.0, 红旗Linux2.0 Server零售版、下载版, 以及红旗Linux 2.0桌面版下调试通过。

四川省泸州市经济信息中心计算机网络科:郑良(zheng.liang@263.net)
2001.8.27
回复