Neue Antwort schreiben 
 
Themabewertung:
  • 0 Bewertung(en) - 0 im Durchschnitt
  • 1
  • 2
  • 3
  • 4
  • 5
Farbtiefe ändern
mrshadowtux
Unregistered

 
Beitrag #1
Farbtiefe ändern
Moin,
mal eine zugegebenerweise einfache Frage: Wie änder ich unter X die Farbtiefe? Habe hier nur 16bit Farben auf meinem X30 und hätte gerne mehr. In der Manpage von xrandr finde ich nichts zur Farbtiefe und auch der grafische Einsteller von XFCE bietet das nicht. Daher die Frage: Wie ändere ich sie auf 32bit?
Grafikkarte:
afeld@bonzenbook:~$ lspci | grep -i vga
00:02.0 VGA compatible controller: Intel Corporation 82830M/MG Integrated Graphics Controller (rev 04)


Danke im Voraus!
17.05.2013 20:22
Diese Nachricht in einer Antwort zitieren
gandro Offline
Quälgeist

Beiträge: 8.955
Registriert seit: Jul 2008
Beitrag #2
RE: Farbtiefe ändern
Die Screen-Section hat ne DefaultDepth (bzw. die Display-SubSection von Screens hat ne Depth) Einstellung: xorg.conf(5)

Ansonsten, mehr als 24 Bit hat praktisch keine Grafikkarte. TrueColor ist nicht 32bit. Windows lügt.
(Dieser Beitrag wurde zuletzt bearbeitet: 17.05.2013 20:37 von gandro.)
17.05.2013 20:34
Alle Beiträge dieses Benutzers finden Diese Nachricht in einer Antwort zitieren
mrshadowtux
Unregistered

 
Beitrag #3
RE: Farbtiefe ändern
(17.05.2013 20:34)gandro schrieb:  Die Screen-Section hat ne DefaultDepth (bzw. die Display-SubSection von Screens hat ne Depth) Einstellung: xorg.conf(5)
Hm mein letzter Stand war, dass man keine xorg.conf mehr verwenden soll und stattdessen xrandr zu nutzen wäre. Oder vertu ich mich? Mein Xubuntu hat auch garkeine. Kann man eine manuell anlegen?

(17.05.2013 20:34)gandro schrieb:  Ansonsten, mehr als 24Bit hat praktisch keine Grafikkarte. TrueColor ist nicht 32bit. Windows lügt.
Jo weiß ich, 8 Bit für den Alphakanal usw.
17.05.2013 20:37
Diese Nachricht in einer Antwort zitieren
Commodore-Freak Offline
Mit Velocity Engine

Beiträge: 5.309
Registriert seit: Jul 2008
Beitrag #4
RE: Farbtiefe ändern
(17.05.2013 20:37)mrshadowtux schrieb:  
(17.05.2013 20:34)gandro schrieb:  Die Screen-Section hat ne DefaultDepth (bzw. die Display-SubSection von Screens hat ne Depth) Einstellung: xorg.conf(5)
Hm mein letzter Stand war, dass man keine xorg.conf mehr verwenden soll und stattdessen xrandr zu nutzen wäre. Oder vertu ich mich? Mein Xubuntu hat auch garkeine. Kann man eine manuell anlegen?

Du sollst auch keine xorg.conf anlegen, das ist richtig. Stattdessen werden einzelne Konfigurations-Dateien verwendet, die in /etc/X11/xorg.conf.d/ liegen. Lege dir dort einfach eine neue Datei mit einer Screen-Section und der entsprechenden Option an, so wie du diese Section auch in deine xorg.conf schreiben würdest.
17.05.2013 20:41
Webseite des Benutzers besuchen Alle Beiträge dieses Benutzers finden Diese Nachricht in einer Antwort zitieren
gandro Offline
Quälgeist

Beiträge: 8.955
Registriert seit: Jul 2008
Beitrag #5
RE: Farbtiefe ändern
Das xorg.conf.d Verzeichnis ist nicht obsolet, gerade Treibereinstellungen die nicht zur Runtime geändert werden können gehören da rein.

