Page 1 sur 1

Pilotes Linux

Posté : 17 mai 2017, 21:20
par Xillis
Bonjour,

Ma carte réseau n'est pas détectée sur aucune des versions de Xubuntu. J'ai la connexion filaire ethernet mais pas de wifi.
Je cherche un pilote Linux compatible avec ce matériel :

Broadcom NetXtreme BCM5751 PCI Express
Broadcom BCM4318 Air Force One 54g Wireless Lan Controler

Merci

Re: Pilotes Linux

Posté : 18 mai 2017, 13:50
par Balou
Début de réponse ici https://www.google.fr/url?sa=t&rct=j&q= ... qvY0dVH-fQ

fichier linux.htm
rubrique Installing Linux Driver Software

Re: Pilotes Linux

Posté : 18 mai 2017, 14:57
par MaxK
Bonjour,

Pour toutes (ou presque) les bcm43xx, tu peux te référer ici : https://doc.ubuntu-fr.org/wifi_broadcom_bcm43xx

Dans ton cas, tu as juste à lancer dans un terminal :

Code : Tout sélectionner

sudo apt-get install firmware-b43-installer

Re: Pilotes Linux

Posté : 19 mai 2017, 20:19
par Xillis
Le terminal me note "impossible de trouver le paquet"
MaxK a écrit :Bonjour,

Pour toutes (ou presque) les bcm43xx, tu peux te référer ici : https://doc.ubuntu-fr.org/wifi_broadcom_bcm43xx

Dans ton cas, tu as juste à lancer dans un terminal :

Code : Tout sélectionner

sudo apt-get install firmware-b43-installer

Re: Pilotes Linux

Posté : 19 mai 2017, 20:36
par Xillis
Balou a écrit :Début de réponse ici https://www.google.fr/url?sa=t&rct=j&q= ... qvY0dVH-fQ

fichier linux.htm
rubrique Installing Linux Driver Software
Le lien que tu m'a mit est intéressant mais j'ai besoin d'assistance.
- Je ne peut pas traduire la page dans google traduction et je dois traduire chaque paragraphe.
- Le terminal ne trouve pas ou ne peut pas ouvrir/utiliser les paquets et je n'ai pas de solutions pour régler ces problèmes
- On me demande des manip que je ne sais pas faire comme créer le répertoire sur le chemin rpm et créer le pilote binaire pour mon noyau (je ne sais pas ce qu'est le noyau, ni lequel j'ai)

Je te remercie de m'aider, c'est un peu compliqué pour moi.
Si tu peux me mettre le lien de téléchargement du drivers, je serais content.

Re: Pilotes Linux

Posté : 22 mai 2017, 13:24
par garibald
Install the source RPM package:
rpm -ivh bcm5700-version.src.rpm

Change the directory to the RPM path and build the binary driver for your kernel (the RPM path is different for different Linux distributions):
cd /usr/src/redhat,OpenLinux,turbo,packages,rpm …

rpm -bb SPECS/bcm5700.spec or rpmbuild -bb SPECS/bcm5700.spec

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


NOTE: During your attempt to install a source RPM package, the following message may be displayed:

error: cannot create %sourcedir /usr/src/redhat/SOURCES

The most likely cause of the error is that the rpm-build package has not been installed. Locate the rpm-build package on the Red Hat installation media and install it using the following command:

rpm -ivh rpm-build-version.i386.rpm

Complete the installation of the source RPM.


Install the newly built package (driver and man page):
rpm -ivh RPMS/i386/bcm5700-version.i386.rpm

The --force option is needed if installing over an existing distribution that may already contain an older version of the driver.

Depending on the kernel, the driver is installed to one of the following paths:

2.4.x kernels:

/lib/modules/kernel_version/kernel/drivers/net/bcm5700.o

2.4.x kernels with the bcm5700 driver patched in:

/lib/modules/kernel_version/kernel/drivers/net/bcm/bcm5700.o

or

/lib/modules/kernel_version/kernel/drivers/addon/bcm5700/bcm5700.o

2.6.0 kernels:

/lib/modules/kernel_version/kernel/drivers/net/bcm5700.ko

2.6.0 kernels with bcm5700 driver patched in:

/lib/modules/kernel_version/kernel/drivers/net/bcm/bcm5700.ko

Load the driver:
modprobe bcm5700

To configure the network protocol and address, refer to the Linux version-specific documentation.

Building the Driver from the TAR File

Create a directory and extract the TAR files to the directory:
tar xvzf bcm5700-version.tar.gz

Build the driver bcm5700.o as a loadable module for the running kernel:
CD src
make

Test the driver by loading it:
NOTE: If you are loading the driver on Red Hat 7.3, 2.1 AS, or other newer kernels that have the tg3 driver, refer to "Remove tg3 Driver" in the Distrib.txt file before loading the driver.
insmod bcm5700.o

or, for Linux 2.6 kernels:

insmod bcm5700.ko

No message should be returned if this command runs properly

Install the driver and man page:
make install

NOTE: See the RPM instructions above for the location of the installed driver.
To configure network protocol and address, refer to the manuals supplied with your operating system.