6

My wired internet is running extremely slow after installing Ubuntu 14.04 on my desktop. my normal internet speed (Windows) using speedtest.net is around 25 mbps, Ubuntu is pulling in 0.5 mbps tops.

I've found lots of issues with the 'Realtek RTL8111 Ethernet Interface' I've got, they all say to change the drivers to r8168 (which I've done) or change the IPv6 to ignore (also done) but my internet is still running extremely slow. I've tried everything I've been able to find online and rebooted multiple times along the way but all to no avail. I don't have much experience with Linux, but am eager to learn.

What do I need to do to fix this problem?

bain
  • 11,260
user287540
  • 61
  • 1
  • 1
  • 2

2 Answers2

11
  1. Disconnect from Internet
  2. Open your Terminal and execute the line:

    sudo tee /proc/sys/net/ipv6/conf/all/disable_ipv6 <<<"1"
    
  3. Connect to the Internet again, and see if the problem still exists.

muru
  • 197,895
  • 55
  • 485
  • 740
Naveen
  • 9,365
  • 11
  • 43
  • 70
5

Fix the bug in Debian Avahi-daemon

The slow WiFi in Ubuntu problem could also be related to a bug in Avahi-daemon of Debian. Ubuntu and many other Linux distribution are based on Ubuntu so this bug propagates to several Linux distributions. To fix this bug, you have to edit the nsswitch configuration file. Open a terminal and use the following command:

sudo gedit /etc/nsswitch.conf

This will open the configuration file in gedit so that you could edit it easily in GUI. In here, look for the following line:

hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4

If you find this file, replace it with the following line:

hosts: files dns

Save it, close it, restart your computer. It should fix the slow wireless connection problem for you. If it doesn’t check the other solution.

Works for me. Hope same does for you :) If it dosen't , try other solutions , from here http://itsfoss.com/speed-up-slow-wifi-connection-ubuntu/

Sergiy Kolodyazhnyy
  • 105,154
  • 20
  • 279
  • 497