xrandr hat keine Farbtiefe denn RandR ist eine Extension für Änderungen an den Monitor-Settings (darum auch das R für Rotationen usw, weil man physikalische Monitore auch rotieren kann). Farbtiefe ist aber keine Einstellung des Monitors (der kann ja auch monochrom sein, obwohl ein RGB-Signal reinkommt), sondern dessen was X11 als "Screen" bezeichnet. Ein Screen ist die Leinwand für Fenster. Und das Display (aka. das grafische "TTY"-Interface) kann dann aus einem oder mehreren Screens bestehen.

Früher hat man für Multi-Monitor-Settings mehrere Screens auf einem Display gehabt, da konnte man dann auch keine Fenster zwischen den Bildschirmen herschieben. Xinerama und Co erlauben es dir dann einen Screen auf mehrer Monitore zu verteilen, so dass du pro Display auch wieder nur einen Screen hast. In der DISPLAY-Variable sieht man das auch. DISPLAY=:0.1 heisst: Display 0, Screen 1. Die meisten haben heutzutage DISPLAY=:0 (entspricht :0.0), also nur einen Screen 0 auf dem Display 0.

Eine Screen-Auflösung kann auch grösser als deine Monitor-Auflösung sein, dann kannst du mit der Maus den Ausschnitt verschieben. Ein Display kann aus einem Screen oder mehreren Screens bestehen, und Screens werden dann einen pro Stück auf die Monitore verteilt.

TLDR: Farbtiefe ist eine Einstellung des Screens, also der Leinwandfläche wo Programme reinmalen dürfen. Das kannste im X11-Protokoll (alter Müll halt) daher zur Laufzeit auch nicht ändern, sondern gehört in das xorg.conf.d. Mit dem Monitor und damit xrandr hat das nichts zu tun.
(Dieser Beitrag wurde zuletzt bearbeitet: 17.05.2013 21:02 von gandro.)
17.05.2013 20:57
Alle Beiträge dieses Benutzers finden Diese Nachricht in einer Antwort zitieren
mrshadowtux
Unregistered

 
Beitrag #6
RE: Farbtiefe ändern
Hm gibt es eine Vorlage für die Screen-Section?

Folgendes genügt nicht und sorgt dafür, dass der Xserver nicht startet:
afeld@bonzenbook:~$ cat /etc/X11/xorg.conf.d/10-farbtiefe.conf
Section "Screen"
DefaultDepth 24
EndSection

Ich muss also vermutlich eine komplette Screen-Section hinschreiben
17.05.2013 21:03
Diese Nachricht in einer Antwort zitieren
gandro Offline
Quälgeist

Beiträge: 8.955
Registriert seit: Jul 2008
Beitrag #7
RE: Farbtiefe ändern
The Identifier entry is mandatory. All others are optional:

Section "Screen"
Identifier "Bonzenscreen"
DefaultDepth 24
EndSection
(Dieser Beitrag wurde zuletzt bearbeitet: 17.05.2013 21:13 von gandro.)
17.05.2013 21:13
Alle Beiträge dieses Benutzers finden Diese Nachricht in einer Antwort zitieren
mrshadowtux
Unregistered

 
Beitrag #8
RE: Farbtiefe ändern
Danke, mal testen :)

Hm so startet der Xserver zwar, allerdings sind die Farben immernoch nur 16bittig :(
17.05.2013 21:14
Diese Nachricht in einer Antwort zitieren
gandro Offline
Quälgeist

Beiträge: 8.955
Registriert seit: Jul 2008
Beitrag #9
RE: Farbtiefe ändern
Hast du mal die xorg.log?
17.05.2013 21:28
Alle Beiträge dieses Benutzers finden Diese Nachricht in einer Antwort zitieren
mrshadowtux
Unregistered

 
Beitrag #10
RE: Farbtiefe ändern
Code:
root@bonzenbook:~# cat /var/log/Xorg.0.log
[ 28795.578]
X.Org X Server 1.12.4
Release Date: 2012-08-27
[ 28795.578] X Protocol Version 11, Revision 0
[ 28795.578] Build Operating System: Linux 2.6.32-5-686-bigmem i686 Debian
[ 28795.578] Current Operating System: Linux bonzenbook 3.2.0-4-686-pae #1 SMP Debian 3.2.41-2 i686
[ 28795.578] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-686-pae root=UUID=c9f656e4-b07b-447b-948e-f5de36167f0d ro quiet
[ 28795.578] Build Date: 17 April 2013  11:13:16AM
[ 28795.578] xorg-server 2:1.12.4-6 (Julien Cristau <jcristau@debian.org>)
[ 28795.578] Current version of pixman: 0.26.0
[ 28795.579]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[ 28795.579] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 28795.579] (==) Log file: "/var/log/Xorg.0.log", Time: Fri May 17 22:17:31 2013
[ 28795.580] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 28795.580] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 28795.581] (==) No Layout section.  Using the first Screen section.
[ 28795.581] (**) |-->Screen "Bonzenscreen" (0)
[ 28795.581] (**) |   |-->Monitor "<default monitor>"
[ 28795.582] (==) No monitor specified for screen "Bonzenscreen".
    Using a default monitor configuration.
