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.

#51 Le 19/11/2020, à 00:46

Valdo19FR

Re : Résolution sur TV...

Je viens de retenter après avoir redémarré ça ne marche toujours pas,
mais le résultat n'est pas le même !

valdo@val:~$ gtf 1600 1200 60

  # 1600x1200 @ 60.00 Hz (GTF) hsync: 74.52 kHz; pclk: 160.96 MHz
  Modeline "1600x1200_60.00"  160.96  1600 1704 1880 2160  1200 1201 1204 1242  -HSync +Vsync

valdo@val:~$ xrandr --newmode "1600x1200_60.00"  160.96  1600 1704 1880 2160  1200 1201 1204 1242  -HSync +Vsync
valdo@val:~$ xrandr --output HDMI-0 --mode "1600x1200_60.00"
xrandr: cannot find mode 1600x1200_60.00
valdo@val:~$ 

Val.


Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#52 Le 19/11/2020, à 10:07

Pascaltech

Re : Résolution sur TV...

Bonjour,

Tu peux trouver ce processus sur mon site, dans ma signature :

Moi a écrit :

Procédure de création d'un nouveau mode d'affichage

En premier, rechercher les valeurs de résolution de votre écran dans la définition technique de votre écran : h x v.

Calculez ensuite le rapport d'affichage h/v : dimension horizontale sur dimension verticale.

Pour un bon fonctionnement de votre écran, il est préférable de choisir une nouvelle résolution qui a le même rapport d'affichage que la résolution de votre écran qui apparaît dans sa définition technique.

1 - Connaissance de la situation avec la commande xrandr :

user@machine:~$ xrandr
Screen 0: minimum 320 x 200, current 2304 x 1024, maximum 8192 x 8192
DIN disconnected (normal left inverted right x axis y axis)
VGA-0 connected primary 1280x1024+0+0 (normal left inverted right x axis y axis) 338mm x 270mm
       1280x1024     60.02*+  75.02  
       1152x864      75.00  
       1024x768      75.08    60.00  
       800x600       75.00    60.32  
       640x480       75.00    60.00  
       720x400       70.08  
DVI-0 disconnected (normal left inverted right x axis y axis)
user@machine:~$

2 - Recherche des données d'affichage du nouveau mode avec la commande cvt :

user@machine:~$ cvt 720 576
# 720x576 59.95 Hz (CVT 0.41M4) hsync: 35.91 kHz; pclk: 32.75 MHz
Modeline "720x576_60.00"   32.75  720 752 816 912  576 579 586 599 -hsync +vsync
user@machine:~$

3 - Création d'un nouveau mode d'affichage avec la commande xrandr --newmode :

user@machine:~$ xrandr --newmode "720x576_60.00"   32.75  720 752 816 912  576 579 586 599 -hsync +vsync
user@machine:~$

Le plus simple étant de copier/coller les données situées après Modeline, obtenues avec la commande cvt . Le nom comporte la donnée de fréquence "_60.00" ce qui peut être enlevé à la création du mode, ce n'est qu'un label.
   
4 - Association du nouveau mode à l'écran(monitor) avec la commande xrandr --addmode :

user@machine:~$ xrandr --addmode VGA-0 720x576_60.00
user@machine:~$

Nota : Le nom VGA-0 est issu de l’exemple, vous devez saisir le nom de votre écran apparaissant dans le retour de la commande xrandr. A défaut,  (« Failed to get size of gamma for output defaut»), la commande suivante permet de recherche le nom de votre écran dans le journal de démarrage :

user@machine:~$ grep "Output" /var/log/Xorg.0.log
[    37.033] (II) NOUVEAU(0): Output VGA-0 has no monitor section
[    37.070] (II) NOUVEAU(0): Output VGA-0 connected
[    37.070] (II) NOUVEAU(0): Output VGA-0 using initial mode 1920x1080 +0+0
user@machine:~$

5 - Contrôle du résultat avec la commande xrandr :

user@machine:~$ xrandr
Screen 0: minimum 320 x 200, current 2304 x 1024, maximum 8192 x 8192
DIN disconnected (normal left inverted right x axis y axis)
VGA-0 connected primary 1280x1024+0+0 (normal left inverted right x axis y axis) 338mm x 270mm
   1280x1024       60.02*+  75.02  
   1152x864        75.00  
   1024x768        75.08    60.00  
   800x600         75.00    60.32  
   640x480         75.00    60.00  
   720x400         70.08  
   720x576_60.00   59.95 
DVI-0 disconnected (normal left inverted right x axis y axis)
user@machine:~$

6 - Aller dans le gestionnaire de paramètres et sélectionner l'outil Affichage.

Choisir le nouveau mode d'affichage dans la liste. S'il ne convient pas, vous avez la possibilité de revenir au mode précédent.

Lors de l'association du nouveau mode à l'écran, il ne faut écrire que le nom de ce mode sans les guillemets et utiliser la commande --addmode :

xrandr --addmode VGA-0 720x576_60.00

alors que tu écris :

xrandr --output HDMI-0 --mode "1600x1200_60.00"

La commande --output est utilisée pour forcer l'utilisation d'un mode d'affichage, mais avant cela, ce mode doit être associé à l'écran, comme dans l'exemple ci-dessous, en 3 temps :

Forces to use a 1024x768 mode on an output called VGA:

xrandr --newmode "1024x768" 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync
xrandr --addmode VGA 1024x768
xrandr --output VGA --mode 1024x768

Je ne l'utilise pas car lors de l'association il devient actif.

Un peu de math :
1024x768 : 1024/768 = 1.33333
4/3 = 1.33333
16/9 = 1.77777 cool

Dernière modification par Pascaltech (Le 19/11/2020, à 10:29)


Emachine el1200, Xubuntu 20.04 LTS
Traductions guides serveur & grub et liens utiles Classement CG
inxi -F sudo lshw dpkg -l

Hors ligne

#53 Le 19/11/2020, à 12:56

Valdo19FR

Re : Résolution sur TV...

J'ai essayé de suivre toute ta procédure.
Commande:

valdo@val:~$ xrandr

Réponse

Screen 0: minimum 8 x 8, current 3040 x 1050, maximum 16384 x 16384
DVI-I-0 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 474mm x 296mm
   1680x1050     59.88*+  59.95  
   1600x1200     60.00  
   1440x900      74.98    59.89  
   1280x1024     75.02    60.02  
   1280x960      60.00  
   1280x720      60.00  
   1152x864      75.00  
   1024x768      75.03    70.07    60.00  
   800x600       75.00    72.19    60.32    56.25  
   640x480       75.00    72.81    59.94  
DVI-I-1 disconnected (normal left inverted right x axis y axis)
HDMI-0 connected 1360x768+1680+0 (normal left inverted right x axis y axis) 700mm x 390mm
   1360x768      59.80*+
   1920x1080     60.00    59.94    59.93    50.00    29.97    23.98    60.05    60.00    50.04  
   1280x768      60.35  
   1280x720      59.94    59.65    50.00  
   1024x768      60.00  
   800x600       60.32  
   720x576       50.00  
   720x480       59.94  
   640x480       59.95    59.93    59.94  
DP-0 disconnected (normal left inverted right x axis y axis)
DVI-D-0 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
  1600x1200_60.00 (0x328) 161.000MHz -HSync +VSync
        h: width  1600 start 1712 end 1880 total 2160 skew    0 clock  74.54KHz
        v: height 1200 start 1203 end 1207 total 1245           clock  59.87Hz
valdo@val:~$ 

Commande:

valdo@val:~$ cvt 1600 1200

Réponse:

# 1600x1200 59.87 Hz (CVT 1.92M3) hsync: 74.54 kHz; pclk: 161.00 MHz
Modeline "1600x1200_60.00"  161.00  1600 1712 1880 2160  1200 1203 1207 1245 -hsync +vsync

Commande:

valdo@val:~$ xrandr --newmode "1600x1200_60.00"  161.00  1600 1712 1880 2160  1200 1203 1207 1245 -hsync +vsync

réponse

valdo@val:~$

Commande:

valdo@val:~$ xrandr --addmode HDMI-0 1600x1200

Réponse:

X Error of failed request:  BadMatch (invalid parameter attributes)
  Major opcode of failed request:  140 (RANDR)
  Minor opcode of failed request:  18 (RRAddOutputMode)
  Serial number of failed request:  41
  Current serial number in output stream:  42

Jai quand même testé la commande:

valdo@val:~$ grep "Output" /var/log/Xorg.0.log

Réponse:

[    11.603] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/x86_64-linux-gnu/nvidia/xorg,/usr/lib/xorg/modules"
[    11.698] (II) Applying OutputClass "nvidia" options to /dev/dri/card0

Voilà ou j'en suis, je n'ai rien compris ou j'ai un problème sur mon Ubuntu 20.10
Val.


Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#54 Le 19/11/2020, à 13:08

Pascaltech

Re : Résolution sur TV...

Tu n'a pas nommé correctement le mode : au retour de la commande cvt tu peux lire :

Modeline "1600x1200_60.00"  161.00  1600 1712 1880 2160  1200 1203 1207 1245 -hsync +vsync

