Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 25/02/2017, à 19:44

sailormoon

Problème de résolution d'écran

Bonjour,

je possède un ordinateur INSYS M746S dont la carte graphique a pour modèle : Gallium 0.4 on llvmpipe (LLVM 3.8, 128 bits).
La résolution normale de mon écran devrait être 1280 x 800, or lorsque j'ai installé Ubuntu, la seule disponible était 640 x 480 (4:3), donc trop petite.

J'ai déjà essayé de taper la commande suivante, comme recommandé sur la page de documentation XRandR afin de créer une nouvelle résolution avec les bonnes valeurs :

xrandr --newmode $(gtf 1280 800 59 | sed -ne 's/"//g;s/ Modeline //p')

Mais la console me retourne :

xrandr: Failed to get size of gamma for output default

J'ai alors essayé de modifier le fichier xorg.conf comme conseillé dans la documentation resolution_ecran_avance, mais en cherchant, ce fichier n'existe pas sur mon système.
De plus, plus loin la documentation recommande d'installer le paquet xresprobe et certaines commandes l'utilisent plus loin, or ce paquet n'existe plus.

Ne sachant plus vraiment quoi faire, je sollicite votre précieuse aide.

Je vous remercie par avance.

Hors ligne

#2 Le 28/02/2017, à 22:16

Vobul

Re : Problème de résolution d'écran

Gallium c'est pas une carte graphique. Installe des pilotes pour la carte grapique de ton ordi, tu verras ça fonctionne mieux après.
https://doc.ubuntu-fr.org/nvidia


Vobul
Utilisez le retour utilisable de commandes !!!
J'aime la langue française, mais je parle franglais, deal with it.
RTFM

Hors ligne

#3 Le 01/03/2017, à 12:51

Compte supprimé

Re : Problème de résolution d'écran

Bonjour,

je suis un ami de sailormoon, c'est moi qui avait rédigé le message initial.
Merci de ta réponse, effectivement ça a l'air de bien sonner, nous essayons et nous vous tenons au courant.

Dernière modification par Alsamoshelan (Le 01/03/2017, à 12:55)

#4 Le 02/04/2017, à 16:12

Compte supprimé

Re : Problème de résolution d'écran

Bonjour,

nous avons bien avancé sur le sujet.
Donc la carte graphique de l'ordinateur est une SiS 771/671 PCIE VGA Display Adapter.

En utilisant la documentation sur les sis_771_671, je suis parvenu à une résolution de 1024x768 en créant un fichier /usr/share/X11/xorg.conf.d/use-vesa.conf. J'ai aussi généré le fichier xorg.conf et il a automatiquement utilisé le driver vesa. Voici la section "Device" du fichier xorg.conf à cette étape-là :

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "ShadowFB"               # [<bool>]
        #Option     "DefaultRefresh"         # [<bool>]
        #Option     "ModeSetClearScreen"     # [<bool>]
    Identifier  "Card0"
    Driver      "vesa"
    BusID       "PCI:1:0:0"
EndSection

J'ai donc supprimé le fichier /usr/share/X11/xorg.conf.d/use-vesa.conf car la génération de xorg.conf suffit à parvenir à cette résolution.

C'est déjà beaucoup mieux qu'avant, et là c'est supportable. Cependant l'affichage n'est pas encore optimal, je pense qu'on peut monter à 1280x800. C'est pourquoi j'ai décidé de m’atteler à la seconde méthode de ladite documentation. A priori j'ai tout fait comme il faut, mais au redémarrage l'ordinateur revient à la résolution d'origine avec ce message :

Impossible d'appliquer la configuration enregistrée pour les écrans
none of the selected modes were compatible with the possible modes:
Trying modes for CRTC 621
CRTC 621: trying mode 640x480@73Hz with output at 1024x768@60Hz (pass 0)
CRTC 621: trying mode 640x480@73Hz with output at 1024x768@60Hz (pass 1)

Voici mon fichier xorg.conf à ce moment-là :

Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

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     "built-ins"
EndSection

