Fórum Ubuntu CZ/SK
Ubuntu pro osobní počítače => Obecná podpora => Téma založeno: Khadgar 05 Března 2009, 02:59:58
-
Zdravím
už nějakou dobu řeším problém s aplikacemi využívajících služeb knihoven Xlib nebo Motif
(konkrétně ddd,insight,emacs,nedit a programy z "Xlib programming Manual" od O'Reilly).
Nezobrazuje se u nich text, v menu se zobrazuje maximálně podtržení. :(
Nevíte co by to mohlo způsobovat? Děkuji předem za odpověď.
U aplikací pracujícími pod GTK je vše OK.
Moje konfigurace (laptop FS L7320):
OS: Xubuntu 8.10 Intrepid (Kernel Linux 2.6.27-11-generic)
CPU: Intel(R) Celeron(R) M 1.70 GHz
RAM: 944,7 MiB
Grafická karta: VIA/S3 Unichrome Pro IGP, integrovaná, 64MB sdílené paměti
Chipset: VN800
Rozlišení displeje: 1200x800
Ovladač grafické karty: stažený odtud: http://linux.via.com.tw/support/beginDownload.action?eleid=221&fid=482 (http://linux.via.com.tw/support/beginDownload.action?eleid=221&fid=482)
xorg.conf:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-org package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-org
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection
Section "Module"
Load "glx"
Load "dri"
Load "extmod"
Load "dbe"
Load "xtrap"
Load "record"
EndSection
Section "Device"
Identifier "Configured Video Device"
Driver "via"
Option "HWCursor" "TRUE"
Option "SWCursor" "TRUE"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection
-
Tak už jsem to vyřešil. :D
Bylo to ovladačem.
Stačilo stáhnout zdrojáky openchrome ze http://svn.openchrome.org/svn/trunk
dopsat do src/via_id.c
{"VIA S3 UniChrome Pro IGP", VIA_VM800, 0x1509, 0x4330, VIA_DEVICE_CRT | VIA_DEVICE_LCD},
zkompilovat a nainstalovat pomocí wiki a do xorg.conf napsat toto:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "Device"
Identifier "Configured Video Device"
Driver "openchrome"
Option "XaaNoImageWriteRect"
Option "SWCursor" "true"
Option "HWCursor" "true"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
SubSection "Display"
Virtual 1280 800
EndSubSection
EndSection