Freesco, NND, CDN, EOS

http://www.freesco.pl
Dzisiaj jest sobota, 28 czerwca 2025, 01:21

Strefa czasowa UTC+2godz.




Nowy temat Odpowiedz w temacie  [ Posty: 5 ] 
Autor Wiadomość
Post: poniedziałek, 2 stycznia 2006, 23:27 
Offline

Rejestracja: sobota, 27 sierpnia 2005, 11:17
Posty: 31
Lokalizacja: Żory
Witam mam pytanie dotyczące sieciówki,nie mam pojęcia jak wrzucić (przerobić,skąpilować)sterowniki karty broadcom,sterowniki sa pod tym adresem: http://www.broadcom.com/docs/driver_dow ... .14.ziprty ,proszę o pomoc.


Na górę
 Wyświetl profil  
 
Post: poniedziałek, 2 stycznia 2006, 23:51 
Offline
MODERATOR

Rejestracja: piątek, 5 lipca 2002, 17:31
Posty: 2449
Lokalizacja: Londyn
Dami24 pisze:
Witam mam pytanie dotyczące sieciówki,nie mam pojęcia jak wrzucić (przerobić,skąpilować)sterowniki karty broadcom,sterowniki sa pod tym adresem: http://www.broadcom.com/docs/driver_dow ... 3.0.14.zip
proszę o pomoc.


wszystko, krok po kroku, jest w dokumentacji, którą dostajesz wraz ze źródłami.
jeśli to karta pcmcia to nie zapomnij zainstalować pakietu pcmcia-cs i dodać pcmcia do rc.conf do zmiennej DAEMONS. W zależności od tego jaki masz kontroler pcmcia może być konieczna zmiana w pliku /etc/conf.d/pcmcia. Chodzi o zmienną PCIC

_________________
Mis'
___________________________________
"Real Men Use Telnet on port 80" (el bid)


Na górę
 Wyświetl profil  
 
 Tytuł:
Post: wtorek, 3 stycznia 2006, 00:55 
Offline

Rejestracja: sobota, 27 sierpnia 2005, 11:17
Posty: 31
Lokalizacja: Żory
To w takim razie proszę o tłumaczenie tego artykułu
Installation Notes
Broadcom BCM4400 Linux Driver
Version 3.0.14
10/19/2005

Broadcom Corporation
16215 Alton Parkway,
Irvine, CA 92619-7013

Copyright (c) 2000-2005 Broadcom Corporation
All rights reserved


Table of Contents
=================

Introduction
Limitations
Packaging
Installing Source RPM Package
Building Driver From TAR File
Unloading and Removing Driver
Module Parameters
Driver Messages
Statistics


Introduction
============

This file describes the Linux driver for the Broadcom BCM4400
series 10/100 Mbps Ethernet Network Controllers.


Limitations
===========

The current version of the driver has been tested on the latest Red Hat
and United Linux distributions, as well as other similar Linux distributions
for i386 CPU architectures using 2.4.x and 2.6.x kernels. The driver has
been tested up to 2.4 kernel version 2.4.31 and 2.6 kernel version 2.6.9.

The driver has not been ported to other CPU architectures, including the
x86_64. Attempts to compile on an x86_64 will intentionally fail.


Packaging
=========

The driver is released in two packaging formats: source RPM and compressed tar
formats. The file names for the two packages are bcm4400-<version>.src.rpm and
bcm4400-<version>.tar.gz respectively. Identical source files to build the
driver are included in both packages.


Installing Source RPM Package
=============================

The following are general guidelines for installing the driver. Refer to
DISTRIB.TXT for additional installation notes for various Linux distributions.

1. Install the source RPM package:

rpm -ivh bcm4400-<version>.src.rpm

2. CD to the RPM path and build the binary driver for your kernel:

cd /usr/src/{redhat,OpenLinux,turbo,packages,rpm ..}

rpm -bb SPECS/bcm4400.spec

or

rpmbuild -bb SPECS/bcm4400.spec (for RPM version 4.x.x)

Note that the RPM path is different for different Linux distributions.

3. Install the newly built package (driver and man page):

rpm -ivh RPMS/i386/bcm4400-<version>.i386.rpm

The driver will be installed in the following path:

/lib/modules/<kernel_version>/kernel/drivers/net/

4. Load the driver:

modprobe bcm4400

5. To configure network protocol and address, refer to various Linux
documentations.


Building Driver From TAR File
=============================

The following are general guidelines for installing the driver. Refer to
DISTRIB.TXT for additional installation notes for various Linux distributions.

1. Create a directory and extract the files:

tar xvzf bcm4400-<version>.tar.gz

2. Build the driver as a loadable module for the running kernel:

cd src
make

3. Test the driver by loading it:

For 2.4 kernels:
insmod bcm4400.o

Fir 2.6 kernels:
insmod bcm4400.ko

4. Install the driver and man page:

make install

See RPM instructions above for the location of the installed driver.

5. To configure network protocol and address, refer to various Linux
documentations.


Unloading and Removing Driver
=============================

To unload the driver, use ifconfig to bring down all eth# interfaces opened
by the driver, then do the following:

rmmod bcm4400


If the driver was installed using rpm, do the following to remove it:

rpm -e bcm4400


If the driver was installed using make install from the tar file, the driver
has to be manually deleted from the system. Refer to the section
"Installing Source RPM Package" for the location of the installed driver.


Module Parameters
=================

Optional parameters for the driver can be supplied as command line arguments
to the insmod command. Typically, these parameters are set in the file
/etc/modules.conf (see the man page for modules.conf). These parameters take
the form

