1

I have clean formatted my dell 5010 and install only Ubuntu. After installing everything is working fine expect wireless internet.

After running, lspci -nn | grep 0280 I am getting

12:00.0 Network controller [0280]: Intel corporation centrino wireless -N 1000 [Condor Peak] [ 8086:0083]

chili555
  • 60,188

2 Answers2

1

The driver for your Intel wireless is installed by default in 15.04 but is sometimes a bit tricky.

First, check the settings in the router. WPA2-AES is preferred; not any WPA and WPA2 mixed mode and certainly not TKIP. Second, if your router is capable of N speeds, you may have better connectivity with a channel width of 20 MHz in the 2.4 GHz band instead of automatic 20/40 MHz, although it is likely to affect N speeds. I also have better luck with a fixed channel, either 1, 6 or 11, rather than automatic channel selection. Also, be certain the router is not set to use N speeds only; auto B, G and N is preferred. After making these changes, reboot the router.

Next, I recommend that your regulatory domain be set explicitly. Find yours here: http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 Then set it permanently:

gksudo gedit /etc/default/crda

Use nano or kate or leafpad if you don't have the text editor gedit.

Change the last line to read:

REGDOMAIN=IS

Of course, substitute your country code if not Iceland. Proofread carefully, save and close the text editor.

Next, I'd set IPv6 to Ignore in Network Manager: http://docs.fedoraproject.org/en-US/Fedora/18/html/Installation_Guide/images/netconfig/network-connections-ipv6-ignore.png This example is for ethernet, but you want wireless.

If these changes do not help, please try:

gksudo gedit  /etc/modprobe.d/iwlwifi.conf

Change the '11n_disable=8' to '11n_disable=1'. Reboot and tell us if connectivity has improved. Proofread carefully, save and close the text editor.

Reboot and tell us if the connectivity improved.

chili555
  • 60,188
0

Run in terminal

sudo tee /etc/modprobe.d/iwlwifi-opt.conf <<< "options iwlwifi 11n_disable=1 swcrypto=1 power_save=0 bt_coex_active=0"

and reboot.

Pilot6
  • 90,100
  • 91
  • 213
  • 324