Nie jesteś zalogowany.
Jeśli nie posiadasz konta, zarejestruj je już teraz! Pozwoli Ci ono w pełni korzystać z naszego serwisu. Spamerom dziękujemy!

Ogłoszenie

Prosimy o pomoc dla małej Julki — przekaż 1% podatku na Fundacji Dzieciom zdazyć z Pomocą.
Więcej informacji na dug.net.pl/pomagamy/.

#1  2012-02-02 11:55:01

  Cosik - świr elektronik

Cosik
świr elektronik
Skąd: Nowy Sącz / Wrocław
Zarejestrowany: 2009-01-20
Serwis

dwa monitory i fluxbox i lxde

Witam, mam do laptopa podpięty monitor 23'. Po którejś aktualizacji dolny pasek we fluxbox zaczął pojawiać mi się na monitorze a nie matrycy laptopa. Zainstalowałem sobie też lxde, jednak jak się okazało w nim ten pasek jak tak rozciągnięty że część z logiem lxde jest na części niedostępnej i niewidocznej. Mam kartę graficzną intel 4500M i testinga 64bity.

Offline

 

#2  2012-02-02 12:09:46

  NIC - Członek DUG

NIC
Członek DUG
Skąd: Wrocław
Zarejestrowany: 2006-12-25
Serwis

Re: dwa monitory i fluxbox i lxde

Na początek nieco logów by się przydało:

Kod:

xrandr
cat /var/log/Xorg.0.log # lub inna cyferka, np. 1,  który plik? Ten aktualny, tj. patrz data uruchomienia w pewniej linii na początku tego pliku: "Log file <ŚCIEŻKA> Time: <DATA>"

Jak konfigurowałeś monitory? Czy może na domyślnych ustawieniach jedziesz?


Stronka-dom: http://titek.victorygames.pl
Jabber: nic@jabster.pl
Hobby: kompilowanie Linuksa, Bluetooth
Dystrybucja: żadna, bliski krewny LFS, składak

Offline

 

#3  2012-02-02 12:36:22

  Cosik - świr elektronik

Cosik
świr elektronik
Skąd: Nowy Sącz / Wrocław
Zarejestrowany: 2009-01-20
Serwis

Re: dwa monitory i fluxbox i lxde

xrandr

Kod:

Screen 0: minimum 320 x 200, current 3200 x 1080, maximum 8192 x 8192
LVDS1 connected 1280x800+0+0 (normal left inverted right x axis y axis) 331mm x 207mm
   1280x800       60.0*+
   1024x768       60.0  
   800x600        60.3     56.2  
   640x480        59.9  
VGA1 disconnected (normal left inverted right x axis y axis)
HDMI1 connected 1920x1080+1280+0 (normal left inverted right x axis y axis) 510mm x 287mm
   1920x1080      60.0*+
   1600x1200      60.0  
   1680x1050      60.0  
   1280x1024      60.0  
   1440x900       59.9  
   1280x960       60.0  
   1024x768       60.0  
   800x600        60.3  
   720x480        59.9  
   640x480        60.0  
   720x400        70.1  
DP1 disconnected (normal left inverted right x axis y axis)
DP2 disconnected (normal left inverted right x axis y axis)

skrypt do xrandr

Kod:

#!/bin/sh

# If an external monitor is connected, place it with xrandr
 
# External output may be "VGA" or "VGA-0" or "DVI-0" or "TMDS-1"
EXTERNAL_OUTPUT="VGA1"
INTERNAL_OUTPUT="LVDS1"
EXTERNAL_OUTPUT="HDMI1"
# EXTERNAL_LOCATION may be one of: left, right, above, or below
EXTERNAL_LOCATION="right"
 
case "$EXTERNAL_LOCATION" in
       left|LEFT)
               EXTERNAL_LOCATION="--left-of $INTERNAL_OUTPUT"
               ;;
       right|RIGHT)
               EXTERNAL_LOCATION="--right-of $INTERNAL_OUTPUT"
               ;;
       top|TOP|above|ABOVE)
               EXTERNAL_LOCATION="--above $INTERNAL_OUTPUT"
               ;;
       bottom|BOTTOM|below|BELOW)
               EXTERNAL_LOCATION="--below $INTERNAL_OUTPUT"
               ;;
       *)
               EXTERNAL_LOCATION="--left-of $INTERNAL_OUTPUT"
               ;;
esac
 
xrandr |grep $EXTERNAL_OUTPUT | grep " connected "
if [ $? -eq 0 ]; then
    xrandr --output $INTERNAL_OUTPUT --auto --primary --output $EXTERNAL_OUTPUT --auto $EXTERNAL_LOCATION
    # Alternative command in case of trouble:
    # (sleep 2; xrandr --output $INTERNAL_OUTPUT --auto --output $EXTERNAL_OUTPUT --auto $EXTERNAL_LOCATION) &
else
    xrandr --output $INTERNAL_OUTPUT --auto --output $EXTERNAL_OUTPUT --off
fi

a loga z xorg masz całego bo nie wiem co konkretnie chcesz :P

Kod:

