0

a problem that when turned on the laptop (HP Pavilion G6) Wi-fi was gone I can't include it, tried everything that was, the third day I try to solve this problem, looked for decisions on all possible forums, nothing helped. What offers are. I need your help. Hi, a problem that when turned on the laptop (HP Pavilion G6) Wi-fi was gone I can't include it, tried everything that was, the third day I try to solve this problem, looked for decisions on all possible forums, nothing helped. What offers are. I need your help.

At input (rfkill list) it is empty.

konstantin@pavilion-g6:~$ rfkill list
konstantin@pavilion-g6:~$ 

konstantin@pavilion-g6:~$ lspci -nnk | grep -A2 Network
07:00.0 Network controller [0280]: Ralink corp. RT3290 Wireless 802.11n 1T/1R PCIe [1814:3290]
    DeviceName: Ralink RT3290LE 802.11bgn 1x1 Wi-Fi Adapter
    Subsystem: Hewlett-Packard Company Ralink RT3290LE 802.11bgn 1x1 Wi-Fi and Bluetooth 4.0 Combo Adapter [103c:18ec]

1 Answers1

1

Please note:

./libkmod/libkmod-config.c:635 kmod_config_parse: /etc/modprobe.d/bcm4313.conf line 1: ignoring bad line starting with ''

As yours is not a bcm4313 device, I'm certain the file is not needed. Please remove it:

sudo rm /etc/modprobe.d/bcm4313.conf

It appears that you compiled a driver for your device that will probably bot solve the problem, as you've seen. Let's blacklist it:

sudo -i
echo "blacklist rt3290sta"  >>  /etc/modprobe.d/blacklist.conf
modprobe -r rt3290sta
exit

Now load the correct driver for your device:

sudo modprobe rt2800pci

If there are any errors, please report them.

In many cases, this driver does not work well with 802.11N. Please change the settings in your router to auto B and G and not auto B, G and N. Now do you connect?

It may take a reboot.

chili555
  • 61,330