Hi,
QuoteI, wbreu hast Du evlt eine Idee ob es einen besseren Netzwertreiber gibt? derzeit nutze ich die Forcede(a)th treiber vom Standard-Ubuntu-Kernel. Soweit ich weiss soll eine Realtek 8211 eingebaut sein, aber bei realtek finde ich keine Linuxtreiber. Ich habe leider starke "ts continuity errors" i.V. mit dem Netceiver und müsste sonst eine andere NIC einsetzen (und sogleich auch eine flexible Riserkarte einbauen). MfG Kris
da ich nun auch beim Aufrüsten des VDRs bei gleichzeitiger Nutzung eines NetCeivers bin:
Ich kenne dieUbuntu-Probleme mit IPV6 (z.B. bei Nutzung eines JK-Connectors mit Tomcat/Glassfish/JBoss...), wo die komplette Deaktivierung von IPV6 (ist bei 9.04 mit einer Neuübersetzung des Kernels verbunden) momentan der einzigste Ausweg ist.
Dies ist übrigens unabhängig von der Benutzung (wir setzen hier diverse IBM-Server aber zum Testen auch verschiedene Workstations ein) der Netzwerkkarte, d.h. nicht Realtek spezifisch.
Hast Du das schon ausprobiert?
Gruss
Burkhardt
Zusatz: Als Hilfe noch der passende Eintrag aus unserem wiki:
Install Tomcat Native for ubuntu >= 9.04
The difference in here is how to disable ipv6, because this isn't a kernel module anymore. So we have to recompile the kernel:
* Step 1: Get the needed packages
sudo apt-get install kernel-package libncurses5-dev fakeroot bzip2 linux-source
* Step 2: Unpack the kernel image
cd /usr/src
tar jxvf linux-source-*.tar.bz2
ln -sf /usr/src/linux-source-[version of the source you've got] /usr/src/linux
* Step 3: Save your kernel configuration
cd linux
sudo cp /boot/config-$(uname -r) .
sudo mv config-$(uname -r) .config
* Step 4: ipv6 as a module
sudo make menuconfig
In "Networking support" --> "Networking options" --> "IPv6 Protocol" as <M>
* Step 5: Recompiling the new kernel
sudo make-kpkg clean
sudo fakeroot make-kpkg --initrd --append-to-version=-noipv6 kernel_image kernel_headers
this can be take some hours...
* Step 6: Install the new kernel
cd /usr/src
sudo dpkg -i linux-headers-*.deb
sudo dpkg -i linux-image-*.deb
* Step 7: Blacklist the IPv6 module
sudo vi /etc/modprobe.d/blacklist.conf
and add
blacklist ipv6
* Step 8: Testing
After a reboot we can test, if ipv6 is disabled or not:
ip a | grep inet*
If there aren't any "inet6" outputs, then we have successfully disabled ipv6.
Display More