[   321.946] 
X.Org X Server 1.11.3.901 (1.11.4 RC 1)
Release Date: 2012-01-06
[   321.947] X Protocol Version 11, Revision 0
[   321.947] Build Operating System: Linux 3.2.0-rc6+ x86_64 Debian
[   321.947] Current Operating System: Linux laptop 3.1.0-1-amd64 #1 SMP Tue Jan 10 05:01:58 UTC 2012 x86_64
[   321.947] Kernel command line: BOOT_IMAGE=/vmlinuz-3.1.0-1-amd64 root=UUID=dec08b64-e5fe-4638-92a4-1507b91bb558 ro quiet
[   321.947] Build Date: 19 January 2012  09:53:39AM
[   321.947] xorg-server 2:1.11.3.901-2 (Cyril Brulebois <kibi@debian.org>) 
[   321.947] Current version of pixman: 0.24.2
[   321.947]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[   321.947] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   321.947] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Feb  2 10:42:47 2012
[   321.947] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   321.947] (==) No Layout section.  Using the first Screen section.
[   321.947] (==) No screen section available. Using defaults.
[   321.947] (**) |-->Screen "Default Screen Section" (0)
[   321.947] (**) |   |-->Monitor "<default monitor>"
[   321.947] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[   321.947] (==) Automatically adding devices
[   321.947] (==) Automatically enabling devices
[   321.947] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[   321.947]     Entry deleted from font path.
[   321.947] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[   321.947]     Entry deleted from font path.
[   321.947] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[   321.947]     Entry deleted from font path.
[   321.947] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[   321.947]     Entry deleted from font path.
[   321.947] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[   321.947]     Entry deleted from font path.
[   321.948] (WW) `fonts.dir' not found (or not valid) in "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType".
[   321.948]     Entry deleted from font path.
[   321.948]     (Run 'mkfontdir' on "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType").
[   321.948] (==) FontPath set to:
    /usr/share/fonts/X11/misc,
    /usr/share/fonts/X11/Type1,
    built-ins
[   321.948] (==) ModulePath set to "/usr/lib/xorg/modules"
[   321.948] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
[   321.948] (II) Loader magic: 0x7f995989dae0
[   321.948] (II) Module ABI versions:
[   321.948]     X.Org ANSI C Emulation: 0.4
[   321.948]     X.Org Video Driver: 11.0
[   321.948]     X.Org XInput driver : 13.0
[   321.948]     X.Org Server Extension : 6.0
[   321.949] (--) PCI:*(0:0:2:0) 8086:2a42:17aa:3a02 rev 7, Mem @ 0xf4000000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
[   321.949] (--) PCI: (0:0:2:1) 8086:2a43:17aa:3a02 rev 7, Mem @ 0xf4400000/1048576
[   321.949] (II) Open ACPI successful (/var/run/acpid.socket)
[   321.949] (II) LoadModule: "extmod"
[   321.949] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[   321.950] (II) Module extmod: vendor="X.Org Foundation"
[   321.950]     compiled for 1.11.3.901, module version = 1.0.0
[   321.950]     Module class: X.Org Server Extension
[   321.950]     ABI class: X.Org Server Extension, version 6.0
[   321.950] (II) Loading extension SELinux
[   321.950] (II) Loading extension MIT-SCREEN-SAVER
[   321.950] (II) Loading extension XFree86-VidModeExtension
[   321.950] (II) Loading extension XFree86-DGA
[   321.950] (II) Loading extension DPMS
[   321.950] (II) Loading extension XVideo
[   321.950] (II) Loading extension XVideo-MotionCompensation
[   321.950] (II) Loading extension X-Resource
[   321.950] (II) LoadModule: "dbe"
[   321.950] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[   321.950] (II) Module dbe: vendor="X.Org Foundation"
[   321.950]     compiled for 1.11.3.901, module version = 1.0.0
[   321.950]     Module class: X.Org Server Extension
[   321.950]     ABI class: X.Org Server Extension, version 6.0
[   321.950] (II) Loading extension DOUBLE-BUFFER
[   321.950] (II) LoadModule: "glx"
[   321.950] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   321.950] (II) Module glx: vendor="X.Org Foundation"
[   321.950]     compiled for 1.11.3.901, module version = 1.0.0
[   321.950]     ABI class: X.Org Server Extension, version 6.0
[   321.950] (==) AIGLX enabled
[   321.950] (II) Loading extension GLX
[   321.950] (II) LoadModule: "record"
[   321.951] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[   321.951] (II) Module record: vendor="X.Org Foundation"
[   321.951]     compiled for 1.11.3.901, module version = 1.13.0
[   321.951]     Module class: X.Org Server Extension
[   321.951]     ABI class: X.Org Server Extension, version 6.0
[   321.951] (II) Loading extension RECORD
[   321.951] (II) LoadModule: "dri"
[   321.951] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[   321.951] (II) Module dri: vendor="X.Org Foundation"
[   321.951]     compiled for 1.11.3.901, module version = 1.0.0
[   321.951]     ABI class: X.Org Server Extension, version 6.0
[   321.951] (II) Loading extension XFree86-DRI
[   321.951] (II) LoadModule: "dri2"
[   321.951] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[   321.951] (II) Module dri2: vendor="X.Org Foundation"
[   321.951]     compiled for 1.11.3.901, module version = 1.2.0
[   321.951]     ABI class: X.Org Server Extension, version 6.0
[   321.951] (II) Loading extension DRI2
[   321.951] (==) Matched intel as autoconfigured driver 0
[   321.951] (==) Matched vesa as autoconfigured driver 1
[   321.951] (==) Matched fbdev as autoconfigured driver 2
[   321.951] (==) Assigned the driver to the xf86ConfigLayout
[   321.951] (II) LoadModule: "intel"
[   321.951] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[   321.952] (II) Module intel: vendor="X.Org Foundation"
[   321.952]     compiled for 1.11.1.902, module version = 2.17.0
[   321.952]     Module class: X.Org Video Driver
[   321.952]     ABI class: X.Org Video Driver, version 11.0
[   321.952] (II) LoadModule: "vesa"
[   321.952] (WW) Warning, couldn't open module vesa
[   321.952] (II) UnloadModule: "vesa"
[   321.952] (II) Unloading vesa
[   321.952] (EE) Failed to load module "vesa" (module does not exist, 0)
[   321.952] (II) LoadModule: "fbdev"
[   321.952] (WW) Warning, couldn't open module fbdev
[   321.952] (II) UnloadModule: "fbdev"
[   321.952] (II) Unloading fbdev
[   321.952] (EE) Failed to load module "fbdev" (module does not exist, 0)
[   321.952] (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
[   321.953] (++) using VT number 7

[   321.955] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[   321.955] drmOpenDevice: node name is /dev/dri/card0
[   321.955] drmOpenDevice: open result is 12, (OK)
[   321.955] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[   321.955] drmOpenDevice: node name is /dev/dri/card0
[   321.955] drmOpenDevice: open result is 12, (OK)
[   321.955] drmOpenByBusid: drmOpenMinor returns 12
[   321.955] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[   321.955] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
[   321.955] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[   321.955] (==) intel(0): RGB weight 888
[   321.955] (==) intel(0): Default visual is TrueColor
[   321.955] (II) intel(0): Integrated Graphics Chipset: Intel(R) GM45
[   321.955] (--) intel(0): Chipset: "GM45"
[   321.955] (**) intel(0): Relaxed fencing enabled
[   321.955] (**) intel(0): Wait on SwapBuffers? enabled
[   321.955] (**) intel(0): Triple buffering? enabled
[   321.955] (**) intel(0): Framebuffer tiled
[   321.955] (**) intel(0): Pixmaps tiled
[   321.955] (**) intel(0): 3D buffers tiled
[   321.955] (**) intel(0): SwapBuffers wait enabled
[   321.955] (==) intel(0): video overlay key set to 0x101fe
[   321.955] (II) intel(0): Output LVDS1 has no monitor section
[   321.959] (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video1
[   321.980] (II) intel(0): Output VGA1 has no monitor section
[   322.185] (II) intel(0): Output HDMI1 has no monitor section
[   322.232] (II) intel(0): Output DP1 has no monitor section
[   322.280] (II) intel(0): Output DP2 has no monitor section
[   322.280] (II) intel(0): EDID for output LVDS1
[   322.280] (II) intel(0): Manufacturer: LPL  Model: 1e01  Serial#: 0
[   322.280] (II) intel(0): Year: 2007  Week: 0
[   322.280] (II) intel(0): EDID Version: 1.3
[   322.280] (II) intel(0): Digital Display Input
[   322.280] (II) intel(0): Max Image Size [cm]: horiz.: 33  vert.: 21
[   322.280] (II) intel(0): Gamma: 2.20
[   322.280] (II) intel(0): No DPMS capabilities specified
[   322.280] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[   322.280] (II) intel(0): First detailed timing is preferred mode
[   322.280] (II) intel(0): redX: 0.600 redY: 0.351   greenX: 0.324 greenY: 0.554
[   322.280] (II) intel(0): blueX: 0.153 blueY: 0.145   whiteX: 0.312 whiteY: 0.328
[   322.280] (II) intel(0): Manufacturer's mask: 0
[   322.280] (II) intel(0): Supported detailed timing:
[   322.280] (II) intel(0): clock: 68.9 MHz   Image Size:  331 x 207 mm
[   322.280] (II) intel(0): h_active: 1280  h_sync: 1304  h_sync_end 1336 h_blank_end 1400 h_border: 0
[   322.280] (II) intel(0): v_active: 800  v_sync: 804  v_sync_end 808 v_blanking: 820 v_border: 0
[   322.280] (II) intel(0):  LGPhilipsLCD
[   322.280] (II) intel(0):  LP154WX5-TLA1
[   322.280] (II) intel(0): EDID (in hex):
[   322.280] (II) intel(0):     00ffffffffffff00320c011e00000000
[   322.280] (II) intel(0):     00110103802115780ab3409959538d27
[   322.280] (II) intel(0):     25505400000001010101010101010101
[   322.280] (II) intel(0):     010101010101ea1a0078502014301820
[   322.280] (II) intel(0):     44004bcf100000190000000000000000
[   322.280] (II) intel(0):     00000000000000000000000000fe004c
[   322.280] (II) intel(0):     475068696c6970734c43440a000000fe
[   322.280] (II) intel(0):     004c503135345758352d544c4131000a
[   322.280] (II) intel(0): EDID vendor "LPL", prod id 7681
[   322.280] (II) intel(0): Printing DDC gathered Modelines:
[   322.280] (II) intel(0): Modeline "1280x800"x0.0   68.90  1280 1304 1336 1400  800 804 808 820 -hsync -vsync (49.2 kHz)
[   322.280] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "576x432" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "680x384" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "680x384" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "720x450" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "800x512" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "960x540" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "960x600" (doublescan mode not supported)
[   322.280] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[   322.280] (II) intel(0): Printing probed modes for output LVDS1
[   322.280] (II) intel(0): Modeline "1280x800"x60.0   68.90  1280 1304 1336 1400  800 804 808 820 -hsync -vsync (49.2 kHz)
[   322.280] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   322.280] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   322.281] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[   322.281] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   322.296] (II) intel(0): EDID for output VGA1
[   322.498] (II) intel(0): EDID for output HDMI1
[   322.498] (II) intel(0): Manufacturer: HWP  Model: 2823  Serial#: 16843009
[   322.498] (II) intel(0): Year: 2009  Week: 11
[   322.498] (II) intel(0): EDID Version: 1.3
[   322.498] (II) intel(0): Digital Display Input
[   322.498] (II) intel(0): Max Image Size [cm]: horiz.: 51  vert.: 29
[   322.498] (II) intel(0): Gamma: 2.20
[   322.499] (II) intel(0): DPMS capabilities: StandBy Suspend Off
[   322.499] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[   322.499] (II) intel(0): Default color space is primary color space
[   322.499] (II) intel(0): First detailed timing is preferred mode
[   322.499] (II) intel(0): redX: 0.640 redY: 0.330   greenX: 0.300 greenY: 0.600
[   322.499] (II) intel(0): blueX: 0.150 blueY: 0.060   whiteX: 0.313 whiteY: 0.329
[   322.499] (II) intel(0): Supported established timings:
[   322.499] (II) intel(0): 720x400@70Hz
[   322.499] (II) intel(0): 640x480@60Hz
[   322.499] (II) intel(0): 800x600@60Hz
[   322.499] (II) intel(0): 1024x768@60Hz
[   322.499] (II) intel(0): Manufacturer's mask: 0
[   322.499] (II) intel(0): Supported standard timings:
[   322.499] (II) intel(0): #0: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[   322.499] (II) intel(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   322.499] (II) intel(0): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[   322.499] (II) intel(0): #3: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[   322.499] (II) intel(0): #4: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[   322.499] (II) intel(0): #5: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[   322.499] (II) intel(0): Supported detailed timing:
[   322.499] (II) intel(0): clock: 148.5 MHz   Image Size:  510 x 287 mm
[   322.499] (II) intel(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[   322.499] (II) intel(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[   322.499] (II) intel(0): Ranges: V min: 48 V max: 76 Hz, H min: 24 H max: 94 kHz, PixClock max 175 MHz
[   322.499] (II) intel(0): Monitor name: HP 2309
[   322.499] (II) intel(0): Serial No: CZQ9110316
[   322.499] (II) intel(0): Supported detailed timing:
[   322.499] (II) intel(0): clock: 27.0 MHz   Image Size:  510 x 287 mm
[   322.499] (II) intel(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[   322.499] (II) intel(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[   322.499] (II) intel(0): Supported detailed timing:
[   322.499] (II) intel(0): clock: 27.0 MHz   Image Size:  510 x 287 mm
[   322.499] (II) intel(0): h_active: 720  h_sync: 732  h_sync_end 796 h_blank_end 864 h_border: 0
[   322.499] (II) intel(0): v_active: 576  v_sync: 581  v_sync_end 586 v_blanking: 625 v_border: 0
[   322.499] (II) intel(0): Supported detailed timing:
[   322.499] (II) intel(0): clock: 74.2 MHz   Image Size:  510 x 287 mm
[   322.499] (II) intel(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[   322.499] (II) intel(0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[   322.499] (II) intel(0): Supported detailed timing:
[   322.499] (II) intel(0): clock: 74.2 MHz   Image Size:  510 x 287 mm
[   322.499] (II) intel(0): h_active: 1920  h_sync: 2448  h_sync_end 2492 h_blank_end 2640 h_border: 0
[   322.499] (II) intel(0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[   322.499] (II) intel(0): Number of EDID sections to follow: 1
[   322.499] (II) intel(0): EDID (in hex):
[   322.499] (II) intel(0):     00ffffffffffff0022f0232801010101
[   322.499] (II) intel(0):     0b13010380331d78eeee95a3544c9926
[   322.499] (II) intel(0):     0f5054a10800814081809500a940b300
[   322.499] (II) intel(0):     d1c001010101023a801871382d40582c
[   322.499] (II) intel(0):     4500fe1f1100001e000000fd00304c18
[   322.499] (II) intel(0):     5e11000a202020202020000000fc0048
[   322.499] (II) intel(0):     5020323330390a2020202020000000ff
[   322.499] (II) intel(0):     00435a51393131303331360a20200152
[   322.499] (II) intel(0):     020329f1230907074f84020301060715
[   322.499] (II) intel(0):     161112101f131405830100006c030c00
[   322.499] (II) intel(0):     1000b82dc0010101018c0ad08a20e02d
[   322.499] (II) intel(0):     10103e9600fe1f110000188c0ad09020
[   322.499] (II) intel(0):     4031200c405500fe1f11000018011d80
[   322.499] (II) intel(0):     18711c1620582c2500fe1f1100009e01
[   322.499] (II) intel(0):     1d80d0721c1620102c2580fe1f110000
[   322.499] (II) intel(0):     9e0000000000000000000000000000ae
[   322.499] (II) intel(0): Printing probed modes for output HDMI1
[   322.499] (II) intel(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
[   322.499] (II) intel(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
[   322.499] (II) intel(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
[   322.499] (II) intel(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   322.499] (II) intel(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz)
[   322.499] (II) intel(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[   322.499] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   322.499] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   322.499] (II) intel(0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz)
[   322.499] (II) intel(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   322.499] (II) intel(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[   322.548] (II) intel(0): EDID for output DP1
[   322.596] (II) intel(0): EDID for output DP2
[   322.596] (II) intel(0): Output LVDS1 connected
[   322.596] (II) intel(0): Output VGA1 disconnected
[   322.596] (II) intel(0): Output HDMI1 connected
[   322.596] (II) intel(0): Output DP1 disconnected
[   322.596] (II) intel(0): Output DP2 disconnected
[   322.596] (II) intel(0): Using fuzzy aspect match for initial modes
[   322.596] (II) intel(0): Output LVDS1 using initial mode 1024x768
[   322.596] (II) intel(0): Output HDMI1 using initial mode 1024x768
[   322.596] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[   322.596] (II) intel(0): Kernel page flipping support detected, enabling
[   322.596] (**) intel(0): Display dimensions: (330, 210) mm
[   322.596] (**) intel(0): DPI set to (78, 92)
[   322.596] (II) Loading sub module "fb"
[   322.596] (II) LoadModule: "fb"
[   322.597] (II) Loading /usr/lib/xorg/modules/libfb.so
[   322.597] (II) Module fb: vendor="X.Org Foundation"
[   322.597]     compiled for 1.11.3.901, module version = 1.0.0
[   322.597]     ABI class: X.Org ANSI C Emulation, version 0.4
[   322.597] (II) Loading sub module "dri2"
[   322.598] (II) LoadModule: "dri2"
[   322.598] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[   322.598] (II) Module dri2: vendor="X.Org Foundation"
[   322.598]     compiled for 1.11.3.901, module version = 1.2.0
[   322.598]     ABI class: X.Org Server Extension, version 6.0
[   322.598] (==) Depth 24 pixmap format is 32 bpp
[   322.598] (II) intel(0): [DRI2] Setup complete
[   322.598] (II) intel(0): [DRI2]   DRI driver: i965
[   322.598] (II) intel(0): Allocated new frame buffer 1024x768 stride 4096, tiled
[   322.619] (II) UXA(0): Driver registered support for the following operations:
[   322.619] (II)         solid
[   322.619] (II)         copy
[   322.619] (II)         composite (RENDER acceleration)
[   322.619] (II)         put_image
[   322.619] (II)         get_image
[   322.619] (==) intel(0): Backing store disabled
[   322.619] (==) intel(0): Silken mouse enabled
[   322.619] (II) intel(0): Initializing HW Cursor
[   323.648] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[   323.657] (==) intel(0): DPMS enabled
[   323.657] (==) intel(0): Intel XvMC decoder enabled
[   323.657] (II) intel(0): Set up textured video
[   323.657] (II) intel(0): [XvMC] xvmc_vld driver initialized.
[   323.657] (II) intel(0): direct rendering: DRI2 Enabled
[   323.657] (==) intel(0): hotplug detection: "enabled"
[   323.657] (--) RandR disabled
[   323.657] (II) Initializing built-in extension Generic Event Extension
[   323.657] (II) Initializing built-in extension SHAPE
[   323.657] (II) Initializing built-in extension MIT-SHM
[   323.657] (II) Initializing built-in extension XInputExtension
[   323.657] (II) Initializing built-in extension XTEST
[   323.657] (II) Initializing built-in extension BIG-REQUESTS
[   323.658] (II) Initializing built-in extension SYNC
[   323.658] (II) Initializing built-in extension XKEYBOARD
[   323.658] (II) Initializing built-in extension XC-MISC
[   323.658] (II) Initializing built-in extension SECURITY
[   323.658] (II) Initializing built-in extension XINERAMA
[   323.658] (II) Initializing built-in extension XFIXES
[   323.658] (II) Initializing built-in extension RENDER
[   323.658] (II) Initializing built-in extension RANDR
[   323.658] (II) Initializing built-in extension COMPOSITE
[   323.658] (II) Initializing built-in extension DAMAGE
[   323.658] (II) SELinux: Disabled on system
[   323.675] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[   323.675] (II) AIGLX: enabled GLX_INTEL_swap_event
[   323.675] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[   323.675] (II) AIGLX: enabled GLX_SGI_make_current_read
[   323.675] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[   323.676] (II) AIGLX: Loaded and initialized i965
[   323.676] (II) GLX: Initialized DRI2 GL provider for screen 0
[   323.676] (II) intel(0): Setting screen physical size to 270 x 203
[   323.712] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[   323.712] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   323.712] (II) LoadModule: "evdev"
[   323.712] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   323.712] (II) Module evdev: vendor="X.Org Foundation"
[   323.712]     compiled for 1.11.0, module version = 2.6.0
[   323.712]     Module class: X.Org XInput Driver
[   323.712]     ABI class: X.Org XInput driver, version 13.0
[   323.712] (II) Using input driver 'evdev' for 'Power Button'
[   323.712] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   323.712] (**) Power Button: always reports core events
[   323.712] (**) Power Button: Device: "/dev/input/event3"
[   323.712] (--) Power Button: Found keys
[   323.712] (II) Power Button: Configuring as keyboard
[   323.712] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[   323.712] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[   323.712] (**) Option "xkb_rules" "evdev"
[   323.712] (**) Option "xkb_model" "pc105"
[   323.712] (**) Option "xkb_layout" "pl"
[   323.734] (II) config/udev: Adding input device Video Bus (/dev/input/event11)
[   323.734] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[   323.734] (II) Using input driver 'evdev' for 'Video Bus'
[   323.734] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   323.734] (**) Video Bus: always reports core events
[   323.734] (**) Video Bus: Device: "/dev/input/event11"
[   323.734] (--) Video Bus: Found keys
[   323.734] (II) Video Bus: Configuring as keyboard
[   323.734] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input11/event11"
[   323.734] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[   323.734] (**) Option "xkb_rules" "evdev"
[   323.734] (**) Option "xkb_model" "pc105"
[   323.734] (**) Option "xkb_layout" "pl"
[   323.735] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[   323.735] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   323.735] (II) Using input driver 'evdev' for 'Power Button'
[   323.735] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   323.735] (**) Power Button: always reports core events
[   323.735] (**) Power Button: Device: "/dev/input/event2"
[   323.735] (--) Power Button: Found keys
[   323.735] (II) Power Button: Configuring as keyboard
[   323.735] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
[   323.735] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[   323.735] (**) Option "xkb_rules" "evdev"
[   323.735] (**) Option "xkb_model" "pc105"
[   323.735] (**) Option "xkb_layout" "pl"
[   323.735] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[   323.735] (II) No input driver/identifier specified (ignoring)
[   323.736] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event12)
[   323.736] (II) No input driver/identifier specified (ignoring)
[   323.736] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event13)
[   323.736] (II) No input driver/identifier specified (ignoring)
[   323.736] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event14)
[   323.736] (II) No input driver/identifier specified (ignoring)
[   323.736] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event15)
[   323.736] (II) No input driver/identifier specified (ignoring)
[   323.737] (II) config/udev: Adding input device HDA Intel HDMI/DP (/dev/input/event16)
[   323.737] (II) No input driver/identifier specified (ignoring)
[   323.737] (II) config/udev: Adding input device Lenovo EasyCamera (/dev/input/event10)
[   323.737] (**) Lenovo EasyCamera: Applying InputClass "evdev keyboard catchall"
[   323.737] (II) Using input driver 'evdev' for 'Lenovo EasyCamera'
[   323.737] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   323.737] (**) Lenovo EasyCamera: always reports core events
[   323.737] (**) Lenovo EasyCamera: Device: "/dev/input/event10"
[   323.737] (--) Lenovo EasyCamera: Found keys
[   323.737] (II) Lenovo EasyCamera: Configuring as keyboard
[   323.737] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-3/2-3:1.0/input/input10/event10"
[   323.737] (II) XINPUT: Adding extended input device "Lenovo EasyCamera" (type: KEYBOARD, id 9)
[   323.737] (**) Option "xkb_rules" "evdev"
[   323.737] (**) Option "xkb_model" "pc105"
[   323.737] (**) Option "xkb_layout" "pl"
[   323.738] (II) config/udev: Adding input device A4TECH USB Device (/dev/input/event6)
[   323.738] (**) A4TECH USB Device: Applying InputClass "evdev keyboard catchall"
[   323.738] (II) Using input driver 'evdev' for 'A4TECH USB Device'
[   323.738] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   323.738] (**) A4TECH USB Device: always reports core events
[   323.738] (**) A4TECH USB Device: Device: "/dev/input/event6"
[   323.738] (--) A4TECH USB Device: Found 1 mouse buttons
[   323.738] (--) A4TECH USB Device: Found scroll wheel(s)
[   323.738] (--) A4TECH USB Device: Found relative axes
[   323.738] (--) A4TECH USB Device: Found absolute axes
[   323.738] (--) A4TECH USB Device: Found x and y absolute axes
[   323.738] (--) A4TECH USB Device: Found keys
[   323.738] (II) A4TECH USB Device: Configuring as mouse
[   323.738] (II) A4TECH USB Device: Configuring as keyboard
[   323.738] (II) A4TECH USB Device: Adding scrollwheel support
[   323.738] (**) A4TECH USB Device: YAxisMapping: buttons 4 and 5
[   323.738] (**) A4TECH USB Device: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   323.738] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-5/2-5.1/2-5.1:1.0/input/input6/event6"
[   323.738] (II) XINPUT: Adding extended input device "A4TECH USB Device" (type: KEYBOARD, id 10)
[   323.738] (**) Option "xkb_rules" "evdev"
[   323.738] (**) Option "xkb_model" "pc105"
[   323.738] (**) Option "xkb_layout" "pl"
[   323.738] (EE) A4TECH USB Device: failed to initialize for relative axes.
[   323.738] (WW) A4TECH USB Device: found 37 axes, limiting to 36.
[   323.738] (II) A4TECH USB Device: initialized for absolute axes.
[   323.739] (**) A4TECH USB Device: (accel) keeping acceleration scheme 1
[   323.739] (**) A4TECH USB Device: (accel) acceleration profile 0
[   323.739] (**) A4TECH USB Device: (accel) acceleration factor: 2.000
[   323.739] (**) A4TECH USB Device: (accel) acceleration threshold: 4
[   323.739] (II) config/udev: Adding input device A4TECH USB Device (/dev/input/js0)
[   323.739] (II) No input driver/identifier specified (ignoring)
[   323.739] (II) config/udev: Adding input device A4TECH USB Device (/dev/input/event7)
[   323.739] (**) A4TECH USB Device: Applying InputClass "evdev pointer catchall"
[   323.739] (II) Using input driver 'evdev' for 'A4TECH USB Device'
[   323.739] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   323.739] (**) A4TECH USB Device: always reports core events
[   323.739] (**) A4TECH USB Device: Device: "/dev/input/event7"
[   323.739] (--) A4TECH USB Device: Found 20 mouse buttons
[   323.739] (--) A4TECH USB Device: Found scroll wheel(s)
[   323.739] (--) A4TECH USB Device: Found relative axes
[   323.739] (--) A4TECH USB Device: Found x and y relative axes
[   323.739] (II) A4TECH USB Device: Configuring as mouse
[   323.739] (II) A4TECH USB Device: Adding scrollwheel support
[   323.739] (**) A4TECH USB Device: YAxisMapping: buttons 4 and 5
[   323.740] (**) A4TECH USB Device: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   323.740] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-5/2-5.1/2-5.1:1.1/input/input7/event7"
[   323.740] (II) XINPUT: Adding extended input device "A4TECH USB Device" (type: MOUSE, id 11)
[   323.740] (II) A4TECH USB Device: initialized for relative axes.
[   323.740] (**) A4TECH USB Device: (accel) keeping acceleration scheme 1
[   323.740] (**) A4TECH USB Device: (accel) acceleration profile 0
[   323.740] (**) A4TECH USB Device: (accel) acceleration factor: 2.000
[   323.740] (**) A4TECH USB Device: (accel) acceleration threshold: 4
[   323.740] (II) config/udev: Adding input device A4TECH USB Device (/dev/input/mouse2)
[   323.740] (II) No input driver/identifier specified (ignoring)
[   323.741] (II) config/udev: Adding input device Generic USB K/B (/dev/input/event8)
[   323.741] (**) Generic USB K/B: Applying InputClass "evdev keyboard catchall"
[   323.741] (II) Using input driver 'evdev' for 'Generic USB K/B'
[   323.741] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   323.741] (**) Generic USB K/B: always reports core events
[   323.741] (**) Generic USB K/B: Device: "/dev/input/event8"
[   323.741] (--) Generic USB K/B: Found keys
[   323.741] (II) Generic USB K/B: Configuring as keyboard
[   323.741] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-5/2-5.3/2-5.3:1.0/input/input8/event8"
[   323.741] (II) XINPUT: Adding extended input device "Generic USB K/B" (type: KEYBOARD, id 12)
[   323.741] (**) Option "xkb_rules" "evdev"
[   323.741] (**) Option "xkb_model" "pc105"
[   323.741] (**) Option "xkb_layout" "pl"
[   323.741] (II) config/udev: Adding input device Generic USB K/B (/dev/input/event9)
[   323.741] (**) Generic USB K/B: Applying InputClass "evdev pointer catchall"
[   323.741] (**) Generic USB K/B: Applying InputClass "evdev keyboard catchall"
[   323.742] (II) Using input driver 'evdev' for 'Generic USB K/B'
[   323.742] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   323.742] (**) Generic USB K/B: always reports core events
[   323.742] (**) Generic USB K/B: Device: "/dev/input/event9"
[   323.742] (--) Generic USB K/B: Found 3 mouse buttons
[   323.742] (--) Generic USB K/B: Found scroll wheel(s)
[   323.742] (--) Generic USB K/B: Found relative axes
[   323.742] (--) Generic USB K/B: Found x and y relative axes
[   323.742] (--) Generic USB K/B: Found keys
[   323.742] (II) Generic USB K/B: Configuring as mouse
[   323.742] (II) Generic USB K/B: Configuring as keyboard
[   323.742] (II) Generic USB K/B: Adding scrollwheel support
[   323.742] (**) Generic USB K/B: YAxisMapping: buttons 4 and 5
[   323.742] (**) Generic USB K/B: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   323.742] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-5/2-5.3/2-5.3:1.1/input/input9/event9"
[   323.742] (II) XINPUT: Adding extended input device "Generic USB K/B" (type: KEYBOARD, id 13)
[   323.742] (**) Option "xkb_rules" "evdev"
[   323.742] (**) Option "xkb_model" "pc105"
[   323.742] (**) Option "xkb_layout" "pl"
[   323.742] (II) Generic USB K/B: initialized for relative axes.
[   323.742] (**) Generic USB K/B: (accel) keeping acceleration scheme 1
[   323.742] (**) Generic USB K/B: (accel) acceleration profile 0
[   323.742] (**) Generic USB K/B: (accel) acceleration factor: 2.000
[   323.742] (**) Generic USB K/B: (accel) acceleration threshold: 4
[   323.742] (II) config/udev: Adding input device Generic USB K/B (/dev/input/mouse3)
[   323.742] (II) No input driver/identifier specified (ignoring)
[   323.743] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[   323.743] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[   323.743] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[   323.743] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   323.743] (**) AT Translated Set 2 keyboard: always reports core events
[   323.743] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[   323.743] (--) AT Translated Set 2 keyboard: Found keys
[   323.743] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[   323.743] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[   323.743] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
[   323.743] (**) Option "xkb_rules" "evdev"
[   323.743] (**) Option "xkb_model" "pc105"
[   323.743] (**) Option "xkb_layout" "pl"
[   323.743] (II) config/udev: Adding input device PS/2 Mouse (/dev/input/event4)
[   323.743] (**) PS/2 Mouse: Applying InputClass "evdev pointer catchall"
[   323.743] (II) Using input driver 'evdev' for 'PS/2 Mouse'
[   323.743] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   323.743] (**) PS/2 Mouse: always reports core events
[   323.743] (**) PS/2 Mouse: Device: "/dev/input/event4"
[   323.743] (--) PS/2 Mouse: Found 3 mouse buttons
[   323.743] (--) PS/2 Mouse: Found relative axes
[   323.743] (--) PS/2 Mouse: Found x and y relative axes
[   323.743] (II) PS/2 Mouse: Configuring as mouse
[   323.743] (**) PS/2 Mouse: YAxisMapping: buttons 4 and 5
[   323.743] (**) PS/2 Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   323.743] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input4/event4"
[   323.743] (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE, id 15)
[   323.743] (II) PS/2 Mouse: initialized for relative axes.
[   323.744] (**) PS/2 Mouse: (accel) keeping acceleration scheme 1
[   323.744] (**) PS/2 Mouse: (accel) acceleration profile 0
[   323.744] (**) PS/2 Mouse: (accel) acceleration factor: 2.000
[   323.744] (**) PS/2 Mouse: (accel) acceleration threshold: 4
[   323.744] (II) config/udev: Adding input device PS/2 Mouse (/dev/input/mouse0)
[   323.744] (II) No input driver/identifier specified (ignoring)
[   323.744] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/event5)
[   323.744] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "evdev touchpad catchall"
[   323.744] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "touchpad catchall"
[   323.744] (II) LoadModule: "synaptics"
[   323.744] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[   323.744] (II) Module synaptics: vendor="X.Org Foundation"
[   323.744]     compiled for 1.11.2.902, module version = 1.5.0
[   323.744]     Module class: X.Org XInput Driver
[   323.744]     ABI class: X.Org XInput driver, version 13.0
[   323.744] (II) Using input driver 'synaptics' for 'AlpsPS/2 ALPS GlidePoint'
[   323.744] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[   323.744] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
[   323.744] (**) Option "Device" "/dev/input/event5"
[   323.788] (--) synaptics: AlpsPS/2 ALPS GlidePoint: x-axis range 0 - 1023
[   323.788] (--) synaptics: AlpsPS/2 ALPS GlidePoint: y-axis range 0 - 767
[   323.788] (--) synaptics: AlpsPS/2 ALPS GlidePoint: pressure range 0 - 127
[   323.788] (II) synaptics: AlpsPS/2 ALPS GlidePoint: device does not report finger width.
[   323.788] (--) synaptics: AlpsPS/2 ALPS GlidePoint: buttons: left right middle
[   323.788] (--) synaptics: AlpsPS/2 ALPS GlidePoint: Vendor 0x2 Product 0x8
[   323.788] (--) synaptics: AlpsPS/2 ALPS GlidePoint: invalid finger width range.  defaulting to 0 - 15
[   323.796] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
[   323.796] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
[   323.800] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input5/event5"
[   323.800] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" (type: TOUCHPAD, id 16)
[   323.800] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) MinSpeed is now constant deceleration 2.5
[   323.800] (**) synaptics: AlpsPS/2 ALPS GlidePoint: MaxSpeed is now 1.75
[   323.800] (**) synaptics: AlpsPS/2 ALPS GlidePoint: AccelFactor is now 0.156
[   323.801] (**) AlpsPS/2 ALPS GlidePoint: (accel) keeping acceleration scheme 1
[   323.801] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration profile 1
[   323.801] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration factor: 2.000
[   323.801] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration threshold: 4
[   323.801] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
[   323.802] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/mouse1)
[   323.802] (**) AlpsPS/2 ALPS GlidePoint: Ignoring device from InputClass "touchpad ignore duplicates"
[   323.803] (II) config/udev: Adding input device ACPI Virtual Keyboard Device (/dev/input/event17)
[   323.803] (**) ACPI Virtual Keyboard Device: Applying InputClass "evdev keyboard catchall"
[   323.803] (II) Using input driver 'evdev' for 'ACPI Virtual Keyboard Device'
[   323.803] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   323.804] (**) ACPI Virtual Keyboard Device: always reports core events
[   323.804] (**) ACPI Virtual Keyboard Device: Device: "/dev/input/event17"
[   323.804] (--) ACPI Virtual Keyboard Device: Found keys
[   323.804] (II) ACPI Virtual Keyboard Device: Configuring as keyboard
[   323.804] (**) Option "config_info" "udev:/sys/devices/virtual/input/input17/event17"
[   323.804] (II) XINPUT: Adding extended input device "ACPI Virtual Keyboard Device" (type: KEYBOARD, id 17)
[   323.804] (**) Option "xkb_rules" "evdev"
[   323.804] (**) Option "xkb_model" "pc105"
[   323.804] (**) Option "xkb_layout" "pl"
[   336.806] (II) intel(0): EDID vendor "LPL", prod id 7681
[   336.806] (II) intel(0): Printing DDC gathered Modelines:
[   336.806] (II) intel(0): Modeline "1280x800"x0.0   68.90  1280 1304 1336 1400  800 804 808 820 -hsync -vsync (49.2 kHz)
[   337.140] (II) intel(0): EDID vendor "LPL", prod id 7681
[   337.140] (II) intel(0): Printing DDC gathered Modelines:
[   337.140] (II) intel(0): Modeline "1280x800"x0.0   68.90  1280 1304 1336 1400  800 804 808 820 -hsync -vsync (49.2 kHz)
[   337.462] (II) intel(0): Allocated new frame buffer 3200x1080 stride 12800, tiled
[  6827.852] (II) intel(0): EDID vendor "LPL", prod id 7681
[  6827.869] (II) intel(0): Printing DDC gathered Modelines:
[  6827.869] (II) intel(0): Modeline "1280x800"x0.0   68.90  1280 1304 1336 1400  800 804 808 820 -hsync -vsync (49.2 kHz)

Offline

 

Stopka forum

Powered by PunBB
© Copyright 2002–2005 Rickard Andersson
Nas ludzie lubią po prostu, a nie klikając w przyciski ;-)