P7P55D network driver on Ubuntu

I had a big problem with my network load on Ubuntu. Whenever I copied
files over a gigabit network my system suddently freezed. You can check
if you’re affected by this bug if something like link up, link down, link up, link down keeps showing up on dmesg on high network load.

The problem was that Ubuntu loaded the r8169 driver instead of the
correct r8168 one. I’ve found an easy solution to blacklist the wrong
and install the correct driver.

Have a look at the VERSION string inside the script. If the downloaded
driver is a newer one you have to edit the string.

Put the script and the donwloaded and compressed driver into the same
directory and execute the script via sudo ./switchmods. It will
blacklist the r8168 driver and install the new driver modules.

That’s it. Enjoy copying files at high speed with no freezes.

 
0
Kudos
 
0
Kudos

Now read this

Using Jinja2 with Django

In the last days I tried to get Jinja2 working with Django. Here I want to explain a bit about the integration progress. First we need to install django and jinja2, but I won’t explain it in here, just use easy_install. After installing... Continue →