[ 28795.582] (==) Automatically adding devices
[ 28795.582] (==) Automatically enabling devices
[ 28795.582] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[ 28795.582]     Entry deleted from font path.
[ 28795.582] (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist.
[ 28795.582]     Entry deleted from font path.
[ 28795.582] (==) FontPath set to:
    /usr/share/fonts/X11/misc,
    /usr/share/fonts/X11/100dpi/:unscaled,
    /usr/share/fonts/X11/75dpi/:unscaled,
    /usr/share/fonts/X11/Type1,
    /usr/share/fonts/X11/100dpi,
    /usr/share/fonts/X11/75dpi,
    built-ins
[ 28795.582] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 28795.583] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 28795.583] (II) Loader magic: 0xb77505a0
[ 28795.583] (II) Module ABI versions:
[ 28795.583]     X.Org ANSI C Emulation: 0.4
[ 28795.583]     X.Org Video Driver: 12.1
[ 28795.583]     X.Org XInput driver : 16.0
[ 28795.583]     X.Org Server Extension : 6.0
[ 28795.585] (--) PCI:*(0:0:2:0) 8086:3577:1014:0513 rev 4, Mem @ 0xe0000000/134217728, 0xd0000000/524288
[ 28795.585] (--) PCI: (0:0:2:1) 8086:3577:1014:0513 rev 0, Mem @ 0xe8000000/134217728, 0xd0080000/524288
[ 28795.586] (II) Open ACPI successful (/var/run/acpid.socket)
[ 28795.586] (II) LoadModule: "extmod"
[ 28795.587] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[ 28795.602] (II) Module extmod: vendor="X.Org Foundation"
[ 28795.602]     compiled for 1.12.4, module version = 1.0.0
[ 28795.602]     Module class: X.Org Server Extension
[ 28795.602]     ABI class: X.Org Server Extension, version 6.0
[ 28795.602] (II) Loading extension SELinux
[ 28795.602] (II) Loading extension MIT-SCREEN-SAVER
[ 28795.602] (II) Loading extension XFree86-VidModeExtension
[ 28795.602] (II) Loading extension XFree86-DGA
[ 28795.602] (II) Loading extension DPMS
[ 28795.602] (II) Loading extension XVideo
[ 28795.602] (II) Loading extension XVideo-MotionCompensation
[ 28795.603] (II) Loading extension X-Resource
[ 28795.603] (II) LoadModule: "dbe"
[ 28795.603] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[ 28795.603] (II) Module dbe: vendor="X.Org Foundation"
[ 28795.603]     compiled for 1.12.4, module version = 1.0.0
[ 28795.604]     Module class: X.Org Server Extension
[ 28795.604]     ABI class: X.Org Server Extension, version 6.0
[ 28795.604] (II) Loading extension DOUBLE-BUFFER
[ 28795.604] (II) LoadModule: "glx"
[ 28795.604] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 28795.605] (II) Module glx: vendor="X.Org Foundation"
[ 28795.605]     compiled for 1.12.4, module version = 1.0.0
[ 28795.605]     ABI class: X.Org Server Extension, version 6.0
[ 28795.605] (==) AIGLX enabled
[ 28795.605] (II) Loading extension GLX
[ 28795.605] (II) LoadModule: "record"
[ 28795.605] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[ 28795.606] (II) Module record: vendor="X.Org Foundation"
[ 28795.606]     compiled for 1.12.4, module version = 1.13.0
[ 28795.606]     Module class: X.Org Server Extension
[ 28795.606]     ABI class: X.Org Server Extension, version 6.0
[ 28795.606] (II) Loading extension RECORD
[ 28795.606] (II) LoadModule: "dri"
[ 28795.606] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[ 28795.607] (II) Module dri: vendor="X.Org Foundation"
[ 28795.607]     compiled for 1.12.4, module version = 1.0.0
[ 28795.607]     ABI class: X.Org Server Extension, version 6.0
[ 28795.607] (II) Loading extension XFree86-DRI
[ 28795.607] (II) LoadModule: "dri2"
[ 28795.608] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[ 28795.608] (II) Module dri2: vendor="X.Org Foundation"
[ 28795.608]     compiled for 1.12.4, module version = 1.2.0
[ 28795.608]     ABI class: X.Org Server Extension, version 6.0
[ 28795.608] (II) Loading extension DRI2
[ 28795.608] (==) Matched intel as autoconfigured driver 0
[ 28795.608] (==) Matched vesa as autoconfigured driver 1
[ 28795.609] (==) Matched fbdev as autoconfigured driver 2
[ 28795.609] (==) Assigned the driver to the xf86ConfigLayout
[ 28795.609] (II) LoadModule: "intel"
[ 28795.610] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[ 28795.610] (II) Module intel: vendor="X.Org Foundation"
[ 28795.610]     compiled for 1.12.3.902, module version = 2.19.0
[ 28795.610]     Module class: X.Org Video Driver
[ 28795.610]     ABI class: X.Org Video Driver, version 12.1
[ 28795.611] (II) LoadModule: "vesa"
[ 28795.612] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[ 28795.612] (II) Module vesa: vendor="X.Org Foundation"
[ 28795.612]     compiled for 1.12.1, module version = 2.3.1
[ 28795.612]     Module class: X.Org Video Driver
[ 28795.612]     ABI class: X.Org Video Driver, version 12.0
[ 28795.612] (II) LoadModule: "fbdev"
[ 28795.613] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[ 28795.613] (II) Module fbdev: vendor="X.Org Foundation"
[ 28795.613]     compiled for 1.12.1, module version = 0.4.2
[ 28795.613]     ABI class: X.Org Video Driver, version 12.0
[ 28795.613] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
    Ivybridge Server (GT2)