Section "Module"
	Load  "glx"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

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

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Device"
	Identifier  "Configured Video Device"
	Driver      "sisimedia"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Et le fichier Xorg.0.log :

[    27.536] 
X.Org X Server 1.18.3
Release Date: 2016-04-04
[    27.536] X Protocol Version 11, Revision 0
[    27.536] Build Operating System: Linux 3.13.0-86-generic i686 Ubuntu
[    27.536] Current Operating System: Linux diana 4.4.0-64-generic #85-Ubuntu SMP Mon Feb 20 11:49:39 UTC 2017 i686
[    27.536] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-64-generic root=UUID=b504be83-3793-4290-8a77-56bd4f3a92f8 ro quiet splash vt.handoff=7
[    27.536] Build Date: 18 May 2016  01:07:07AM
[    27.536] xorg-server 2:1.18.3-1ubuntu2.2 (For technical support please see http://www.ubuntu.com/support) 
[    27.536] Current version of pixman: 0.33.6
[    27.536] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    27.536] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    27.537] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Apr  2 16:47:42 2017
[    27.537] (==) Using config file: "/etc/X11/xorg.conf"
[    27.537] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    27.653] (==) ServerLayout "X.org Configured"
[    27.653] (**) |-->Screen "Screen0" (0)
[    27.653] (**) |   |-->Monitor "Monitor0"
[    27.670] (==) No device specified for screen "Screen0".
	Using the first device section listed.
[    27.670] (**) |   |-->Device "Configured Video Device"
[    27.670] (**) |-->Input Device "Mouse0"
[    27.670] (**) |-->Input Device "Keyboard0"
[    27.670] (==) Automatically adding devices
[    27.670] (==) Automatically enabling devices
[    27.670] (==) Automatically adding GPU devices
[    27.670] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    27.670] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    27.670] 	Entry deleted from font path.
[    27.670] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[    27.670] 	Entry deleted from font path.
[    27.670] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[    27.670] 	Entry deleted from font path.
[    27.670] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[    27.670] 	Entry deleted from font path.
[    27.670] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[    27.670] 	Entry deleted from font path.
[    27.670] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    27.670] 	Entry deleted from font path.
[    27.670] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[    27.670] 	Entry deleted from font path.
[    27.670] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[    27.670] 	Entry deleted from font path.
[    27.670] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[    27.670] 	Entry deleted from font path.
[    27.670] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[    27.670] 	Entry deleted from font path.
[    27.670] (**) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/Type1,
	built-ins,
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/Type1,
	built-ins
[    27.670] (**) ModulePath set to "/usr/lib/xorg/modules"
[    27.670] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[    27.671] (WW) Disabling Mouse0
[    27.671] (WW) Disabling Keyboard0
[    27.671] (II) Loader magic: 0x80297700
[    27.671] (II) Module ABI versions:
[    27.671] 	X.Org ANSI C Emulation: 0.4
[    27.671] 	X.Org Video Driver: 20.0
[    27.671] 	X.Org XInput driver : 22.1
[    27.671] 	X.Org Server Extension : 9.0
[    27.672] (++) using VT number 7