<parameter>=value[,value,...]

where the multiple values for the same parameter are for multiple NICs
installed in the system.

Note that default or other meaningful values will be used when invalid values
are selected. Some combinations of parameter values may conflict and lead to
failures. The driver cannot detect all such conflicting combinations.

All the parameters are listed below.

line_speed

Selects the line speed of the link. This parameter is used together with
full_duplex and auto_speed to select the speed and duplexity of the link
and the setting of autonegotiation.

The valid values are:

0 Autonegotiate for highest speed supported by link partner (default)
10 10 Mbps
100 100 Mbps

If line_speed is set to 10, 100, or 1000, the NIC will autonegotiate for
the selected speed (and selected duplexity) if auto_speed is set to 1.
If auto_speed is set to 0, the selected speed and duplexity will be
set without autonegotiation. Note that 1000 Mbps must be negotiated for
copper twisted pair links.

auto_speed

Enables or disables autonegotiation. The valid values are:

0 Autonegotiation disabled
1 Autonegotiation enabled (default)

Note that this parameter is ignored and assumed 1 if line_speed is set
to 0.

full_duplex

Selects the duplexity of the link. This paramter is used together with
line_speed to select the speed and duplexity of the link. Note that this
parameter is ignored if line_speed is 0.

The valid values are:

0 half duplex
1 full duplex (default)


rx_flow_control

Enables or disables receiving flow control (pause) frames. This parameter
is used together with auto_flow_control. The valid values are:

0 pause receive disabled (default)
1 pause receive enabled if auto_flow_control is set to 0, or
pause receive advertised if auto_flow_control is set to 1

tx_flow_control

Enables or disables transmitting flow control (pause) frames. This parameter
is used together with auto_flow_control. The valid values are:

0 pause transmit disabled (default)
1 pause transmit enabled if auto_flow_control is set to 0, or
pause transmit advertised if auto_flow_control is set to 1

auto_flow_control

Enables or disables autonegotiation of flow control. This parameter is used
together with rx_flow_control and tx_flow_control to determine the
advertised flow control capability. The valid values are:

0 flow control autonegotiation disabled (default)
1 flow control autonegotiation enabled with capability specified in
rx_flow_control and tx_flow_control (only valid if line_speed is
set to 0 or auto_speed is set to 1)

tx_pkt_desc_cnt

Configures the number of transmit descriptors. Default is 64. The
valid range is from 1 to 511.

rx_pkt_desc_cnt

Configures the number of receive descriptors. Default is 64. The
valid range is from 1 to 511.

enable_wol

Enables or disables magic packet Wake-On-LAN when the system is shutdown.
Note that not all systems support Wake-On-LAN. The valid values are:

0 magic packet Wake-On-LAN disabled (default)
1 magic packet Wake-On-LAN enabled


Driver Messages
===============

The following are the most common sample messages that may be logged in the file
/var/log/messages. Use dmesg -n <level> to control the level at which messages
will appear on the console. Most systems are set to level 6 by default.

Broadcom 4401 Ethernet Driver bcm4400 ver. 3.0.14 (10/19/05)

Driver signon


eth#: Broadcom BCM4401 100Base-T found at mem f7ffc000, IRQ 18, node addr
0010180407b2

NIC detected


bcm4400: eth# NIC Link is Up, 100 Mbps full duplex

Link up and speed indication


bcm4400: eth# NIC Link is Down

Link down indication


Statistics
==========

Detailed statistics and configuration information can be viewed in the file
/proc/net/nicinfo/eth#.info.


Na górę
 Wyświetl profil  
 
 Tytuł:
Post: wtorek, 3 stycznia 2006, 01:03 
Offline
MODERATOR

Rejestracja: sobota, 30 lipca 2005, 14:08
Posty: 3984
Lokalizacja: Rzeszów
Zartujesz, prawda? http://www.translate.pl/ i walcz


Na górę
 Wyświetl profil  
 
 Tytuł:
Post: wtorek, 3 stycznia 2006, 01:12 
Offline
MODERATOR

Rejestracja: piątek, 5 lipca 2002, 17:31
Posty: 2449
Lokalizacja: Londyn
Dami24 pisze:
To w takim razie proszę o tłumaczenie tego artykułu


masz jakiś logiczny powód żeby wrzeszczeć tutaj czcionką o wielkości 18? ja nie widzę. Masz moze powód żeby zamieszczać treść dokumentu, który każdy zainteresowany może sobie pobrać z podanego przez ciebie adresu (przy okazji, w adresie przykleiły ci się literki rty na końcu)? a może masz powód żeby nie użyć słownika lub jakiegoś internetowego translatora?
wiesz... bez choćby podstaw jęz. angielskiego nie widzę wielkich perspektyw w administrowaniu systemem linuksowym... Sorry Winnetou...

_________________
Mis'
___________________________________
"Real Men Use Telnet on port 80" (el bid)


Na górę
 Wyświetl profil  
 
Wyświetl posty nie starsze niż:  Sortuj wg  
Nowy temat Odpowiedz w temacie  [ Posty: 5 ] 

Strefa czasowa UTC+2godz.


Kto jest online

Użytkownicy przeglądający to forum: Obecnie na forum nie ma żadnego zarejestrowanego użytkownika i 9 gości


Nie możesz tworzyć nowych tematów
Nie możesz odpowiadać w tematach
Nie możesz zmieniać swoich postów
Nie możesz usuwać swoich postów
Nie możesz dodawać załączników

Szukaj:
Przejdź do:  
cron
Technologię dostarcza phpBB® Forum Software © phpBB Group
Hosting: Compus-Net
RobertKonik.pl