My Lenovo Ideapad G50-70 will automatically disconnect from the Internet at random moments on 14.04. The network will first just stop working without any warning, and after a while, it will disconnect by itself. The strange thing is, I can't manage to get the computer back online without restarting the whole computer; it will not be able to connect to the network at all. Simply turning wireless/networking off and back on doesn't help at all. I've tried following old instructions to update drivers (as shown here: http://ubuntuforums.org/showthread.php?t=2080326 ), but it didn't help.
lspci -nnk | grep -iA2 net:
~$ lspci -nnk | grep -iA2 net
01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 10)
Subsystem: Lenovo Device [17aa:380a]
Kernel driver in use: r8168
02:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter [10ec:b723]
Subsystem: Lenovo Device [17aa:b736]
Kernel driver in use: rtl8723be
It would be awesome if somebody could help me out! I really don't want to use Windows 8 instead. :/
ifconfig
command. Lets say your wireless interface is wlan0 then executecat /var/log/syslog | grep -i "wlan0"
. This will show you all the logs regarding your wireless interface on timely basis. Paste the output in here and give us the link. – heemayl Sep 29 '14 at 20:50Sep 29 22:49:32 brekkeslenovo wpa_supplicant[1142]: wlan0: CTRL-EVENT-DISCONNECTED bssid=10:bf:48:91:aa:34 reason=4 locally_generated=1
. As you can see something is definitely wrong. Give the commandsudo sh -c 'modprobe -r iwlwifi && modprobe iwlwifi 11n_disable=1'
and check after that. This will disable the 802.11n capability of the adapter. I found this solution here and the problem described is very much similar to your one. – heemayl Sep 29 '14 at 21:24