Tu peux lire le nom du mode entre guillemets : "1600x1200_60.00"
Ensuite tu tentes d'associer le mode à l'écran HDMI-0 :

valdo@val:~$ xrandr --addmode HDMI-0 1600x1200

Tu n'a pas mis les guillemets, c'est bien, mais le nom du mode est incomplet, c'est : 1600x1200_60.00 et non 1600x1200.

Je peux voir que ce mode existe déjà pour les écrans en :

DVI-I-0 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 474mm x 296mm
   1680x1050     59.88*+  59.95  
   1600x1200     60.00  

et

DP-1 disconnected (normal left inverted right x axis y axis)
  1600x1200_60.00 (0x328) 161.000MHz -HSync +VSync
        h: width  1600 start 1712 end 1880 total 2160 skew    0 clock  74.54KHz
        v: height 1200 start 1203 end 1207 total 1245           clock  59.87Hz

Ces associations sur le DP-1 et DVI-I-0 doivent être issues d'une erreur d'attribution.

Nota : je vais enlever cette commande sur mon site si elle n'est pas correcte.
Peux tu me donner le retour de la commande :

$ cat /var/log/Xorg.0.log

qui est le listing du fichier de démarrage, pour contrôle, merci.

Dernière modification par Pascaltech (Le 19/11/2020, à 13:11)


Emachine el1200, Xubuntu 20.04 LTS
Traductions guides serveur & grub et liens utiles Classement CG
inxi -F sudo lshw dpkg -l

Hors ligne

#55 Le 19/11/2020, à 13:34

Valdo19FR

Re : Résolution sur TV...

Pascaltech a écrit :

Peux tu me donner le retour de la commande :

$ cat /var/log/Xorg.0.log

qui est le listing du fichier de démarrage, pour contrôle, merci.

Voila, mais c'est tellement long que je ne sais pas s'il y a tout !

 udev as: Keyboard
