Severe KDE Konsole flickering

OS: FreeBSD 7.2, KDE: 3.5.10, driver: xf86-intel-video-2.7.1, graphics adaptor: Intel 865G, motherboard - ASUS P5PE-VM.

Noticed severe flickering while output scrolling in Konsole window. CPU usage is about 100%. As it scrolles, it is impossible to switch a tab, everythings really hungs.

xorg.conf has nothing special in it. DRI, i915dri modules are built into the kernel.

Is there any solution for this thing?
Windows XP/Vista works just fine, no slowdowns.

Thank you.
 
I don't use Intel not KDE.

But a couple of months ago I experienced similar problems under XFCE4 (unresponsive behavior, very slow, 100% CPU usage, etc). Turned out to be related to hal, dbus and xorg settings.

Make sure you've built x11-servers/xorg-server with hal (default option), enable hal and dbus on /etc/rc.conf.

Have a look at http://www.freebsd.org/doc/en/books/handbook/x-config.html for the exact steps explained with finner detail.

Also it would help if you've posted your /etc/X11/xorg.conf and /var/log/Xorg.0.log.
 
xorg.conf

I have everything enabled: DBUS and HAL.
My xorg.conf:
Code:
Section "ServerLayout"
   Identifier     "X.org Configured"
   Screen      0  "Screen0" 0 0
   InputDevice    "Mouse0" "CorePointer"
   InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "ServerFlags"
   Option         "DontZap"       "Off"
   Option         "AllowEmptyInput"  "Off"
EndSection

Section "Files"
    ModulePath   "/usr/local/lib/xorg/modules"
    FontPath    "/usr/local/lib/X11/fonts/misc"
    FontPath    "/usr/local/lib/X11/fonts/TTF"
    FontPath    "/usr/local/lib/X11/fonts/OTF"
    FontPath    "/usr/local/lib/X11/fonts/Type1"
    FontPath    "/usr/local/lib/X11/fonts/100dpi"
    FontPath    "/usr/local/lib/X11/fonts/75dpi"
    FontPath    "/usr/local/lib/X11/fonts/win-ttf"
    FontPath    "/usr/local/share/fonts"
EndSection

Section "Module"
   Load  "dbe"
   Load  "dri"
   Load  "dri2"
   Load  "extmod"
   Load  "glx"
   Load  "record"
    Load "freetype"
EndSection

Section "InputDevice"
   Identifier  "Keyboard0"
   Driver      "kbd"
   Option        "XkbRules"     "xorg"
   Option      "XkbLayout"    "us,ru"
   Option      "XkbVariant"   "basic,winkeys"
   Option      "XkbOptions"   "grp:ctrl_shift_toggle,numpad:microsoft"
EndSection

Section "InputDevice"
   Identifier  "Mouse0"
   Driver      "mouse"
   Option       "Protocol" "auto"
   Option       "Device" "/dev/sysmouse"
   Option       "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
   Identifier   "Monitor0"
   VendorName   "Monitor Vendor"
   ModelName    "Monitor Model"
   Modeline "1440x900_60.00"  106.47  1440 1520 1672 1904  900 901 904 932  -HSync +Vsync
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"               # [<bool>]
        #Option     "SWcursor"              # [<bool>]
        #Option     "ColorKey"              # <i>
        #Option     "CacheLines"            # <i>
        #Option     "Dac6Bit"               # [<bool>]
        Option      "DRI"              "Yes"
        #Option     "NoDDC"                 # [<bool>]
        #Option     "ShowCache"             # [<bool>]
        #Option     "XvMCSurfaces"          # <i>
        #Option     "PageFlip"              # [<bool>]
   Option      "AllowEmptyInput"      "off"
   Identifier  "Card0"
   Driver      "intel"
   VendorName  "Intel Corporation"
   BoardName   "82865G Integrated Graphics Controller"
   BusID       "PCI:0:2:0"
   VideoRam    262144
EndSection

Section "Screen"
   Identifier "Screen0"
   Device     "Card0"
   Monitor    "Monitor0"
   DefaultDepth    24
   SubSection "Display"
      Viewport   0 0
      Depth     24
   EndSubSection
EndSection

xorg.0.log has nither errors nor anything special and is rather big, so I will omit it.
 
Run % cat /var/log/Xorg.0.log | grep EE and % cat /var/log/Xorg.0.log | grep WW.

Post the results as these might help spotting problems.
 
Back
Top