[ 28795.617] (II) VESA: driver for VESA chipsets: vesa
[ 28795.618] (II) FBDEV: driver for framebuffer: fbdev
[ 28795.618] (++) using VT number 7

[ 28795.652] (WW) Falling back to old probe method for vesa
[ 28795.652] (WW) Falling back to old probe method for fbdev
[ 28795.652] (II) Loading sub module "fbdevhw"
[ 28795.652] (II) LoadModule: "fbdevhw"
[ 28795.653] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[ 28795.653] (II) Module fbdevhw: vendor="X.Org Foundation"
[ 28795.653]     compiled for 1.12.4, module version = 0.0.2
[ 28795.653]     ABI class: X.Org Video Driver, version 12.1
[ 28795.654] drmOpenDevice: node name is /dev/dri/card0
[ 28795.654] drmOpenDevice: open result is 9, (OK)
[ 28795.654] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[ 28795.654] drmOpenDevice: node name is /dev/dri/card0
[ 28795.654] drmOpenDevice: open result is 9, (OK)
[ 28795.654] drmOpenByBusid: drmOpenMinor returns 9
[ 28795.654] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[ 28795.654] (II) intel(0): Creating default Display subsection in Screen section
    "Bonzenscreen" for depth/fbbpp 24/32
[ 28795.654] (**) intel(0): Depth 24, (--) framebuffer bpp 32
[ 28795.655] (==) intel(0): RGB weight 888
[ 28795.655] (==) intel(0): Default visual is TrueColor
[ 28795.655] (II) intel(0): Integrated Graphics Chipset: Intel(R) i830M
[ 28795.655] (--) intel(0): Chipset: "i830M"
[ 28795.655] (**) intel(0): Relaxed fencing disabled
[ 28795.655] (**) intel(0): Wait on SwapBuffers? enabled
[ 28795.655] (**) intel(0): Triple buffering? enabled
[ 28795.655] (**) intel(0): Framebuffer tiled
[ 28795.655] (**) intel(0): Pixmaps tiled
[ 28795.655] (**) intel(0): 3D buffers tiled
[ 28795.655] (**) intel(0): SwapBuffers wait enabled
[ 28795.655] (==) intel(0): video overlay key set to 0x101fe
[ 28795.749] (II) intel(0): Output VGA1 has no monitor section
[ 28795.749] (II) intel(0): Output LVDS1 has no monitor section
[ 28795.750] (II) intel(0): found backlight control interface /sys/class/backlight/thinkpad_screen
[ 28795.833] (II) intel(0): EDID for output VGA1
[ 28795.833] (II) intel(0): Printing probed modes for output VGA1
[ 28795.833] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[ 28795.833] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[ 28795.833] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[ 28795.833] (II) intel(0): Modeline "848x480"x60.0   33.75  848 864 976 1088  480 486 494 517 +hsync +vsync (31.0 kHz e)
[ 28795.834] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 489 492 525 -hsync -vsync (31.5 kHz e)
[ 28795.834] (II) intel(0): EDID for output LVDS1
[ 28795.835] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "576x432" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "680x384" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "680x384" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "720x450" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "800x512" (doublescan mode not supported)
[ 28795.835] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported)
[ 28795.836] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported)
[ 28795.836] (II) intel(0): Not using default mode "960x540" (doublescan mode not supported)
[ 28795.836] (II) intel(0): Not using default mode "960x600" (doublescan mode not supported)
[ 28795.836] (II) intel(0): Printing probed modes for output LVDS1
[ 28795.836] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 +hsync +vsync (48.4 kHz P)
[ 28795.836] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[ 28795.836] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[ 28795.836] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[ 28795.836] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[ 28795.836] (II) intel(0): Output VGA1 connected
[ 28795.836] (II) intel(0): Output LVDS1 connected
[ 28795.836] (II) intel(0): Using exact sizes for initial modes
[ 28795.836] (II) intel(0): Output VGA1 using initial mode 1024x768
[ 28795.837] (II) intel(0): Output LVDS1 using initial mode 1024x768
[ 28795.837] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[ 28795.837] (II) intel(0): Kernel page flipping support detected, enabling
[ 28795.837] (==) intel(0): DPI set to (96, 96)
[ 28795.837] (II) Loading sub module "fb"
[ 28795.837] (II) LoadModule: "fb"
[ 28795.837] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 28795.838] (II) Module fb: vendor="X.Org Foundation"
[ 28795.838]     compiled for 1.12.4, module version = 1.0.0
[ 28795.838]     ABI class: X.Org ANSI C Emulation, version 0.4
[ 28795.838] (II) Loading sub module "dri2"
[ 28795.838] (II) LoadModule: "dri2"
[ 28795.839] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[ 28795.839] (II) Module dri2: vendor="X.Org Foundation"
[ 28795.839]     compiled for 1.12.4, module version = 1.2.0
[ 28795.839]     ABI class: X.Org Server Extension, version 6.0
[ 28795.839] (II) UnloadModule: "vesa"
[ 28795.839] (II) Unloading vesa
[ 28795.839] (II) UnloadModule: "fbdev"
[ 28795.839] (II) Unloading fbdev
[ 28795.839] (II) UnloadSubModule: "fbdevhw"
[ 28795.839] (II) Unloading fbdevhw
[ 28795.839] (==) Depth 24 pixmap format is 32 bpp
[ 28795.840] (II) intel(0): [DRI2] Setup complete
[ 28795.840] (II) intel(0): [DRI2]   DRI driver: i915
[ 28795.840] (II) intel(0): Allocated new frame buffer 1024x768 stride 4096, tiled
[ 28795.840] (II) UXA(0): Driver registered support for the following operations:
[ 28795.840] (II)         solid
[ 28795.840] (II)         copy
[ 28795.840] (II)         composite (RENDER acceleration)
[ 28795.840] (II)         put_image
[ 28795.841] (II)         get_image
[ 28795.841] (==) intel(0): Backing store disabled
[ 28795.841] (==) intel(0): Silken mouse enabled
[ 28795.841] (II) intel(0): Initializing HW Cursor
[ 28795.841] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[ 28795.843] (==) intel(0): DPMS enabled
[ 28795.844] (==) intel(0): Intel XvMC decoder disabled
[ 28795.844] (II) intel(0): Set up overlay video
[ 28795.844] (II) intel(0): direct rendering: DRI2 Enabled
[ 28795.844] (==) intel(0): hotplug detection: "enabled"
[ 28796.194] (--) RandR disabled
[ 28796.194] (II) Initializing built-in extension Generic Event Extension
[ 28796.194] (II) Initializing built-in extension SHAPE
[ 28796.194] (II) Initializing built-in extension MIT-SHM
[ 28796.194] (II) Initializing built-in extension XInputExtension
[ 28796.194] (II) Initializing built-in extension XTEST
[ 28796.194] (II) Initializing built-in extension BIG-REQUESTS
[ 28796.194] (II) Initializing built-in extension SYNC
[ 28796.194] (II) Initializing built-in extension XKEYBOARD
[ 28796.194] (II) Initializing built-in extension XC-MISC
[ 28796.194] (II) Initializing built-in extension SECURITY
[ 28796.194] (II) Initializing built-in extension XINERAMA
[ 28796.194] (II) Initializing built-in extension XFIXES
[ 28796.195] (II) Initializing built-in extension RENDER
[ 28796.195] (II) Initializing built-in extension RANDR
[ 28796.195] (II) Initializing built-in extension COMPOSITE
[ 28796.195] (II) Initializing built-in extension DAMAGE
[ 28796.195] (II) SELinux: Disabled on system
[ 28796.239] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[ 28796.239] (II) AIGLX: enabled GLX_INTEL_swap_event
[ 28796.239] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[ 28796.239] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[ 28796.240] (II) AIGLX: Loaded and initialized i915
[ 28796.240] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 28796.242] (II) intel(0): Setting screen physical size to 270 x 203
[ 28796.415] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[ 28796.416] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 28796.416] (II) LoadModule: "evdev"
[ 28796.417] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 28796.434] (II) Module evdev: vendor="X.Org Foundation"
[ 28796.434]     compiled for 1.12.1, module version = 2.7.0
[ 28796.434]     Module class: X.Org XInput Driver
[ 28796.434]     ABI class: X.Org XInput driver, version 16.0
[ 28796.434] (II) Using input driver 'evdev' for 'Power Button'
[ 28796.435] (**) Power Button: always reports core events
[ 28796.435] (**) evdev: Power Button: Device: "/dev/input/event3"
[ 28796.435] (--) evdev: Power Button: Vendor 0 Product 0x1
[ 28796.435] (--) evdev: Power Button: Found keys
[ 28796.435] (II) evdev: Power Button: Configuring as keyboard
[ 28796.435] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[ 28796.435] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 28796.435] (**) Option "xkb_rules" "evdev"
[ 28796.435] (**) Option "xkb_model" "pc105"
[ 28796.435] (**) Option "xkb_layout" "de"
[ 28796.526] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
[ 28796.526] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[ 28796.526] (II) Using input driver 'evdev' for 'Video Bus'
[ 28796.526] (**) Video Bus: always reports core events
[ 28796.526] (**) evdev: Video Bus: Device: "/dev/input/event4"
[ 28796.526] (--) evdev: Video Bus: Vendor 0 Product 0x6
[ 28796.526] (--) evdev: Video Bus: Found keys
[ 28796.526] (II) evdev: Video Bus: Configuring as keyboard
[ 28796.526] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:00/input/input4/event4"
[ 28796.526] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[ 28796.526] (**) Option "xkb_rules" "evdev"
[ 28796.527] (**) Option "xkb_model" "pc105"
[ 28796.527] (**) Option "xkb_layout" "de"
[ 28796.529] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[ 28796.530] (II) No input driver specified, ignoring this device.
[ 28796.530] (II) This device may have been added with another device file.
[ 28796.531] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[ 28796.531] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[ 28796.531] (II) Using input driver 'evdev' for 'Sleep Button'
[ 28796.531] (**) Sleep Button: always reports core events
[ 28796.531] (**) evdev: Sleep Button: Device: "/dev/input/event2"
[ 28796.531] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[ 28796.531] (--) evdev: Sleep Button: Found keys
[ 28796.531] (II) evdev: Sleep Button: Configuring as keyboard
[ 28796.531] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[ 28796.531] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
[ 28796.531] (**) Option "xkb_rules" "evdev"
[ 28796.531] (**) Option "xkb_model" "pc105"
[ 28796.532] (**) Option "xkb_layout" "de"
[ 28796.534] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[ 28796.534] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[ 28796.534] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[ 28796.534] (**) AT Translated Set 2 keyboard: always reports core events
[ 28796.534] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[ 28796.534] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[ 28796.534] (--) evdev: AT Translated Set 2 keyboard: Found keys
[ 28796.535] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[ 28796.535] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[ 28796.535] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
[ 28796.535] (**) Option "xkb_rules" "evdev"
[ 28796.535] (**) Option "xkb_model" "pc105"
[ 28796.535] (**) Option "xkb_layout" "de"
[ 28796.537] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event7)
[ 28796.537] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
[ 28796.537] (**) TPPS/2 IBM TrackPoint: Applying InputClass "ThinkPad TrackPoint"
[ 28796.538] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
[ 28796.538] (**) TPPS/2 IBM TrackPoint: always reports core events
[ 28796.538] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event7"
[ 28796.538] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
[ 28796.538] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
[ 28796.538] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
[ 28796.538] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
[ 28796.538] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
[ 28796.538] (**) Option "EmulateWheel" "true"
[ 28796.538] (**) Option "EmulateWheelButton" "2"
[ 28796.538] (**) Option "YAxisMapping" "4 5"
[ 28796.539] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
[ 28796.539] (**) Option "XAxisMapping" "6 7"
[ 28796.539] (**) evdev: TPPS/2 IBM TrackPoint: XAxisMapping: buttons 6 and 7
[ 28796.539] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 2, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 28796.539] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event7"
[ 28796.539] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 10)
[ 28796.539] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
[ 28796.540] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
[ 28796.540] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
[ 28796.540] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
[ 28796.540] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
[ 28796.541] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse0)
[ 28796.541] (II) No input driver specified, ignoring this device.
[ 28796.541] (II) This device may have been added with another device file.
[ 28796.542] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
[ 28796.542] (II) No input driver specified, ignoring this device.
[ 28796.542] (II) This device may have been added with another device file.
[ 28796.544] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event6)
[ 28796.544] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
[ 28796.544] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
[ 28796.544] (**) ThinkPad Extra Buttons: always reports core events
[ 28796.544] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event6"
[ 28796.544] (--) evdev: ThinkPad Extra Buttons: Vendor 0x1014 Product 0x5054
[ 28796.544] (--) evdev: ThinkPad Extra Buttons: Found keys
[ 28796.544] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
[ 28796.544] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input6/event6"
[ 28796.544] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 11)
[ 28796.544] (**) Option "xkb_rules" "evdev"
[ 28796.545] (**) Option "xkb_model" "pc105"
[ 28796.545] (**) Option "xkb_layout" "de"
[ 28796.547] (II) config/udev: Adding input device ACPI Virtual Keyboard Device (/dev/input/event8)
[ 28796.547] (**) ACPI Virtual Keyboard Device: Applying InputClass "evdev keyboard catchall"
[ 28796.547] (II) Using input driver 'evdev' for 'ACPI Virtual Keyboard Device'
[ 28796.547] (**) ACPI Virtual Keyboard Device: always reports core events
[ 28796.547] (**) evdev: ACPI Virtual Keyboard Device: Device: "/dev/input/event8"
[ 28796.548] (--) evdev: ACPI Virtual Keyboard Device: Vendor 0 Product 0
[ 28796.548] (--) evdev: ACPI Virtual Keyboard Device: Found keys
[ 28796.548] (II) evdev: ACPI Virtual Keyboard Device: Configuring as keyboard
[ 28796.548] (**) Option "config_info" "udev:/sys/devices/virtual/input/input8/event8"
[ 28796.548] (II) XINPUT: Adding extended input device "ACPI Virtual Keyboard Device" (type: KEYBOARD, id 12)
[ 28796.548] (**) Option "xkb_rules" "evdev"
[ 28796.548] (**) Option "xkb_model" "pc105"
[ 28796.548] (**) Option "xkb_layout" "de"
root@bonzenbook:~#
17.05.2013 21:33
Diese Nachricht in einer Antwort zitieren
Neue Antwort schreiben 


Gehe zu:


Benutzer, die gerade dieses Thema anschauen: 1 Gast/Gäste