Kodi Community Forum

Full Version: Network stopped after suspend / slow network
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have a problem with the Internet. After the suspend / resume does not work Internet network. I found a partial solution. Edit the file: / usr/lib/pm-utils/sleep.d/55NetworkManager. and the following entry:
........
case "$1" in
hibernate|suspend)
suspend_nm
;;
thaw|resume)
resume_nm
/etc/init.d/networking restart
;;
*) exit $NA
;;
esac

However, there is little problem :-) ... speed Internet network is very slow.My internet speed is 10MB / s
With 10MB / s to 1MB / s ... so in a local (LAN) area network and WAN. I checked the server vsftpd / Samba / torrent client.I think that is the fault of the network adapter.
Any suggestions Huh
I found the solution! It is really easy. We need to find the name of our driver for the NIC network adapter.
lspci-v
lsmod | grep mii
For me this: r8169. Then, create a file and write text:
sudo gedit /etc/pm/config.d/unload_modules

Quote:SUSPEND_MODULES = "$SUSPEND_MODULES r8169"

works for me, this method Laugh