Форум русской поддержки ОС Fedora linux
Страниц: 1
Тема закрыта
Вобщем ситуация следующая есть древний комп, операционная система одна — федора 10. Недавно на нем выгорела сетевая карта. Купил новую (PCI DFE-520TX), и вот сейчас проблема с драйверами... Подскажите плз где скачать и как поставить (для чайников ). В наличии только флоппи дисковод, и флешки... интернета или сд привода нету.. опыта работы в федоре тоже немного... Огромное спасибо всем кто поможет
Отредактированно chainik (2010-08-27 16:05:35)
Неактивен
Никогда не слышал что для PCI сетевух нужны дрова. Как вы определили что нужны драйвера? Не отключена ли она в биосе? Что показывают команды lspci и ifconfig?
Неактивен
ммм.. С чего я решил что нужны дрова?? Ну вобщем федора пишет что нету доступных сетевых устройств, хотя на самой стевухе огонек горит. Потом еще на диске от производителя есть драйвера под линух и небольшой мануальчик по установке (бесполезный). Из поддерживаемых операционных систем производителем указаны Fedora Core 5(kerner 2.6) Red Hat Lunix (kerner 2.4).
Потыкал в консоли команды lspci ifconfig с различными ключами, нигде Unknown device не увидел...
Может просто подскажите как установить дровки в Fedore(а то опыта работы в линухе совсем нет) путь до архива F:\LINUX\rhinefet.tgz
Неактивен
На форуме нет телепатов. В линуксе не бывает unknown device. Таки покажите тут выводы упомянутых команд. А по поводу установки драйвера... Покажите ваш "бесполезный мануал". В общем случае нужно установить драйвер и загрузить модуль ядра.
Неактивен
Кстати, а в биосе не отключена PCI сетевуха?
Неактивен
Опции выключения в биосе pci просто нет.. Чтот не нашел опцию прикрепления файла...
**
**
** VIA Rhine Family Fast Ethernet Adapter
**
** Linux Driver
**
** v5.08 Nov. 2006
**
**
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.
For 2.6 kernel, it supported up to 2.6.18 in this version.
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 src
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'.
Отредактированно chainik (2010-08-30 13:13:46)
Неактивен
Ну так вот -
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 src 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>
Пробовали это?
Неактивен
Да, вот тут-то и возникают проблемы. Опыта работы в линухе — пара часов максимум (: Если писать в консоли символ в символ по мануалу, то возникают ошибки. Сейчас дрова скопированы на флешку и я тупо немагу к ним обратится (3-й шаг мануала). Помогите чайнику плжста (: .
Отредактированно chainik (2010-08-31 14:09:42)
Неактивен
Ну... Из граф.интерфейса примонтируйте флешку (просто откройте её в файловом менеджере). Каталог с её содежимым появиться в /mnt обычно каталог носит имя флешки. У меня, например этот путь выглядит так — /mnt/KINGSTON/ я буду писать относительно этого пути.
3)
mkdir ~/drv
mkdir /tmp не делайте. Это не хорошо. Делайте в своей домашней директории.
cp /mnt/KINGSTOM/driver/ cd ~/drv
4.
tar -xzvf rhinefet.tgz cd src
5
Тут не ясно.
Видимо нужно сделать так:
./configure make
Если файл rhinefet.o не появиться, то выполните make compile.
cp rhinefet.o /lib/modules/KERNEL_VERSION/kernel/drivers/net/
KERNEL_VERSION — версия вашего ядра. Узнать можно по uname -a
su -c 'nano /etc/modprobe.conf'
Пишете тут
alias eth0 rhinefet options eth0 speed_duplex=2
Ctrl+O -> подтверждаем сохранение -> Ctrl+x
Теперь reboot и, кажется, всё заработает.
Отредактированно uscr (2010-08-31 18:13:35)
Неактивен
Зачем компилировать то? Модуль via-rhine в ядре есть. lspci -nn и ifconfig сюда выложи под тег "Код".
Неактивен
[home@2etaj ~]$ lspci -nn 00:00.0 Host bridge [0600]: Intel Corporation 82815 815 Chipset Host Bridge and Memory Controller Hub [8086:1130] (rev 04) 00:01.0 PCI bridge [0604]: Intel Corporation 82815 815 Chipset AGP Bridge [8086:1131] (rev 04) 00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev 05) 00:1f.0 ISA bridge [0601]: Intel Corporation 82801BA ISA Bridge (LPC) [8086:2440] (rev 05) 00:1f.1 IDE interface [0101]: Intel Corporation 82801BA IDE U100 Controller [8086:244b] (rev 05) 00:1f.2 USB Controller [0c03]: Intel Corporation 82801BA/BAM USB Controller #1 [8086:2442] (rev 05) 00:1f.3 SMBus [0c05]: Intel Corporation 82801BA/BAM SMBus Controller [8086:2443] (rev 05) 00:1f.4 USB Controller [0c03]: Intel Corporation 82801BA/BAM USB Controller #1 [8086:2444] (rev 05) 01:00.0 VGA compatible controller [0300]: ATI Technologies Inc RV350 AP [Radeon 9600] [1002:4150] 01:00.1 Display controller [0380]: ATI Technologies Inc RV350 AP [Radeon 9600] (Secondary) [1002:4170] 02:00.0 Multimedia audio controller [0401]: Ensoniq 5880B [AudioPCI] [1274:5880] (rev 02) 02:04.0 Ethernet controller [0200]: VIA Technologies, Inc. VT6105/VT6106S [Rhine-III] [1106:3106] (rev 8b) [home@2etaj ~]$ ifconfig eth1 Link encap:Ethernet HWaddr 00:26:5A:70:5B:FE UP BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) Interrupt:18 Base address:0x4000 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:16 errors:0 dropped:0 overruns:0 frame:0 TX packets:16 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:1040 (1.0 KiB) TX bytes:1040 (1.0 KiB)
Неактивен
02:04.0 Ethernet controller [0200]: VIA Technologies, Inc. VT6105/VT6106S [Rhine-III] [1106:3106] (rev 8b) — Вот ваша сетевая карта, драйвера для неё ставить не нужно.
eth1 — это интерфейс вашей сетевой карты.
Неактивен
Все, разобрался. Проблема заключалась в криво работающих PCI шинах, и оч оч древней мат плате. Всем спасибо, тема закрыта.
Неактивен
chainik написал:
Все, разобрался. Проблема заключалась в криво работающих PCI шинах, и оч оч древней мат плате. Всем спасибо, тема закрыта.
<zanuda> Ну почему вы сразу не показали выводы lspci и ifconfig </zanuda>
Отредактированно uscr (2010-09-03 10:02:36)
Неактивен
Тема закрыта
Страниц: 1