[    14.428] (II) event2  - Logitech Logitech Illuminated Keyboard: device is a keyboard
[    14.430] (II) config/udev: Adding input device Logitech Logitech Illuminated Keyboard Consumer Control (/dev/input/event3)
[    14.430] (**) Logitech Logitech Illuminated Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[    14.430] (II) Using input driver 'libinput' for 'Logitech Logitech Illuminated Keyboard Consumer Control'
[    14.430] (**) Logitech Logitech Illuminated Keyboard Consumer Control: always reports core events
[    14.430] (**) Option "Device" "/dev/input/event3"
[    14.430] (**) Option "_source" "server/udev"
[    14.431] (II) event3  - Logitech Logitech Illuminated Keyboard Consumer Control: is tagged by udev as: Keyboard
[    14.432] (II) event3  - Logitech Logitech Illuminated Keyboard Consumer Control: device is a keyboard
[    14.432] (II) event3  - Logitech Logitech Illuminated Keyboard Consumer Control: device removed
[    14.448] (II) libinput: Logitech Logitech Illuminated Keyboard Consumer Control: needs a virtual subdevice
[    14.448] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb3/3-1/3-1:1.1/0003:046D:C318.0002/input/input6/event3"
[    14.448] (II) XINPUT: Adding extended input device "Logitech Logitech Illuminated Keyboard Consumer Control" (type: MOUSE, id 9)
[    14.448] (**) Option "AccelerationScheme" "none"
[    14.449] (**) Logitech Logitech Illuminated Keyboard Consumer Control: (accel) selected scheme none/0
[    14.449] (**) Logitech Logitech Illuminated Keyboard Consumer Control: (accel) acceleration factor: 2.000
[    14.449] (**) Logitech Logitech Illuminated Keyboard Consumer Control: (accel) acceleration threshold: 4
[    14.453] (II) event3  - Logitech Logitech Illuminated Keyboard Consumer Control: is tagged by udev as: Keyboard
[    14.454] (II) event3  - Logitech Logitech Illuminated Keyboard Consumer Control: device is a keyboard
[    14.456] (II) config/udev: Adding input device HID 2101:020f (/dev/input/event6)
[    14.456] (**) HID 2101:020f: Applying InputClass "libinput keyboard catchall"
[    14.456] (II) Using input driver 'libinput' for 'HID 2101:020f'
[    14.456] (**) HID 2101:020f: always reports core events
[    14.456] (**) Option "Device" "/dev/input/event6"
[    14.456] (**) Option "_source" "server/udev"
[    14.457] (II) event6  - HID 2101:020f: is tagged by udev as: Keyboard
[    14.458] (II) event6  - HID 2101:020f: device is a keyboard
[    14.458] (II) event6  - HID 2101:020f: device removed
[    14.480] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb3/3-2/3-2:1.0/0003:2101:020F.0004/input/input10/event6"
[    14.480] (II) XINPUT: Adding extended input device "HID 2101:020f" (type: KEYBOARD, id 10)
[    14.480] (**) Option "xkb_model" "pc105"
[    14.480] (**) Option "xkb_layout" "fr"
[    14.480] (**) Option "xkb_variant" "azerty"
[    14.482] (II) event6  - HID 2101:020f: is tagged by udev as: Keyboard
[    14.482] (II) event6  - HID 2101:020f: device is a keyboard
[    14.483] (II) config/udev: Adding input device HID 2101:020f (/dev/input/event7)
[    14.483] (**) HID 2101:020f: Applying InputClass "libinput pointer catchall"
[    14.483] (II) Using input driver 'libinput' for 'HID 2101:020f'
[    14.483] (**) HID 2101:020f: always reports core events
[    14.483] (**) Option "Device" "/dev/input/event7"
[    14.483] (**) Option "_source" "server/udev"
[    14.549] (II) event7  - HID 2101:020f: is tagged by udev as: Mouse
[    14.549] (II) event7  - HID 2101:020f: device is a pointer
[    14.549] (II) event7  - HID 2101:020f: device removed
[    14.580] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb3/3-2/3-2:1.1/0003:2101:020F.0005/input/input11/event7"
[    14.580] (II) XINPUT: Adding extended input device "HID 2101:020f" (type: MOUSE, id 11)
[    14.581] (**) Option "AccelerationScheme" "none"
[    14.581] (**) HID 2101:020f: (accel) selected scheme none/0
[    14.581] (**) HID 2101:020f: (accel) acceleration factor: 2.000
[    14.581] (**) HID 2101:020f: (accel) acceleration threshold: 4
[    14.644] (II) event7  - HID 2101:020f: is tagged by udev as: Mouse
[    14.644] (II) event7  - HID 2101:020f: device is a pointer
[    14.645] (II) config/udev: Adding input device HID 2101:020f (/dev/input/mouse1)
[    14.645] (II) No input driver specified, ignoring this device.
[    14.645] (II) This device may have been added with another device file.
[    14.645] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event19)
[    14.646] (II) No input driver specified, ignoring this device.
[    14.646] (II) This device may have been added with another device file.
[    14.646] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event20)
[    14.646] (II) No input driver specified, ignoring this device.
[    14.646] (II) This device may have been added with another device file.
[    14.646] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event21)
[    14.646] (II) No input driver specified, ignoring this device.
[    14.646] (II) This device may have been added with another device file.
[    14.647] (II) config/udev: Adding input device HDA ATI SB Line Out Front (/dev/input/event22)
[    14.647] (II) No input driver specified, ignoring this device.
[    14.647] (II) This device may have been added with another device file.
[    14.647] (II) config/udev: Adding input device HDA ATI SB Line Out Surround (/dev/input/event23)
[    14.647] (II) No input driver specified, ignoring this device.
[    14.647] (II) This device may have been added with another device file.
[    14.648] (II) config/udev: Adding input device HDA ATI SB Line Out CLFE (/dev/input/event24)
[    14.648] (II) No input driver specified, ignoring this device.
[    14.648] (II) This device may have been added with another device file.
[    14.648] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event25)
[    14.648] (II) No input driver specified, ignoring this device.
[    14.648] (II) This device may have been added with another device file.
[    14.649] (II) config/udev: Adding input device sonixj (/dev/input/event28)
[    14.649] (**) sonixj: Applying InputClass "libinput keyboard catchall"
[    14.649] (II) Using input driver 'libinput' for 'sonixj'
[    14.649] (**) sonixj: always reports core events
[    14.649] (**) Option "Device" "/dev/input/event28"
[    14.649] (**) Option "_source" "server/udev"
[    14.651] (II) event28 - sonixj: is tagged by udev as: Keyboard
[    14.651] (II) event28 - sonixj: device is a keyboard
[    14.651] (II) event28 - sonixj: device removed
[    14.696] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.1/8-2.1.1/input/input32/event28"
[    14.696] (II) XINPUT: Adding extended input device "sonixj" (type: KEYBOARD, id 12)
[    14.696] (**) Option "xkb_model" "pc105"
[    14.696] (**) Option "xkb_layout" "fr"
[    14.696] (**) Option "xkb_variant" "azerty"
[    14.698] (II) event28 - sonixj: is tagged by udev as: Keyboard
[    14.698] (II) event28 - sonixj: device is a keyboard
[    14.699] (II) config/udev: Adding input device Telink Wireless Receiver Mouse (/dev/input/event8)
[    14.699] (**) Telink Wireless Receiver Mouse: Applying InputClass "libinput pointer catchall"
[    14.699] (II) Using input driver 'libinput' for 'Telink Wireless Receiver Mouse'
[    14.699] (**) Telink Wireless Receiver Mouse: always reports core events
[    14.699] (**) Option "Device" "/dev/input/event8"
[    14.699] (**) Option "_source" "server/udev"
[    14.702] (II) event8  - Telink Wireless Receiver Mouse: is tagged by udev as: Mouse
[    14.702] (II) event8  - Telink Wireless Receiver Mouse: device is a pointer
[    14.702] (II) event8  - Telink Wireless Receiver Mouse: device removed
[    14.736] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.1/8-2.1.4/8-2.1.4:1.0/0003:248A:8514.0006/input/input12/event8"
[    14.736] (II) XINPUT: Adding extended input device "Telink Wireless Receiver Mouse" (type: MOUSE, id 13)
[    14.736] (**) Option "AccelerationScheme" "none"
[    14.737] (**) Telink Wireless Receiver Mouse: (accel) selected scheme none/0
[    14.737] (**) Telink Wireless Receiver Mouse: (accel) acceleration factor: 2.000
[    14.737] (**) Telink Wireless Receiver Mouse: (accel) acceleration threshold: 4
[    14.740] (II) event8  - Telink Wireless Receiver Mouse: is tagged by udev as: Mouse
[    14.740] (II) event8  - Telink Wireless Receiver Mouse: device is a pointer
[    14.741] (II) config/udev: Adding input device Telink Wireless Receiver Mouse (/dev/input/mouse2)
[    14.741] (II) No input driver specified, ignoring this device.
[    14.741] (II) This device may have been added with another device file.
[    14.742] (II) config/udev: Adding input device Telink Wireless Receiver Consumer Control (/dev/input/event9)
[    14.743] (**) Telink Wireless Receiver Consumer Control: Applying InputClass "libinput keyboard catchall"
[    14.743] (II) Using input driver 'libinput' for 'Telink Wireless Receiver Consumer Control'
[    14.743] (**) Telink Wireless Receiver Consumer Control: always reports core events
[    14.743] (**) Option "Device" "/dev/input/event9"
[    14.743] (**) Option "_source" "server/udev"
[    14.745] (II) event9  - Telink Wireless Receiver Consumer Control: is tagged by udev as: Keyboard
[    14.745] (II) event9  - Telink Wireless Receiver Consumer Control: device is a keyboard
[    14.745] (II) event9  - Telink Wireless Receiver Consumer Control: device removed
[    14.760] (II) libinput: Telink Wireless Receiver Consumer Control: needs a virtual subdevice
[    14.760] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.1/8-2.1.4/8-2.1.4:1.0/0003:248A:8514.0006/input/input13/event9"
[    14.760] (II) XINPUT: Adding extended input device "Telink Wireless Receiver Consumer Control" (type: MOUSE, id 14)
[    14.760] (**) Option "AccelerationScheme" "none"
[    14.760] (**) Telink Wireless Receiver Consumer Control: (accel) selected scheme none/0
[    14.760] (**) Telink Wireless Receiver Consumer Control: (accel) acceleration factor: 2.000
[    14.760] (**) Telink Wireless Receiver Consumer Control: (accel) acceleration threshold: 4
[    14.763] (II) event9  - Telink Wireless Receiver Consumer Control: is tagged by udev as: Keyboard
[    14.763] (II) event9  - Telink Wireless Receiver Consumer Control: device is a keyboard
[    14.764] (II) config/udev: Adding input device Telink Wireless Receiver System Control (/dev/input/event10)
[    14.764] (**) Telink Wireless Receiver System Control: Applying InputClass "libinput keyboard catchall"
[    14.764] (II) Using input driver 'libinput' for 'Telink Wireless Receiver System Control'
[    14.764] (**) Telink Wireless Receiver System Control: always reports core events
[    14.764] (**) Option "Device" "/dev/input/event10"
[    14.764] (**) Option "_source" "server/udev"
[    14.766] (II) event10 - Telink Wireless Receiver System Control: is tagged by udev as: Keyboard
[    14.767] (II) event10 - Telink Wireless Receiver System Control: device is a keyboard
[    14.767] (II) event10 - Telink Wireless Receiver System Control: device removed
[    14.784] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.1/8-2.1.4/8-2.1.4:1.0/0003:248A:8514.0006/input/input14/event10"
[    14.784] (II) XINPUT: Adding extended input device "Telink Wireless Receiver System Control" (type: KEYBOARD, id 15)
[    14.784] (**) Option "xkb_model" "pc105"
[    14.784] (**) Option "xkb_layout" "fr"
[    14.784] (**) Option "xkb_variant" "azerty"
[    14.787] (II) event10 - Telink Wireless Receiver System Control: is tagged by udev as: Keyboard
[    14.787] (II) event10 - Telink Wireless Receiver System Control: device is a keyboard
[    14.788] (II) config/udev: Adding input device Telink Wireless Receiver (/dev/input/event11)
[    14.788] (**) Telink Wireless Receiver: Applying InputClass "libinput keyboard catchall"
[    14.788] (II) Using input driver 'libinput' for 'Telink Wireless Receiver'
[    14.788] (**) Telink Wireless Receiver: always reports core events
[    14.788] (**) Option "Device" "/dev/input/event11"
[    14.788] (**) Option "_source" "server/udev"
[    14.791] (II) event11 - Telink Wireless Receiver: is tagged by udev as: Keyboard
[    14.791] (II) event11 - Telink Wireless Receiver: device is a keyboard
[    14.791] (II) event11 - Telink Wireless Receiver: device removed
[    14.812] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.1/8-2.1.4/8-2.1.4:1.1/0003:248A:8514.0007/input/input15/event11"
[    14.812] (II) XINPUT: Adding extended input device "Telink Wireless Receiver" (type: KEYBOARD, id 16)
[    14.812] (**) Option "xkb_model" "pc105"
[    14.812] (**) Option "xkb_layout" "fr"
[    14.812] (**) Option "xkb_variant" "azerty"
[    14.815] (II) event11 - Telink Wireless Receiver: is tagged by udev as: Keyboard
[    14.815] (II) event11 - Telink Wireless Receiver: device is a keyboard
[    14.816] (II) config/udev: Adding input device 2.4G Mouse (/dev/input/event4)
[    14.817] (II) No input driver specified, ignoring this device.
[    14.817] (II) This device may have been added with another device file.
[    14.818] (II) config/udev: Adding input device 2.4G Mouse (/dev/input/event5)
[    14.818] (**) 2.4G Mouse: Applying InputClass "libinput pointer catchall"
[    14.818] (II) Using input driver 'libinput' for '2.4G Mouse'
[    14.818] (**) 2.4G Mouse: always reports core events
[    14.818] (**) Option "Device" "/dev/input/event5"
[    14.818] (**) Option "_source" "server/udev"
[    14.881] (II) event5  - 2.4G Mouse: is tagged by udev as: Mouse
[    14.881] (II) event5  - 2.4G Mouse: device is a pointer
[    14.882] (II) event5  - 2.4G Mouse: device removed
[    14.916] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.4/8-2.4:1.0/0003:1EA7:0064.0003/input/input9/event5"
[    14.916] (II) XINPUT: Adding extended input device "2.4G Mouse" (type: MOUSE, id 17)
[    14.916] (**) Option "AccelerationScheme" "none"
[    14.916] (**) 2.4G Mouse: (accel) selected scheme none/0
[    14.916] (**) 2.4G Mouse: (accel) acceleration factor: 2.000
[    14.916] (**) 2.4G Mouse: (accel) acceleration threshold: 4
[    14.980] (II) event5  - 2.4G Mouse: is tagged by udev as: Mouse
[    14.980] (II) event5  - 2.4G Mouse: device is a pointer
[    14.982] (II) config/udev: Adding input device 2.4G Mouse (/dev/input/mouse0)
[    14.982] (II) No input driver specified, ignoring this device.
[    14.982] (II) This device may have been added with another device file.
[    14.985] (II) config/udev: Adding input device btnx mouse (/dev/input/event27)
[    14.985] (**) btnx mouse: Applying InputClass "libinput pointer catchall"
[    14.985] (II) Using input driver 'libinput' for 'btnx mouse'
[    14.985] (**) btnx mouse: always reports core events
[    14.985] (**) Option "Device" "/dev/input/event27"
[    14.985] (**) Option "_source" "server/udev"
[    14.986] (II) event27 - btnx mouse: is tagged by udev as: Mouse
[    14.986] (II) event27 - btnx mouse: device is a pointer
[    14.986] (II) event27 - btnx mouse: device removed
[    15.028] (**) Option "config_info" "udev:/sys/devices/virtual/input/input30/event27"
[    15.028] (II) XINPUT: Adding extended input device "btnx mouse" (type: MOUSE, id 18)
[    15.028] (**) Option "AccelerationScheme" "none"
[    15.028] (**) btnx mouse: (accel) selected scheme none/0
[    15.028] (**) btnx mouse: (accel) acceleration factor: 2.000
[    15.028] (**) btnx mouse: (accel) acceleration threshold: 4
[    15.029] (II) event27 - btnx mouse: is tagged by udev as: Mouse
[    15.029] (II) event27 - btnx mouse: device is a pointer
[    15.030] (II) config/udev: Adding input device btnx mouse (/dev/input/mouse3)
[    15.030] (II) No input driver specified, ignoring this device.
[    15.030] (II) This device may have been added with another device file.
[    15.030] (II) config/udev: Adding input device btnx keyboard (/dev/input/event26)
[    15.030] (**) btnx keyboard: Applying InputClass "libinput keyboard catchall"
[    15.030] (II) Using input driver 'libinput' for 'btnx keyboard'
[    15.030] (**) btnx keyboard: always reports core events
[    15.030] (**) Option "Device" "/dev/input/event26"
[    15.030] (**) Option "_source" "server/udev"
[    15.031] (II) event26 - btnx keyboard: is tagged by udev as: Keyboard
[    15.031] (II) event26 - btnx keyboard: device is a keyboard
[    15.031] (II) event26 - btnx keyboard: device removed
[    15.052] (**) Option "config_info" "udev:/sys/devices/virtual/input/input31/event26"
[    15.052] (II) XINPUT: Adding extended input device "btnx keyboard" (type: KEYBOARD, id 19)
[    15.052] (**) Option "xkb_model" "pc105"
[    15.052] (**) Option "xkb_layout" "fr"
[    15.052] (**) Option "xkb_variant" "azerty"
[    15.053] (II) event26 - btnx keyboard: is tagged by udev as: Keyboard
[    15.053] (II) event26 - btnx keyboard: device is a keyboard
[    15.059] (**) Logitech Logitech Illuminated Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[    15.059] (II) Using input driver 'libinput' for 'Logitech Logitech Illuminated Keyboard Consumer Control'
[    15.059] (**) Logitech Logitech Illuminated Keyboard Consumer Control: always reports core events
[    15.059] (**) Option "Device" "/dev/input/event3"
[    15.059] (**) Option "_source" "_driver/libinput"
[    15.059] (II) libinput: Logitech Logitech Illuminated Keyboard Consumer Control: is a virtual subdevice
[    15.060] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb3/3-1/3-1:1.1/0003:046D:C318.0002/input/input6/event3"
[    15.060] (II) XINPUT: Adding extended input device "Logitech Logitech Illuminated Keyboard Consumer Control" (type: KEYBOARD, id 20)
[    15.060] (**) Option "xkb_model" "pc105"
[    15.060] (**) Option "xkb_layout" "fr"
[    15.060] (**) Option "xkb_variant" "azerty"
[    15.060] (**) Telink Wireless Receiver Consumer Control: Applying InputClass "libinput keyboard catchall"
[    15.060] (II) Using input driver 'libinput' for 'Telink Wireless Receiver Consumer Control'
[    15.060] (**) Telink Wireless Receiver Consumer Control: always reports core events
[    15.060] (**) Option "Device" "/dev/input/event9"
[    15.060] (**) Option "_source" "_driver/libinput"
[    15.060] (II) libinput: Telink Wireless Receiver Consumer Control: is a virtual subdevice
[    15.060] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.1/8-2.1.4/8-2.1.4:1.0/0003:248A:8514.0006/input/input13/event9"
[    15.060] (II) XINPUT: Adding extended input device "Telink Wireless Receiver Consumer Control" (type: KEYBOARD, id 21)
[    15.060] (**) Option "xkb_model" "pc105"
[    15.060] (**) Option "xkb_layout" "fr"
[    15.060] (**) Option "xkb_variant" "azerty"
[    15.086] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    15.086] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    15.086] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    15.086] (--) NVIDIA(GPU-0): 
[    15.099] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    15.099] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    15.099] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    15.099] (--) NVIDIA(GPU-0): 
[    16.683] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    16.683] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    16.683] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    16.683] (--) NVIDIA(GPU-0): 
[    16.696] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    16.697] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    16.697] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    16.697] (--) NVIDIA(GPU-0): 
[    17.705] (--) NVIDIA(GPU-0): Acer P224W (CRT-0): connected
[    17.705] (--) NVIDIA(GPU-0): Acer P224W (CRT-0): 400.0 MHz maximum pixel clock
[    17.705] (--) NVIDIA(GPU-0): 
[    17.717] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    17.717] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[    17.717] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[    17.717] (--) NVIDIA(GPU-0): 
[    17.734] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    17.734] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    17.734] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    17.734] (--) NVIDIA(GPU-0): 
[    17.734] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    17.734] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[    17.734] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[    17.734] (--) NVIDIA(GPU-0): 
[    17.734] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    17.734] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    17.734] (--) NVIDIA(GPU-0): DFP-3: 330.0 MHz maximum pixel clock
[    17.734] (--) NVIDIA(GPU-0): 
[    17.734] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    17.734] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    17.734] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    17.734] (--) NVIDIA(GPU-0): 
[    19.685] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    19.685] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    19.685] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    19.685] (--) NVIDIA(GPU-0): 
[    19.698] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    19.698] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    19.698] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    19.698] (--) NVIDIA(GPU-0): 
[    21.710] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    21.710] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    21.710] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    21.710] (--) NVIDIA(GPU-0): 
[    21.723] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    21.723] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    21.723] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    21.723] (--) NVIDIA(GPU-0): 
[    22.168] (--) NVIDIA(GPU-0): Acer P224W (CRT-0): connected
[    22.168] (--) NVIDIA(GPU-0): Acer P224W (CRT-0): 400.0 MHz maximum pixel clock
[    22.168] (--) NVIDIA(GPU-0): 
[    22.204] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    22.204] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[    22.204] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[    22.204] (--) NVIDIA(GPU-0): 
[    22.217] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    22.217] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    22.217] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    22.217] (--) NVIDIA(GPU-0): 
[    22.217] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    22.217] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[    22.217] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[    22.217] (--) NVIDIA(GPU-0): 
[    22.217] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    22.217] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    22.217] (--) NVIDIA(GPU-0): DFP-3: 330.0 MHz maximum pixel clock
[    22.217] (--) NVIDIA(GPU-0): 
[    22.217] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    22.217] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    22.217] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    22.217] (--) NVIDIA(GPU-0): 
[    24.708] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    24.708] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    24.708] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    24.708] (--) NVIDIA(GPU-0): 
[    24.721] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    24.721] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    24.721] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    24.721] (--) NVIDIA(GPU-0): 
[    25.157] (--) NVIDIA(GPU-0): Acer P224W (CRT-0): connected
[    25.157] (--) NVIDIA(GPU-0): Acer P224W (CRT-0): 400.0 MHz maximum pixel clock
[    25.157] (--) NVIDIA(GPU-0): 
[    25.189] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    25.189] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[    25.189] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[    25.189] (--) NVIDIA(GPU-0): 
[    25.208] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    25.208] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    25.208] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    25.208] (--) NVIDIA(GPU-0): 
[    25.208] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    25.208] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[    25.208] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[    25.208] (--) NVIDIA(GPU-0): 
[    25.208] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    25.208] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    25.208] (--) NVIDIA(GPU-0): DFP-3: 330.0 MHz maximum pixel clock
[    25.208] (--) NVIDIA(GPU-0): 
[    25.208] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    25.208] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    25.208] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    25.208] (--) NVIDIA(GPU-0): 
[    26.788] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    26.788] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    26.788] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    26.788] (--) NVIDIA(GPU-0): 
[    26.803] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    26.803] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    26.803] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    26.803] (--) NVIDIA(GPU-0): 
[    29.746] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    29.746] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    29.746] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    29.746] (--) NVIDIA(GPU-0): 
[    29.762] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    29.762] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    29.762] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[    29.762] (--) NVIDIA(GPU-0): 
[  6919.121] (II) config/udev: removing device sonixj
[  6919.121] (II) event28 - sonixj: device removed
[  6919.152] (II) UnloadModule: "libinput"
[  6919.175] (II) config/udev: removing device Telink Wireless Receiver Mouse
[  6919.175] (II) event8  - Telink Wireless Receiver Mouse: device removed
[  6919.199] (II) UnloadModule: "libinput"
[  6919.212] (II) config/udev: removing device Telink Wireless Receiver Consumer Control
[  6919.214] (II) UnloadModule: "libinput"
[  6919.214] (II) config/udev: removing device Telink Wireless Receiver Consumer Control
[  6919.214] (II) event9  - Telink Wireless Receiver Consumer Control: device removed
[  6919.240] (II) UnloadModule: "libinput"
[  6919.266] (II) config/udev: removing device Telink Wireless Receiver System Control
[  6919.266] (II) event10 - Telink Wireless Receiver System Control: device removed
[  6919.287] (II) UnloadModule: "libinput"
[  6919.334] (II) config/udev: removing device Telink Wireless Receiver
[  6919.334] (II) event11 - Telink Wireless Receiver: device removed
[  6919.353] (II) UnloadModule: "libinput"
[  6919.433] (II) config/udev: removing device 2.4G Mouse
[  6919.434] (II) event5  - 2.4G Mouse: device removed
[  6919.462] (II) UnloadModule: "libinput"
[  6921.786] (II) config/udev: Adding input device 2.4G Mouse (/dev/input/mouse0)
[  6921.786] (II) No input driver specified, ignoring this device.
[  6921.786] (II) This device may have been added with another device file.
[  6921.884] (II) config/udev: Adding input device 2.4G Mouse (/dev/input/event4)
[  6921.884] (II) No input driver specified, ignoring this device.
[  6921.884] (II) This device may have been added with another device file.
[  6921.885] (II) config/udev: Adding input device 2.4G Mouse (/dev/input/event5)
[  6921.885] (**) 2.4G Mouse: Applying InputClass "libinput pointer catchall"
[  6921.885] (II) Using input driver 'libinput' for '2.4G Mouse'
[  6921.885] (**) 2.4G Mouse: always reports core events
[  6921.885] (**) Option "Device" "/dev/input/event5"
[  6921.885] (**) Option "_source" "server/udev"
[  6921.948] (II) event5  - 2.4G Mouse: is tagged by udev as: Mouse
[  6921.948] (II) event5  - 2.4G Mouse: device is a pointer
[  6921.949] (II) event5  - 2.4G Mouse: device removed
[  6921.984] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.4/8-2.4:1.0/0003:1EA7:0064.0008/input/input34/event5"
[  6921.984] (II) XINPUT: Adding extended input device "2.4G Mouse" (type: MOUSE, id 12)
[  6921.987] (**) Option "AccelerationScheme" "none"
[  6921.989] (**) 2.4G Mouse: (accel) selected scheme none/0
[  6921.989] (**) 2.4G Mouse: (accel) acceleration factor: 2.000
[  6921.990] (**) 2.4G Mouse: (accel) acceleration threshold: 4
[  6922.057] (II) event5  - 2.4G Mouse: is tagged by udev as: Mouse
[  6922.057] (II) event5  - 2.4G Mouse: device is a pointer
[  6923.899] (II) config/udev: Adding input device Telink Wireless Receiver Mouse (/dev/input/mouse2)
[  6923.899] (II) No input driver specified, ignoring this device.
[  6923.899] (II) This device may have been added with another device file.
[  6923.902] (II) config/udev: Adding input device Telink Wireless Receiver (/dev/input/event28)
[  6923.902] (**) Telink Wireless Receiver: Applying InputClass "libinput keyboard catchall"
[  6923.902] (II) Using input driver 'libinput' for 'Telink Wireless Receiver'
[  6923.902] (**) Telink Wireless Receiver: always reports core events
[  6923.902] (**) Option "Device" "/dev/input/event28"
[  6923.902] (**) Option "_source" "server/udev"
[  6923.904] (II) event28 - Telink Wireless Receiver: is tagged by udev as: Keyboard
[  6923.904] (II) event28 - Telink Wireless Receiver: device is a keyboard
[  6923.904] (II) event28 - Telink Wireless Receiver: device removed
[  6923.916] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.1/8-2.1.4/8-2.1.4:1.1/0003:248A:8514.000A/input/input39/event28"
[  6923.916] (II) XINPUT: Adding extended input device "Telink Wireless Receiver" (type: KEYBOARD, id 13)
[  6923.916] (**) Option "xkb_model" "pc105"
[  6923.916] (**) Option "xkb_layout" "fr"
[  6923.916] (**) Option "xkb_variant" "azerty"
[  6923.916] (WW) Option "xkb_options" requires a string value
[  6923.919] (II) event28 - Telink Wireless Receiver: is tagged by udev as: Keyboard
[  6923.920] (II) event28 - Telink Wireless Receiver: device is a keyboard
[  6923.934] (II) config/udev: Adding input device Telink Wireless Receiver Mouse (/dev/input/event9)
[  6923.934] (**) Telink Wireless Receiver Mouse: Applying InputClass "libinput pointer catchall"
[  6923.934] (II) Using input driver 'libinput' for 'Telink Wireless Receiver Mouse'
[  6923.935] (**) Telink Wireless Receiver Mouse: always reports core events
[  6923.935] (**) Option "Device" "/dev/input/event9"
[  6923.935] (**) Option "_source" "server/udev"
[  6923.936] (II) event9  - Telink Wireless Receiver Mouse: is tagged by udev as: Mouse
[  6923.937] (II) event9  - Telink Wireless Receiver Mouse: device is a pointer
[  6923.937] (II) event9  - Telink Wireless Receiver Mouse: device removed
[  6923.968] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.1/8-2.1.4/8-2.1.4:1.0/0003:248A:8514.0009/input/input36/event9"
[  6923.968] (II) XINPUT: Adding extended input device "Telink Wireless Receiver Mouse" (type: MOUSE, id 14)
[  6923.969] (**) Option "AccelerationScheme" "none"
[  6923.969] (**) Telink Wireless Receiver Mouse: (accel) selected scheme none/0
[  6923.969] (**) Telink Wireless Receiver Mouse: (accel) acceleration factor: 2.000
[  6923.969] (**) Telink Wireless Receiver Mouse: (accel) acceleration threshold: 4
[  6923.971] (II) event9  - Telink Wireless Receiver Mouse: is tagged by udev as: Mouse
[  6923.971] (II) event9  - Telink Wireless Receiver Mouse: device is a pointer
[  6923.975] (II) config/udev: Adding input device Telink Wireless Receiver Consumer Control (/dev/input/event10)
[  6923.975] (**) Telink Wireless Receiver Consumer Control: Applying InputClass "libinput keyboard catchall"
[  6923.975] (II) Using input driver 'libinput' for 'Telink Wireless Receiver Consumer Control'
[  6923.975] (**) Telink Wireless Receiver Consumer Control: always reports core events
[  6923.975] (**) Option "Device" "/dev/input/event10"
[  6923.975] (**) Option "_source" "server/udev"
[  6923.977] (II) event10 - Telink Wireless Receiver Consumer Control: is tagged by udev as: Keyboard
[  6923.977] (II) event10 - Telink Wireless Receiver Consumer Control: device is a keyboard
[  6923.978] (II) event10 - Telink Wireless Receiver Consumer Control: device removed
[  6923.992] (II) libinput: Telink Wireless Receiver Consumer Control: needs a virtual subdevice
[  6923.992] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.1/8-2.1.4/8-2.1.4:1.0/0003:248A:8514.0009/input/input37/event10"
[  6923.992] (II) XINPUT: Adding extended input device "Telink Wireless Receiver Consumer Control" (type: MOUSE, id 15)
[  6923.993] (**) Option "AccelerationScheme" "none"
[  6923.994] (**) Telink Wireless Receiver Consumer Control: (accel) selected scheme none/0
[  6923.994] (**) Telink Wireless Receiver Consumer Control: (accel) acceleration factor: 2.000
[  6923.994] (**) Telink Wireless Receiver Consumer Control: (accel) acceleration threshold: 4
[  6923.996] (II) event10 - Telink Wireless Receiver Consumer Control: is tagged by udev as: Keyboard
[  6923.996] (II) event10 - Telink Wireless Receiver Consumer Control: device is a keyboard
[  6923.998] (**) Telink Wireless Receiver Consumer Control: Applying InputClass "libinput keyboard catchall"
[  6923.998] (II) Using input driver 'libinput' for 'Telink Wireless Receiver Consumer Control'
[  6923.998] (**) Telink Wireless Receiver Consumer Control: always reports core events
[  6923.998] (**) Option "Device" "/dev/input/event10"
[  6923.998] (**) Option "_source" "_driver/libinput"
[  6923.998] (II) libinput: Telink Wireless Receiver Consumer Control: is a virtual subdevice
[  6923.998] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.1/8-2.1.4/8-2.1.4:1.0/0003:248A:8514.0009/input/input37/event10"
[  6923.998] (II) XINPUT: Adding extended input device "Telink Wireless Receiver Consumer Control" (type: KEYBOARD, id 16)
[  6923.998] (**) Option "xkb_model" "pc105"
[  6923.998] (**) Option "xkb_layout" "fr"
[  6923.998] (**) Option "xkb_variant" "azerty"
[  6923.998] (WW) Option "xkb_options" requires a string value
[  6924.000] (II) config/udev: Adding input device sonixj (/dev/input/event8)
[  6924.000] (**) sonixj: Applying InputClass "libinput keyboard catchall"
[  6924.000] (II) Using input driver 'libinput' for 'sonixj'
[  6924.000] (**) sonixj: always reports core events
[  6924.000] (**) Option "Device" "/dev/input/event8"
[  6924.000] (**) Option "_source" "server/udev"
[  6924.002] (II) event8  - sonixj: is tagged by udev as: Keyboard
[  6924.002] (II) event8  - sonixj: device is a keyboard
[  6924.002] (II) event8  - sonixj: device removed
[  6924.044] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.1/8-2.1.1/input/input35/event8"
[  6924.044] (II) XINPUT: Adding extended input device "sonixj" (type: KEYBOARD, id 17)
[  6924.044] (**) Option "xkb_model" "pc105"
[  6924.044] (**) Option "xkb_layout" "fr"
[  6924.044] (**) Option "xkb_variant" "azerty"
[  6924.044] (WW) Option "xkb_options" requires a string value
[  6924.049] (II) event8  - sonixj: is tagged by udev as: Keyboard
[  6924.049] (II) event8  - sonixj: device is a keyboard
[  6924.051] (II) config/udev: Adding input device Telink Wireless Receiver System Control (/dev/input/event11)
[  6924.051] (**) Telink Wireless Receiver System Control: Applying InputClass "libinput keyboard catchall"
[  6924.051] (II) Using input driver 'libinput' for 'Telink Wireless Receiver System Control'
[  6924.051] (**) Telink Wireless Receiver System Control: always reports core events
[  6924.051] (**) Option "Device" "/dev/input/event11"
[  6924.051] (**) Option "_source" "server/udev"
[  6924.054] (II) event11 - Telink Wireless Receiver System Control: is tagged by udev as: Keyboard
[  6924.054] (II) event11 - Telink Wireless Receiver System Control: device is a keyboard
[  6924.054] (II) event11 - Telink Wireless Receiver System Control: device removed
[  6924.072] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.4/0000:03:05.0/usb8/8-2/8-2.1/8-2.1.4/8-2.1.4:1.0/0003:248A:8514.0009/input/input38/event11"
[  6924.072] (II) XINPUT: Adding extended input device "Telink Wireless Receiver System Control" (type: KEYBOARD, id 21)
[  6924.072] (**) Option "xkb_model" "pc105"
[  6924.072] (**) Option "xkb_layout" "fr"
[  6924.072] (**) Option "xkb_variant" "azerty"
[  6924.072] (WW) Option "xkb_options" requires a string value
[  6924.080] (II) event11 - Telink Wireless Receiver System Control: is tagged by udev as: Keyboard
[  6924.080] (II) event11 - Telink Wireless Receiver System Control: device is a keyboard
[ 13387.514] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13387.519] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13387.519] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13387.519] (--) NVIDIA(GPU-0): 
[ 13387.533] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13387.533] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13387.533] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13387.533] (--) NVIDIA(GPU-0): 
[ 13889.627] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13889.627] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13889.627] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13889.627] (--) NVIDIA(GPU-0): 
[ 13889.640] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13889.640] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13889.640] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13889.640] (--) NVIDIA(GPU-0): 
[ 13892.492] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13892.492] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13892.492] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13892.492] (--) NVIDIA(GPU-0): 
[ 13892.505] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13892.505] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13892.505] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13892.505] (--) NVIDIA(GPU-0): 
[ 13901.648] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13901.648] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13901.648] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13901.648] (--) NVIDIA(GPU-0): 
[ 13901.669] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13901.669] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13901.669] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13901.669] (--) NVIDIA(GPU-0): 
[ 13904.652] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13904.652] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13904.652] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13904.652] (--) NVIDIA(GPU-0): 
[ 13904.665] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13904.665] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13904.665] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13904.665] (--) NVIDIA(GPU-0): 
[ 13906.765] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13906.765] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13906.765] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13906.765] (--) NVIDIA(GPU-0): 
[ 13906.778] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13906.778] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13906.778] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13906.778] (--) NVIDIA(GPU-0): 
[ 13909.768] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13909.768] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13909.768] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13909.768] (--) NVIDIA(GPU-0): 
[ 13909.781] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13909.781] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13909.781] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13909.781] (--) NVIDIA(GPU-0): 
[ 13911.788] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13911.788] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13911.788] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13911.788] (--) NVIDIA(GPU-0): 
[ 13911.802] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13911.802] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13911.802] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13911.802] (--) NVIDIA(GPU-0): 
[ 13914.791] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13914.791] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13914.791] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13914.791] (--) NVIDIA(GPU-0): 
[ 13914.807] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13914.807] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13914.807] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13914.807] (--) NVIDIA(GPU-0): 
[ 13916.810] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13916.810] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13916.810] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13916.810] (--) NVIDIA(GPU-0): 
[ 13916.830] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13916.830] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13916.830] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13916.830] (--) NVIDIA(GPU-0): 
[ 13919.814] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13919.814] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13919.814] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13919.814] (--) NVIDIA(GPU-0): 
[ 13919.827] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13919.827] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13919.827] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13919.827] (--) NVIDIA(GPU-0): 
[ 13921.840] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13921.840] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13921.840] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13921.840] (--) NVIDIA(GPU-0): 
[ 13921.853] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13921.853] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13921.853] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13921.853] (--) NVIDIA(GPU-0): 
[ 13924.840] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13924.840] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13924.840] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13924.840] (--) NVIDIA(GPU-0): 
[ 13924.853] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13924.853] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13924.853] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13924.853] (--) NVIDIA(GPU-0): 
[ 13926.863] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13926.863] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13926.863] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13926.863] (--) NVIDIA(GPU-0): 
[ 13926.876] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13926.876] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13926.876] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13926.876] (--) NVIDIA(GPU-0): 
[ 13929.877] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13929.878] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13929.878] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13929.878] (--) NVIDIA(GPU-0): 
[ 13929.898] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13929.898] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13929.898] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13929.898] (--) NVIDIA(GPU-0): 
[ 13931.900] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13931.900] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13931.900] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13931.900] (--) NVIDIA(GPU-0): 
[ 13931.919] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13931.919] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13931.919] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13931.919] (--) NVIDIA(GPU-0): 
[ 13934.906] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13934.906] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13934.906] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13934.906] (--) NVIDIA(GPU-0): 
[ 13934.926] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13934.927] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13934.927] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13934.927] (--) NVIDIA(GPU-0): 
[ 13936.929] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13936.929] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13936.929] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13936.929] (--) NVIDIA(GPU-0): 
[ 13936.949] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13936.949] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13936.949] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13936.949] (--) NVIDIA(GPU-0): 
[ 13939.929] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13939.930] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13939.930] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13939.930] (--) NVIDIA(GPU-0): 
[ 13939.949] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13939.949] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13939.949] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13939.949] (--) NVIDIA(GPU-0): 
[ 13941.957] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13941.957] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13941.957] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13941.957] (--) NVIDIA(GPU-0): 
[ 13941.978] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13941.978] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13941.978] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13941.978] (--) NVIDIA(GPU-0): 
[ 13944.959] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13944.959] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13944.959] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13944.959] (--) NVIDIA(GPU-0): 
[ 13944.979] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13944.979] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13944.979] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13944.979] (--) NVIDIA(GPU-0): 
[ 13946.983] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13946.983] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13946.983] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13946.983] (--) NVIDIA(GPU-0): 
[ 13947.003] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13947.003] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13947.003] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13947.003] (--) NVIDIA(GPU-0): 
[ 13949.983] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13949.983] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13949.983] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13949.983] (--) NVIDIA(GPU-0): 
[ 13950.003] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13950.003] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13950.003] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13950.003] (--) NVIDIA(GPU-0): 
[ 13952.008] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13952.008] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13952.008] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13952.008] (--) NVIDIA(GPU-0): 
[ 13952.028] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13952.028] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13952.028] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13952.028] (--) NVIDIA(GPU-0): 
[ 13955.008] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13955.009] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13955.009] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13955.009] (--) NVIDIA(GPU-0): 
[ 13955.028] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13955.028] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13955.028] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13955.028] (--) NVIDIA(GPU-0): 
[ 13957.036] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13957.036] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13957.036] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13957.036] (--) NVIDIA(GPU-0): 
[ 13957.058] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13957.058] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13957.058] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13957.058] (--) NVIDIA(GPU-0): 
[ 13960.035] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13960.035] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13960.035] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13960.035] (--) NVIDIA(GPU-0): 
[ 13960.056] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13960.056] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13960.056] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13960.056] (--) NVIDIA(GPU-0): 
[ 16420.271] (--) NVIDIA(GPU-0): Acer P224W (CRT-0): connected
[ 16420.271] (--) NVIDIA(GPU-0): Acer P224W (CRT-0): 400.0 MHz maximum pixel clock
[ 16420.271] (--) NVIDIA(GPU-0): 
[ 16420.292] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 16420.292] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[ 16420.292] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[ 16420.292] (--) NVIDIA(GPU-0): 
[ 16420.312] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 16420.312] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 16420.312] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 16420.312] (--) NVIDIA(GPU-0): 
[ 16420.312] (--) NVIDIA(GPU-0): DFP-2: disconnected
[ 16420.312] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[ 16420.312] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[ 16420.312] (--) NVIDIA(GPU-0): 
[ 16420.312] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 16420.312] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[ 16420.312] (--) NVIDIA(GPU-0): DFP-3: 330.0 MHz maximum pixel clock
[ 16420.312] (--) NVIDIA(GPU-0): 
[ 16420.312] (--) NVIDIA(GPU-0): DFP-4: disconnected
[ 16420.312] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[ 16420.312] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[ 16420.312] (--) NVIDIA(GPU-0): 
valdo@val:~$ 

Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#56 Le 19/11/2020, à 13:43