[    27.672] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[    27.674] (--) PCI:*(0:1:0:0) 1039:6351:1558:0801 rev 16, Mem @ 0xc0000000/268435456, 0xd8000000/131072, I/O @ 0x00009000/128
[    27.684] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[    27.684] (II) LoadModule: "glx"
[    27.685] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    27.920] (II) Module glx: vendor="X.Org Foundation"
[    27.920] 	compiled for 1.18.3, module version = 1.0.0
[    27.920] 	ABI class: X.Org Server Extension, version 9.0
[    27.920] (==) AIGLX enabled
[    27.920] (II) LoadModule: "sisimedia"
[    27.920] (II) Loading /usr/lib/xorg/modules/drivers/sisimedia_drv.so
[    28.035] (II) Module sisimedia: vendor="X.Org Foundation"
[    28.035] 	compiled for 1.17.4, module version = 0.8.0
[    28.035] 	Module class: X.Org Video Driver
[    28.035] 	ABI class: X.Org Video Driver, version 19.0
[    28.035] (EE) module ABI major version (19) doesn't match the server's version (20)
[    28.035] (II) UnloadModule: "sisimedia"
[    28.035] (II) Unloading sisimedia
[    28.035] (EE) Failed to load module "sisimedia" (module requirement mismatch, 0)
[    28.035] (==) Matched sis as autoconfigured driver 0
[    28.035] (==) Matched modesetting as autoconfigured driver 1
[    28.035] (==) Matched fbdev as autoconfigured driver 2
[    28.036] (==) Matched vesa as autoconfigured driver 3
[    28.036] (==) Assigned the driver to the xf86ConfigLayout
[    28.036] (II) LoadModule: "sis"
[    28.036] (WW) Warning, couldn't open module sis
[    28.036] (II) UnloadModule: "sis"
[    28.036] (II) Unloading sis
[    28.036] (EE) Failed to load module "sis" (module does not exist, 0)
[    28.036] (II) LoadModule: "modesetting"
[    28.036] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    28.079] (II) Module modesetting: vendor="X.Org Foundation"
[    28.079] 	compiled for 1.18.3, module version = 1.18.3
[    28.079] 	Module class: X.Org Video Driver
[    28.079] 	ABI class: X.Org Video Driver, version 20.0
[    28.079] (II) LoadModule: "fbdev"
[    28.079] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    28.113] (II) Module fbdev: vendor="X.Org Foundation"
[    28.113] 	compiled for 1.18.1, module version = 0.4.4
[    28.113] 	Module class: X.Org Video Driver
[    28.113] 	ABI class: X.Org Video Driver, version 20.0
[    28.113] (II) LoadModule: "vesa"
[    28.113] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    28.129] (II) Module vesa: vendor="X.Org Foundation"
[    28.129] 	compiled for 1.18.1, module version = 2.3.4
[    28.129] 	Module class: X.Org Video Driver
[    28.129] 	ABI class: X.Org Video Driver, version 20.0
[    28.129] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    28.129] (II) FBDEV: driver for framebuffer: fbdev
[    28.129] (II) VESA: driver for VESA chipsets: vesa
[    28.129] (EE) open /dev/dri/card0: No such file or directory
[    28.129] (WW) Falling back to old probe method for modesetting
[    28.129] (EE) open /dev/dri/card0: No such file or directory
[    28.129] (II) Loading sub module "fbdevhw"
[    28.129] (II) LoadModule: "fbdevhw"
[    28.129] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[    28.176] (II) Module fbdevhw: vendor="X.Org Foundation"
[    28.176] 	compiled for 1.18.3, module version = 0.0.2
[    28.176] 	ABI class: X.Org Video Driver, version 20.0
[    28.176] (**) FBDEV(1): claimed PCI slot 1@0:0:0
[    28.176] (II) FBDEV(1): using default device
[    28.176] (WW) Falling back to old probe method for vesa
[    28.176] (EE) Screen 0 deleted because of no matching config section.
[    28.176] (II) UnloadModule: "modesetting"
[    28.177] (==) FBDEV(0): Depth 24, (==) framebuffer bpp 32
[    28.177] (==) FBDEV(0): RGB weight 888
[    28.177] (==) FBDEV(0): Default visual is TrueColor
[    28.177] (==) FBDEV(0): Using gamma correction (1.0, 1.0, 1.0)
[    28.177] (II) FBDEV(0): hardware: VESA VGA (video memory: 1216kB)
[    28.177] (II) FBDEV(0): checking modes against framebuffer device...
[    28.177] (II) FBDEV(0): checking modes against monitor...
[    28.177] (--) FBDEV(0): Virtual size is 640x480 (pitch 640)
[    28.177] (**) FBDEV(0):  Built-in mode "current": 30.7 MHz, 36.9 kHz, 73.3 Hz
[    28.177] (II) FBDEV(0): Modeline "current"x0.0   30.72  640 672 752 832  480 484 488 504 -hsync -vsync -csync (36.9 kHz b)
[    28.177] (==) FBDEV(0): DPI set to (96, 96)
[    28.177] (II) Loading sub module "fb"
[    28.177] (II) LoadModule: "fb"
[    28.177] (II) Loading /usr/lib/xorg/modules/libfb.so
[    28.220] (II) Module fb: vendor="X.Org Foundation"
[    28.220] 	compiled for 1.18.3, module version = 1.0.0
[    28.220] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    28.220] (**) FBDEV(0): using shadow framebuffer
[    28.220] (II) Loading sub module "shadow"
[    28.220] (II) LoadModule: "shadow"
[    28.220] (II) Loading /usr/lib/xorg/modules/libshadow.so
[    28.265] (II) Module shadow: vendor="X.Org Foundation"
[    28.265] 	compiled for 1.18.3, module version = 1.1.0
[    28.265] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    28.265] (II) UnloadModule: "vesa"
[    28.265] (II) Unloading vesa
[    28.265] (==) Depth 24 pixmap format is 32 bpp
[    28.265] (II) FBDEV(0): FBIOBLANK: Invalid argument (Screen blanking not supported by kernel - disabling)
[    28.339] (==) FBDEV(0): Backing store enabled
[    28.341] (==) FBDEV(0): DPMS enabled
[    28.358] (==) RandR enabled
[    28.383] (II) SELinux: Disabled on system
[    29.604] (II) AIGLX: Screen 0 is not DRI2 capable
[    29.604] (EE) AIGLX: reverting to software rendering
[    34.525] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    34.526] (II) AIGLX: Loaded and initialized swrast
[    34.526] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[    34.654] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[    34.655] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    34.655] (II) LoadModule: "evdev"
[    34.655] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    34.674] (II) Module evdev: vendor="X.Org Foundation"
[    34.674] 	compiled for 1.18.1, module version = 2.10.1
[    34.674] 	Module class: X.Org XInput Driver
[    34.674] 	ABI class: X.Org XInput driver, version 22.1
[    34.674] (II) Using input driver 'evdev' for 'Power Button'
[    34.674] (**) Power Button: always reports core events
[    34.674] (**) evdev: Power Button: Device: "/dev/input/event3"
[    34.675] (--) evdev: Power Button: Vendor 0 Product 0x1
[    34.675] (--) evdev: Power Button: Found keys
[    34.675] (II) evdev: Power Button: Configuring as keyboard
[    34.675] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[    34.675] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    34.675] (**) Option "xkb_rules" "evdev"
[    34.675] (**) Option "xkb_model" "pc105"
[    34.675] (**) Option "xkb_layout" "pt"
[    34.704] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
[    34.704] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    34.704] (II) Using input driver 'evdev' for 'Video Bus'
[    34.704] (**) Video Bus: always reports core events
[    34.704] (**) evdev: Video Bus: Device: "/dev/input/event5"
[    34.704] (--) evdev: Video Bus: Vendor 0 Product 0x6
[    34.704] (--) evdev: Video Bus: Found keys
[    34.704] (II) evdev: Video Bus: Configuring as keyboard
[    34.704] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/device:0b/LNXVIDEO:00/input/input9/event5"
[    34.704] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    34.704] (**) Option "xkb_rules" "evdev"
[    34.704] (**) Option "xkb_model" "pc105"
[    34.704] (**) Option "xkb_layout" "pt"
[    34.705] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    34.705] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    34.705] (II) Using input driver 'evdev' for 'Power Button'
[    34.705] (**) Power Button: always reports core events
[    34.705] (**) evdev: Power Button: Device: "/dev/input/event0"
[    34.705] (--) evdev: Power Button: Vendor 0 Product 0x1
[    34.706] (--) evdev: Power Button: Found keys
[    34.706] (II) evdev: Power Button: Configuring as keyboard
[    34.706] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[    34.706] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    34.706] (**) Option "xkb_rules" "evdev"
[    34.706] (**) Option "xkb_model" "pc105"
[    34.706] (**) Option "xkb_layout" "pt"
[    34.707] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
[    34.707] (II) No input driver specified, ignoring this device.
[    34.707] (II) This device may have been added with another device file.
[    34.707] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[    34.707] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    34.707] (II) Using input driver 'evdev' for 'Sleep Button'
[    34.707] (**) Sleep Button: always reports core events
[    34.707] (**) evdev: Sleep Button: Device: "/dev/input/event1"
[    34.707] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[    34.707] (--) evdev: Sleep Button: Found keys
[    34.707] (II) evdev: Sleep Button: Configuring as keyboard
[    34.708] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
[    34.708] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[    34.708] (**) Option "xkb_rules" "evdev"
[    34.708] (**) Option "xkb_model" "pc105"
[    34.708] (**) Option "xkb_layout" "pt"
[    34.709] (II) config/udev: Adding input device USB2.0 Camera (/dev/input/event9)
[    34.709] (**) USB2.0 Camera: Applying InputClass "evdev keyboard catchall"
[    34.709] (II) Using input driver 'evdev' for 'USB2.0 Camera'
[    34.709] (**) USB2.0 Camera: always reports core events
[    34.709] (**) evdev: USB2.0 Camera: Device: "/dev/input/event9"
[    34.709] (--) evdev: USB2.0 Camera: Vendor 0x5986 Product 0x200
[    34.709] (--) evdev: USB2.0 Camera: Found keys
[    34.709] (II) evdev: USB2.0 Camera: Configuring as keyboard
[    34.709] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:03.3/usb1/1-7/1-7:1.0/input/input16/event9"
[    34.709] (II) XINPUT: Adding extended input device "USB2.0 Camera" (type: KEYBOARD, id 10)
[    34.709] (**) Option "xkb_rules" "evdev"
[    34.709] (**) Option "xkb_model" "pc105"
[    34.709] (**) Option "xkb_layout" "pt"
[    34.710] (II) config/udev: Adding input device HDA SIS966 Mic (/dev/input/event7)
[    34.710] (II) No input driver specified, ignoring this device.
[    34.710] (II) This device may have been added with another device file.
[    34.711] (II) config/udev: Adding input device HDA SIS966 Headphone (/dev/input/event8)
[    34.711] (II) No input driver specified, ignoring this device.
[    34.711] (II) This device may have been added with another device file.
[    34.711] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[    34.711] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[    34.711] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[    34.711] (**) AT Translated Set 2 keyboard: always reports core events
[    34.711] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event4"
[    34.711] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[    34.712] (--) evdev: AT Translated Set 2 keyboard: Found keys
[    34.712] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[    34.712] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[    34.712] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
[    34.712] (**) Option "xkb_rules" "evdev"
[    34.712] (**) Option "xkb_model" "pc105"
[    34.712] (**) Option "xkb_layout" "pt"
[    34.713] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
[    34.713] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[    34.713] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[    34.713] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[    34.713] (II) LoadModule: "synaptics"
[    34.713] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    34.713] (II) Module synaptics: vendor="X.Org Foundation"
[    34.713] 	compiled for 1.18.1, module version = 1.8.2
[    34.713] 	Module class: X.Org XInput Driver
[    34.713] 	ABI class: X.Org XInput driver, version 22.1
[    34.713] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[    34.713] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    34.713] (**) Option "Device" "/dev/input/event6"
[    34.760] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472 (res 69)
[    34.760] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448 (res 99)
[    34.760] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[    34.760] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[    34.760] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right scroll-buttons
[    34.760] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[    34.760] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[    34.760] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    34.788] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input13/event6"
[    34.788] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
[    34.788] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[    34.788] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[    34.788] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.040
[    34.788] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[    34.788] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[    34.788] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[    34.788] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[    34.788] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[    34.789] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[    34.789] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"

Merci beaucoup pour votre aide par avance et bonne journée.

Dernière modification par Alsamoshelan (Le 02/04/2017, à 16:38)