web-dev-qa-db-fra.com

Pavé sans fil HP non détecté sur un hp - RT5390PCIe

Je viens d'acheter un ordinateur portable HP Pavilion g6 et j'ai installé Natty Narwhal aux côtés de Windows 7. Sous Windows 7, le WiFi fonctionne parfaitement, mais sous Ubuntu, il ne détectera absolument pas mon réseau WiFi domestique.

Voici le résultat de "lspci":

earl@ubuntu:~$ lspci
00:00.0 Host bridge: Advanced Micro Devices [AMD] RS880 Host Bridge
00:01.0 PCI bridge: Advanced Micro Devices [AMD] RS780/RS880 PCI to PCI bridge (int gfx)
00:04.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 0)
00:05.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 1)
00:06.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 2)
00:11.0 SATA controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode]
00:12.0 USB Controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
00:12.2 USB Controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller
00:13.0 USB Controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
00:13.2 USB Controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller
00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 42)
00:14.1 IDE interface: ATI Technologies Inc SB7x0/SB8x0/SB9x0 IDE Controller (rev 40)
00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA) (rev 40)
00:14.3 ISA bridge: ATI Technologies Inc SB7x0/SB8x0/SB9x0 LPC Host controller (rev 40)
00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge (rev 40)
00:14.5 USB Controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI2 Controller
00:16.0 USB Controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
00:16.2 USB Controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller
00:18.0 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor HyperTransport Configuration
00:18.1 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Address Map
00:18.2 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor DRAM Controller
00:18.3 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Miscellaneous Control
00:18.4 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Link Control
01:05.0 VGA compatible controller: ATI Technologies Inc M880G [Mobility Radeon HD 4200]
01:05.1 Audio device: ATI Technologies Inc RS880 Audio Device [Radeon HD 4200]
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 05)
03:00.0 Network controller: Ralink corp. Device 5390
04:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. Device 5209 (rev 01)
earl@ubuntu:~$ 
2
Earl Larson

La RT5390PCIe n'est pas directement prise en charge par le noyau Natty actuel.

Vous aurez besoin de télécharger du code source du pilote et de corriger le noyau Natty.

Malheureusement, vous devez être conscient qu'à chaque mise à jour du noyau Natty, vous devrez répéter les instructions suivantes:

  1. Téléchargez le pilote Linux (RT5390PCIe) à partir de Ralink .
  2. Extrait-le. Les fichiers seront extraits dans le dossier 2010_1216_RT5390_LinuxSTA_V2.4.0.4_WiFiBTCombo_DPO.

  3. Téléchargez tous les correctifs sauf le correctif x64_86, en supposant que vous avez un système 32 bits, depuis le site opensuse .

  4. Copiez les correctifs dans le dossier - 2010_1216_RT5390_LinuxSTA_V2.4.0.4_WiFiBTCombo_DPO.

  5. Allez dans le dossier.

  6. Effectuez les modifications suivantes dans le fichier /os/linux/config.mk - HAS_ANTENNA_DIVERSITY_SUPPORT = y (à l'origine, c'était n).

  7. Maintenant, lancez les commandes suivantes dans le terminal:

instructions de patch

patch -p0 < rt5390sta-2.4.0.4-config.patch
patch -p0 < rt5390sta-2.4.0.4-convert-devicename-to-wlanX.patch
patch -p0 < rt5390sta-2.4.0.4-reduce_debug_output.patch
patch -p0 < rt5390sta-2.4.0.4-remove-potential-conflicts-with-rt2860sta.patch
patch -p0 < rt5390sta-2.4.0.4-return_nonvoid_function.patch
patch -p0 < rt5390sta-2.4.0.4-WPA-mixed.patch
Sudo su
cp RT2860STA.dat RT5390STA.dat
mkdir -p /etc/Wireless/RT5390STA
cp RT5390STA.dat /etc/Wireless/RT5390STA
make clean
make
make install
modprobe rt5390sta
exit

source

0
fossfreedom

Besoin d'être connecté à Internet pour cela. Êtes-vous déjà entré dans System-> Adminstration-> Hardware Drivers et Vu si un réseau WiFi était répertorié si rien ne l'était. J'ai repéré le site Web du fabricant et le pilote pour vous. http://www.ralinktech.com/fr/04_support/support.php?sn=501 Votre carte WiFi est RT5390PCIe aka Ralink corp. Device 5390 J'espère que cela vous aidera!

0
freebird