Pascaltech

Re : Résolution sur TV...

Le fichier démarre au moment où Xorg est lancé, pour moi :

[    28.285] 
X.Org X Server 1.19.6
Release Date: 2017-12-20
[    28.285] X Protocol Version 11, Revision 0

Ce que l'on peut voir dans la liste des messages du noyau avec la commande dmesg :

[   28.920506] nouveau 0000:00:0d.0: bus: MMIO write of 00820001 FAULT at 00b000

Les écrans sont définis différemment jusqu'à la fin :

[ 13960.056] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 13960.056] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 13960.056] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 13960.056] (--) NVIDIA(GPU-0): 
[ 16420.271] (--) NVIDIA(GPU-0): Acer P224W (CRT-0): connected
[ 16420.271] (--) NVIDIA(GPU-0): Acer P224W (CRT-0): 400.0 MHz maximum pixel clock
[ 16420.271] (--) NVIDIA(GPU-0): 
[ 16420.292] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 16420.292] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[ 16420.292] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[ 16420.292] (--) NVIDIA(GPU-0): 
[ 16420.312] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[ 16420.312] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[ 16420.312] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 340.0 MHz maximum pixel clock
[ 16420.312] (--) NVIDIA(GPU-0): 
[ 16420.312] (--) NVIDIA(GPU-0): DFP-2: disconnected
[ 16420.312] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[ 16420.312] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[ 16420.312] (--) NVIDIA(GPU-0): 
[ 16420.312] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 16420.312] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[ 16420.312] (--) NVIDIA(GPU-0): DFP-3: 330.0 MHz maximum pixel clock
[ 16420.312] (--) NVIDIA(GPU-0): 
[ 16420.312] (--) NVIDIA(GPU-0): DFP-4: disconnected
[ 16420.312] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[ 16420.312] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock

DFP-1 pour la TV,
CRT-0 pour l'écran PC.
Je n'en sais pas plus. Il y a des évolutions du cœur d'ubuntu que je maîtrise pas.:(

Dernière modification par Pascaltech (Le 19/11/2020, à 13:51)


Emachine el1200, Xubuntu 20.04 LTS
Traductions guides serveur & grub et liens utiles Classement CG
inxi -F sudo lshw dpkg -l

Hors ligne

#57 Le 19/11/2020, à 13:55

Valdo19FR

Re : Résolution sur TV...

Dernière tentative après redémarrage :

valdo@val:~$ cvt 1600 1200
# 1600x1200 59.87 Hz (CVT 1.92M3) hsync: 74.54 kHz; pclk: 161.00 MHz
Modeline "1600x1200_60.00"  161.00  1600 1712 1880 2160  1200 1203 1207 1245 -hsync +vsync
valdo@val:~$ xrandr --newmode "1600x1200_60.00"  161.00  1600 1712 1880 2160  1200 1203 1207 1245 -hsync +vsync
valdo@val:~$ xrandr --addmode HDMI-0 1600x1200_60.00
X Error of failed request:  BadMatch (invalid parameter attributes)
  Major opcode of failed request:  140 (RANDR)
  Minor opcode of failed request:  18 (RRAddOutputMode)
  Serial number of failed request:  41
  Current serial number in output stream:  42
valdo@val:~$ 

Pas mieux ! roll

Val.


Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#58 Le 19/11/2020, à 13:58

Pascaltech

Re : Résolution sur TV...

???? Donnes le retour de la commande xrandr stp.

Et ta TV tourne en 100 Hz alors essaies le mode :

cvt 1600 1200 100

Et donnes les référence du cordon, s'il y en a. Il a peut-être une limite de capacité.

Dernière modification par Pascaltech (Le 19/11/2020, à 14:32)


Emachine el1200, Xubuntu 20.04 LTS
Traductions guides serveur & grub et liens utiles Classement CG
inxi -F sudo lshw dpkg -l

Hors ligne

#59 Le 19/11/2020, à 14:45

Valdo19FR

Re : Résolution sur TV...

Pascaltech a écrit :

???? Donnes le retour de la commande xrandr stp.

Et ta TV tourne en 100 Hz alors essaies le mode :

cvt 1600 1200 100
valdo@val:~$ cvt 1600 1200 100
# 1600x1200 99.89 Hz (CVT) hsync: 127.26 kHz; pclk: 281.00 MHz
Modeline "1600x1200_100.00"  281.00  1600 1736 1904 2208  1200 1203 1207 1274 -hsync +vsync
valdo@val:~$ 

Et donnes les référence du cordon, s'il y en a. Il a peut-être une limite de capacité.

Pour le câble voila une photo des inscription qui sont dessus
1605793772.jpg

Val.


Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#60 Le 19/11/2020, à 14:48

Valdo19FR

Re : Résolution sur TV...

Test en 100 Hz!

valdo@val:~$ cvt 1600 1200 100
# 1600x1200 99.89 Hz (CVT) hsync: 127.26 kHz; pclk: 281.00 MHz
Modeline "1600x1200_100.00"  281.00  1600 1736 1904 2208  1200 1203 1207 1274 -hsync +vsync
valdo@val:~$ xrandr --newmode "1600x1200_100.00"  281.00  1600 1736 1904 2208  1200 1203 1207 1274 -hsync +vsync
valdo@val:~$ xrandr --addmode HDMI-0 1600x1200_100.00
X Error of failed request:  BadMatch (invalid parameter attributes)
  Major opcode of failed request:  140 (RANDR)
  Minor opcode of failed request:  18 (RRAddOutputMode)
  Serial number of failed request:  41
  Current serial number in output stream:  42
valdo@val:~$ 

Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#61 Le 19/11/2020, à 14:49

Valdo19FR

Re : Résolution sur TV...

J'ai oublié de préciser que le câble HDMI fait 10 M
Cable HDMI 10 M

Val.

Dernière modification par Valdo19FR (Le 19/11/2020, à 14:53)


Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#62 Le 19/11/2020, à 14:52

Pascaltech

Re : Résolution sur TV...

Ta carte graphique est une GTX 660 qui sort du HDMI 1.4 :
HDMI 1.4 :

HDMI 1.4b Specification
The major features introduced in the HDMI® 1.4b specification include:

    4K support enables video resolutions beyond 1080p, supporting high-resolution displays that deliver movie theater-like experiences to the home with incredible depth, detail and color. This includes support for 4096×2160 at 24 Hz, 3840×2160 at 24, 25, and 30 Hz, and 1920×1080 at 120 Hz. All resolutions and refresh rates can be support with the High Speed HDMI Cable.

1600x1200 est une résolution inférieure à 1920x1080 annoncée jusqu'à 120 Hz. C'est peut-être le câble qui bloque. Il est dit, dans l'article en référence, d'utiliser un câble Haute Vitesse. C'est peut-être la solution.

Sinon tu peux essayer de baisser la fréquence de 10 en 10 pour trouver la limite, si cela vient de là.


Emachine el1200, Xubuntu 20.04 LTS
Traductions guides serveur & grub et liens utiles Classement CG
inxi -F sudo lshw dpkg -l

Hors ligne

#63 Le 19/11/2020, à 14:53

Pascaltech

Re : Résolution sur TV...

Valdo19FR a écrit :

J'ai oublié de préciser que le câble HDMI fait 10 M
Cable HDMI 10 M

Val.

Tu es comme Marie-Bénédicte ? "J'havite dans un Hâteau !" lol


Emachine el1200, Xubuntu 20.04 LTS
Traductions guides serveur & grub et liens utiles Classement CG
inxi -F sudo lshw dpkg -l

Hors ligne

#64 Le 19/11/2020, à 14:57

Valdo19FR

Re : Résolution sur TV...

Pascaltech a écrit :

Ta carte graphique est une GTX 660 qui sort du HDMI 1.4

1600x1200 est une résolution inférieure à 1920x1080 annoncée jusqu'à 120 Hz. C'est peut-être le câble qui bloque. Il est dit, dans l'article en référence, d'utiliser un câble Haute Vitesse. C'est peut-être la solution.

si je peux mettre la télé en 1920x1080 avec ce câble
elle ne devrait pas passer en 1600x1200 avec le même ?
en règle générale, qui peut le plus, peut le moins non ?

Val.


Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#65 Le 19/11/2020, à 15:04

Valdo19FR

Re : Résolution sur TV...

En considérant que cela vient du câble qui bloque est ce que celui là irait


Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#66 Le 19/11/2020, à 15:06

Valdo19FR

Re : Résolution sur TV...

Pascaltech a écrit :

Tu es comme Marie-Bénédicte ? "J'havite dans un Hâteau !" lol

lol


Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#67 Le 19/11/2020, à 15:15

Pascaltech

Re : Résolution sur TV...

Oui, je pense que la résolution 1600x1200 devrait passer, le nombre de pixels total est inférieur, mais je ne suis pas certain car la hauteur est supérieure.

Si c'est ton cordon sur l'image, il est en HDMI 1.3, c'est peut-être lui qui bloque.

Valdo19FR a écrit :

En considérant que cela vient du câble qui bloque est ce que celui là irait

Oui. C'est le produit sur lequel il ne faut lésiner, la qualité est à un prix accessible pour ce genre de petit produit. Et puis, il nesera pas perdu et pourra te servir par la suite pour un bon moment.

Essaies la fréquence de 59 Hz puis baisse-la ensuite.

Salut.


Emachine el1200, Xubuntu 20.04 LTS
Traductions guides serveur & grub et liens utiles Classement CG
inxi -F sudo lshw dpkg -l

Hors ligne

#68 Le 19/11/2020, à 15:33

Valdo19FR

Re : Résolution sur TV...

Merci pour ton aide, je viens de commander le câble je verrai ça Lundi quand je le recevrai.

Val.


Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#69 Le 21/11/2020, à 12:59

Valdo19FR

Re : Résolution sur TV...

Salut, je viens de recevoir mon cable et voila le résultat !

valdo@val:~$ cvt 1600 1200 59
# 1600x1200 58.96 Hz (CVT) hsync: 73.34 kHz; pclk: 157.25 MHz
Modeline "1600x1200_59.00"  157.25  1600 1704 1872 2144  1200 1203 1207 1244 -hsync +vsync
valdo@val:~$ xrandr --newmode "1600x1200_90.00"  249.50  1600 1728 1896 2192  1200 1203 1207 1266 -hsync +vsync
valdo@val:~$ xrandr --addmode HDMI-0 1600x1200_90.00
X Error of failed request:  BadMatch (invalid parameter attributes)
  Major opcode of failed request:  140 (RANDR)
  Minor opcode of failed request:  18 (RRAddOutputMode)
  Serial number of failed request:  41
  Current serial number in output stream:  42
valdo@val:~$ 

Je suis désespéré, je crois que c'est fout....
si quelqu'un a une meilleur idées qu'il n'hésite pas.
En attendant merci à tous ceux qui se sont intéressés à mon cas.

Val.


Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#70 Le 21/11/2020, à 13:45

Pascaltech

Re : Résolution sur TV...

Bonjour,

Tu es toujours aussi précis dans tes commandes, il n'y a rien qui correspond !!!

valdo@val:~$ cvt 1600 1200 59
# 1600x1200 58.96 Hz (CVT) hsync: 73.34 kHz; pclk: 157.25 MHz
Modeline "1600x1200_59.00"  157.25  1600 1704 1872 2144  1200 1203 1207 1244 -hsync +vsync

Le nom est 1600x1200_59.00, que tu transformes en 1600x1200_90.00 et en plus tu n'envoies pas les bons paramètres !!

249.50  1600 1728 1896 2192  1200 1203 1207 1266 -hsync +vsync

pour

157.25  1600 1704 1872 2144  1200 1203 1207 1244 -hsync +vsync

Il y des gens qui s'acharnent à réussir quand d'autres s'acharnent à échouer. Rassures-toi, tu n'es pas le seul !! sad

Dernière modification par Pascaltech (Le 21/11/2020, à 14:16)


Emachine el1200, Xubuntu 20.04 LTS
Traductions guides serveur & grub et liens utiles Classement CG
inxi -F sudo lshw dpkg -l

Hors ligne

#71 Le 21/11/2020, à 15:46

Valdo19FR

Re : Résolution sur TV...

Pascaltech a écrit :

Bonjour,
Tu es toujours aussi précis dans tes commandes, il n'y a rien qui correspond !!!

Oupss j'ai juste rappelé les commandes à l'aide des flèches du clavier et sans lunettes visiblement j'en ai testé plusieurs !! big_smile
Voila le dernier test après redémarrage complet.

valdo@val:~$ cvt 1600 1200 59
# 1600x1200 58.96 Hz (CVT) hsync: 73.34 kHz; pclk: 157.25 MHz
Modeline "1600x1200_59.00"  157.25  1600 1704 1872 2144  1200 1203 1207 1244 -hsync +vsync
valdo@val:~$ xrandr --newmode "1600x1200_59.00"  157.25  1600 1704 1872 2144  1200 1203 1207 1244 -hsync +vsync
valdo@val:~$ xrandr --addmode HDMI-0 1600x1200_59.00
X Error of failed request:  BadMatch (invalid parameter attributes)
  Major opcode of failed request:  140 (RANDR)
  Minor opcode of failed request:  18 (RRAddOutputMode)
  Serial number of failed request:  41
  Current serial number in output stream:  42
valdo@val:~$ 

ça ne change pas grand chose ! sad

Val.


Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#72 Le 21/11/2020, à 16:21

Pascaltech

Re : Résolution sur TV...

Et bien, je ne sais pas.
Essaies de baisser la fréquence de 10 en 10.


Emachine el1200, Xubuntu 20.04 LTS
Traductions guides serveur & grub et liens utiles Classement CG
inxi -F sudo lshw dpkg -l

Hors ligne

#73 Le 21/11/2020, à 17:07

Valdo19FR

Re : Résolution sur TV...

Pascaltech a écrit :

Et bien, je ne sais pas.
Essaies de baisser la fréquence de 10 en 10.

Je viens de tester la résolution "1600x1200_100.00" en baissant la fréquance de 10 en 10,
Mais rien ne passe !!

et lorsque je fait un "xandr" toutes les entrées que j'ai testés se retrouve mentionnée à la ligne : DP-1 disconnected (normal left inverted right x axis y axis)

valdo@val:~$ xrandr
Screen 0: minimum 8 x 8, current 3040 x 1050, maximum 16384 x 16384
DVI-I-0 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 474mm x 296mm
   1680x1050     59.88*+  59.95  
   1600x1200     60.00  
   1440x900      74.98    59.89  
   1280x1024     75.02    60.02  
   1280x960      60.00  
   1280x720      60.00  
   1152x864      75.00  
   1024x768      75.03    70.07    60.00  
   800x600       75.00    72.19    60.32    56.25  
   640x480       75.00    72.81    59.94  
DVI-I-1 disconnected (normal left inverted right x axis y axis)
HDMI-0 connected 1360x768+1680+0 (normal left inverted right x axis y axis) 700mm x 390mm
   1360x768      59.80*+
   1920x1080     60.00    59.94    59.93    50.00    29.97    23.98    60.05    60.00    50.04  
   1280x768      60.35  
   1280x720      59.94    59.65    50.00  
   1024x768      60.00  
   800x600       60.32  
   720x576       50.00  
   720x480       59.94  
   640x480       59.95    59.93    59.94  
DP-0 disconnected (normal left inverted right x axis y axis)
DVI-D-0 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
  1600x1200_100.00 (0x31c) 281.000MHz -HSync +VSync
        h: width  1600 start 1736 end 1904 total 2208 skew    0 clock 127.26KHz
        v: height 1200 start 1203 end 1207 total 1274           clock  99.89Hz
  1600x1200_90.00 (0x31d) 249.500MHz -HSync +VSync
        h: width  1600 start 1728 end 1896 total 2192 skew    0 clock 113.82KHz
        v: height 1200 start 1203 end 1207 total 1266           clock  89.91Hz
  1600x1200_80.00 (0x31e) 220.500MHz -HSync +VSync
        h: width  1600 start 1728 end 1896 total 2192 skew    0 clock 100.59KHz
        v: height 1200 start 1203 end 1207 total 1259           clock  79.90Hz
  1600x1200_70.00 (0x31f) 190.500MHz -HSync +VSync
        h: width  1600 start 1720 end 1888 total 2176 skew    0 clock  87.55KHz
        v: height 1200 start 1203 end 1207 total 1252           clock  69.92Hz
  1600x1200_60.00 (0x320) 161.000MHz -HSync +VSync
        h: width  1600 start 1712 end 1880 total 2160 skew    0 clock  74.54KHz
        v: height 1200 start 1203 end 1207 total 1245           clock  59.87Hz
  1600x1200_50.00 (0x319) 131.500MHz -HSync +VSync
        h: width  1600 start 1696 end 1864 total 2128 skew    0 clock  61.80KHz
        v: height 1200 start 1203 end 1207 total 1238           clock  49.92Hz
  1600x1200_40.00 (0x31a) 103.000MHz -HSync +VSync
        h: width  1600 start 1688 end 1848 total 2096 skew    0 clock  49.14KHz
        v: height 1200 start 1203 end 1207 total 1231           clock  39.92Hz
  1600x1200_30.00 (0x31b) 74.500MHz -HSync +VSync
        h: width  1600 start 1656 end 1816 total 2032 skew    0 clock  36.66KHz
        v: height 1200 start 1203 end 1207 total 1224           clock  29.95Hz
valdo@val:~$ 

Val.


Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne

#74 Le 21/11/2020, à 17:32

Pascaltech

Re : Résolution sur TV...

Peux-tu taper la commande history et donner le retour ici ? Merci.

Il y a peut-être une mauvaise gestion de ta carte par ubuntu 20.04. Je ne suis pas passé à cette version, je la trouve mal conçue.

Dernière modification par Pascaltech (Le 21/11/2020, à 17:33)


Emachine el1200, Xubuntu 20.04 LTS
Traductions guides serveur & grub et liens utiles Classement CG
inxi -F sudo lshw dpkg -l

Hors ligne

#75 Le 22/11/2020, à 00:56

Valdo19FR

Re : Résolution sur TV...

Pascaltech a écrit :

Peux-tu taper la commande history et donner le retour ici ? Merci.

Il y a peut-être une mauvaise gestion de ta carte par ubuntu 20.04. Je ne suis pas passé à cette version, je la trouve mal conçue.

Désolé, j'ai effacé l'historique des commandes et pour la version d'Ubuntu je suis sur la 20.10

Val.

Dernière modification par Valdo19FR (Le 22/11/2020, à 00:58)


Windows est le système le plus stable au monde.
Bill GATES (Célèbre humoriste)
-
Ubuntu 21.04 (hirsute) XFCE

Hors ligne