Installation clavier Logitech

Postez ici toutes vos demandes d’assistance générale concernant le fonctionnement de Linux Mint, qui n'entrent pas dans les autres rubriques.
Répondre
Pat-Tar-89
Messages : 101
Enregistré le : jeu. 31 mars 2022 19:12

Installation clavier Logitech

Message par Pat-Tar-89 »

Bonjour,
Je tente une installation de mon clavier Logitech G213, sur une distribution Mate 22.1, selon la démarche du site :
https://github.com/MatMoul/g810-led/blo ... INSTALL.md

Mais, ça plante au moment du make bin en me donnant les indications suivantes :

Code : Tout sélectionner

amal-tarik-mate@amaltarikmate-Precision-Tower-3620:~/g810-led$ make bin
g++ -Dhidapi -Wall -O2 -std=gnu++11 -DVERSION=\"0.4.3\"  src/main.cpp src/helpers/help.cpp src/helpers/utils.cpp src/classes/Keyboard.cpp -o bin/g810-led -lhidapi-hidraw
In file included from src/main.cpp:23:
src/helpers/help.h:24:14: warning: elaborated-type-specifier for a scoped enum must not use the ‘class’ keyword
   24 |         enum class KeyboardFeatures : uint16_t {
      |         ~~~~ ^~~~~
      |              -----
src/helpers/help.h:24:37: error: found ‘:’ in nested-name-specifier, expected ‘::’
   24 |         enum class KeyboardFeatures : uint16_t {
      |                                     ^
      |                                     ::
src/helpers/help.h:24:20: error: ‘KeyboardFeatures’ has not been declared
   24 |         enum class KeyboardFeatures : uint16_t {
      |                    ^~~~~~~~~~~~~~~~
src/helpers/help.h:24:48: error: expected unqualified-id before ‘{’ token
   24 |         enum class KeyboardFeatures : uint16_t {
      |                                                ^
src/helpers/help.h:59:16: error: ‘KeyboardFeatures’ does not name a type
   59 |         inline KeyboardFeatures operator|(KeyboardFeatures a, KeyboardFeatures b);
      |                ^~~~~~~~~~~~~~~~
src/helpers/help.h:61:9: error: ‘KeyboardFeatures’ does not name a type
   61 |         KeyboardFeatures getKeyboardFeatures(std::string cmdName);
      |         ^~~~~~~~~~~~~~~~
In file included from src/helpers/help.cpp:17:
src/helpers/help.h:24:14: warning: elaborated-type-specifier for a scoped enum must not use the ‘class’ keyword
   24 |         enum class KeyboardFeatures : uint16_t {
      |         ~~~~ ^~~~~
      |              -----
src/helpers/help.h:24:37: error: found ‘:’ in nested-name-specifier, expected ‘::’
   24 |         enum class KeyboardFeatures : uint16_t {
      |                                     ^
      |                                     ::
src/helpers/help.h:24:20: error: ‘KeyboardFeatures’ has not been declared
   24 |         enum class KeyboardFeatures : uint16_t {
      |                    ^~~~~~~~~~~~~~~~
src/helpers/help.h:24:48: error: expected unqualified-id before ‘{’ token
   24 |         enum class KeyboardFeatures : uint16_t {
      |                                                ^
src/helpers/help.h:59:16: error: ‘KeyboardFeatures’ does not name a type
   59 |         inline KeyboardFeatures operator|(KeyboardFeatures a, KeyboardFeatures b);
      |                ^~~~~~~~~~~~~~~~
src/helpers/help.h:61:9: error: ‘KeyboardFeatures’ does not name a type
   61 |         KeyboardFeatures getKeyboardFeatures(std::string cmdName);
      |         ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:27:16: error: ‘KeyboardFeatures’ does not name a type
   27 |         inline KeyboardFeatures operator|(KeyboardFeatures a, KeyboardFeatures b) {
      |                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:31:9: error: ‘KeyboardFeatures’ does not name a type
   31 |         KeyboardFeatures getKeyboardFeatures(string cmdName) {
      |         ^~~~~~~~~~~~~~~~
src/helpers/help.cpp: In function ‘void help::usage(char*)’:
src/helpers/help.cpp:48:17: error: ‘KeyboardFeatures’ was not declared in this scope
   48 |                 KeyboardFeatures features = getKeyboardFeatures(cmdName);
      |                 ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:55:21: error: ‘features’ was not declared in this scope
   55 |                 if((features | KeyboardFeatures::setall) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:55:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   55 |                 if((features | KeyboardFeatures::setall) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:57:21: error: ‘features’ was not declared in this scope
   57 |                 if((features | KeyboardFeatures::setgroup) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:57:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   57 |                 if((features | KeyboardFeatures::setgroup) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:59:21: error: ‘features’ was not declared in this scope
   59 |                 if((features | KeyboardFeatures::setkey) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:59:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   59 |                 if((features | KeyboardFeatures::setkey) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:61:21: error: ‘features’ was not declared in this scope
   61 |                 if((features | KeyboardFeatures::setregion) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:61:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   61 |                 if((features | KeyboardFeatures::setregion) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:63:21: error: ‘features’ was not declared in this scope
   63 |                 if((features | KeyboardFeatures::gkeys) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:63:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   63 |                 if((features | KeyboardFeatures::gkeys) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:70:21: error: ‘features’ was not declared in this scope
   70 |                 if((features | KeyboardFeatures::commit) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:70:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   70 |                 if((features | KeyboardFeatures::commit) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:71:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   71 |                         if((features | KeyboardFeatures::setall) == features)
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:73:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   73 |                         if((features | KeyboardFeatures::setgroup) == features)
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:75:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   75 |                         if((features | KeyboardFeatures::setkey) == features)
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:81:21: error: ‘features’ was not declared in this scope
   81 |                 if((features | KeyboardFeatures::userstoredlighting) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:81:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   81 |                 if((features | KeyboardFeatures::userstoredlighting) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:90:21: error: ‘features’ was not declared in this scope
   90 |                 if((features | KeyboardFeatures::poweronfx) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:90:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   90 |                 if((features | KeyboardFeatures::poweronfx) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:94:21: error: ‘features’ was not declared in this scope
   94 |                 if((features | KeyboardFeatures::onboardmode) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:94:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   94 |                 if((features | KeyboardFeatures::onboardmode) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:113:21: error: ‘features’ was not declared in this scope
  113 |                 if((features | KeyboardFeatures::rgb) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:113:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  113 |                 if((features | KeyboardFeatures::rgb) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:115:21: error: ‘features’ was not declared in this scope
  115 |                 if((features | KeyboardFeatures::intensity) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:115:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  115 |                 if((features | KeyboardFeatures::intensity) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:117:21: error: ‘features’ was not declared in this scope
  117 |                 if((features | KeyboardFeatures::setregion) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:117:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  117 |                 if((features | KeyboardFeatures::setregion) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:123:21: error: ‘features’ was not declared in this scope
  123 |                 if((features | KeyboardFeatures::setkey) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:123:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  123 |                 if((features | KeyboardFeatures::setkey) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:125:21: error: ‘features’ was not declared in this scope
  125 |                 if((features | KeyboardFeatures::setgroup) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:125:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  125 |                 if((features | KeyboardFeatures::setgroup) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp: In function ‘void help::keys(char*)’:
src/helpers/help.cpp:135:17: error: ‘KeyboardFeatures’ was not declared in this scope
  135 |                 KeyboardFeatures features = getKeyboardFeatures(cmdName);
      |                 ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:142:21: error: ‘features’ was not declared in this scope
  142 |                 if((features | KeyboardFeatures::logo1) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:142:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  142 |                 if((features | KeyboardFeatures::logo1) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:144:21: error: ‘features’ was not declared in this scope
  144 |                 if((features | KeyboardFeatures::setindicators) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:144:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  144 |                 if((features | KeyboardFeatures::setindicators) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:146:21: error: ‘features’ was not declared in this scope
  146 |                 if((features | KeyboardFeatures::gkeys) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:146:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  146 |                 if((features | KeyboardFeatures::gkeys) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:150:21: error: ‘features’ was not declared in this scope
  150 |                 if((features | KeyboardFeatures::multimedia) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:150:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  150 |                 if((features | KeyboardFeatures::multimedia) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:153:21: error: ‘features’ was not declared in this scope
  153 |                 if((features | KeyboardFeatures::numpad) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:153:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  153 |                 if((features | KeyboardFeatures::numpad) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:160:21: error: ‘features’ was not declared in this scope
  160 |                 if((features | KeyboardFeatures::logo1) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:160:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  160 |                 if((features | KeyboardFeatures::logo1) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:163:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  163 |                         if((features | KeyboardFeatures::logo2) == features)
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:168:21: error: ‘features’ was not declared in this scope
  168 |                 if((features | KeyboardFeatures::setindicators) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:168:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  168 |                 if((features | KeyboardFeatures::setindicators) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:178:21: error: ‘features’ was not declared in this scope
  178 |                 if((features | KeyboardFeatures::gkeys) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:178:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  178 |                 if((features | KeyboardFeatures::gkeys) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:200:21: error: ‘features’ was not declared in this scope
  200 |                 if((features | KeyboardFeatures::multimedia) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:200:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  200 |                 if((features | KeyboardFeatures::multimedia) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:217:21: error: ‘features’ was not declared in this scope
  217 |                 if((features | KeyboardFeatures::numpad) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:217:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  217 |                 if((features | KeyboardFeatures::numpad) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:243:21: error: ‘features’ was not declared in this scope
  243 |                 if((features | KeyboardFeatures::setkey) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:243:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  243 |                 if((features | KeyboardFeatures::setkey) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp: In function ‘void help::effects(char*)’:
src/helpers/help.cpp:271:17: error: ‘KeyboardFeatures’ was not declared in this scope
  271 |                 KeyboardFeatures features = getKeyboardFeatures(cmdName);
      |                 ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:279:21: error: ‘features’ was not declared in this scope
  279 |                 if((features | KeyboardFeatures::userstoredlighting) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:279:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  279 |                 if((features | KeyboardFeatures::userstoredlighting) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:294:21: error: ‘features’ was not declared in this scope
  294 |                 if((features | KeyboardFeatures::logo1) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:294:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  294 |                 if((features | KeyboardFeatures::logo1) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:298:21: error: ‘features’ was not declared in this scope
  298 |                 if((features | KeyboardFeatures::rgb) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:298:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  298 |                 if((features | KeyboardFeatures::rgb) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:300:37: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  300 |                 else if((features | KeyboardFeatures::rgb) == features)
      |                                     ^~~~~~~~~~~~~~~~
src/helpers/help.cpp: In function ‘void help::samples(char*)’:
src/helpers/help.cpp:311:17: error: ‘KeyboardFeatures’ was not declared in this scope
  311 |                 KeyboardFeatures features = getKeyboardFeatures(cmdName);
      |                 ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:317:21: error: ‘features’ was not declared in this scope
  317 |                 if((features | KeyboardFeatures::setkey) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:317:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  317 |                 if((features | KeyboardFeatures::setkey) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:319:21: error: ‘features’ was not declared in this scope
  319 |                 if((features | KeyboardFeatures::setall) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:319:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  319 |                 if((features | KeyboardFeatures::setall) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:321:21: error: ‘features’ was not declared in this scope
  321 |                 if((features | KeyboardFeatures::setgroup) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:321:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  321 |                 if((features | KeyboardFeatures::setgroup) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:323:21: error: ‘features’ was not declared in this scope
  323 |                 if((features | KeyboardFeatures::setregion) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:323:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  323 |                 if((features | KeyboardFeatures::setregion) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:331:21: error: ‘features’ was not declared in this scope
  331 |                 if((features | KeyboardFeatures::poweronfx) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:331:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  331 |                 if((features | KeyboardFeatures::poweronfx) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:334:21: error: ‘features’ was not declared in this scope
  334 |                 if((features | KeyboardFeatures::onboardmode) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:334:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  334 |                 if((features | KeyboardFeatures::onboardmode) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:337:21: error: ‘features’ was not declared in this scope
  337 |                 if((features | KeyboardFeatures::commit) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:337:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  337 |                 if((features | KeyboardFeatures::commit) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:339:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  339 |                         if((features | KeyboardFeatures::setall) == features)
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:341:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  341 |                         if((features | KeyboardFeatures::setgroup) == features)
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:343:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  343 |                         if((features | KeyboardFeatures::setkey) == features) {
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:353:21: error: ‘features’ was not declared in this scope
  353 |                 if((features | KeyboardFeatures::intensity) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:353:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  353 |                 if((features | KeyboardFeatures::intensity) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:360:21: error: ‘features’ was not declared in this scope
  360 |                 if((features | KeyboardFeatures::setkey) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:360:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  360 |                 if((features | KeyboardFeatures::setkey) == features) {
      |                                ^~~~~~~~~~~~~~~~
make: *** [makefile:35 : bin/g810-led] Erreur 1
Pourtant, j'ai déjà installé le même clavier sur Mint Faye 6 sans problème.
Je n'arrive pas à m'en sortir. Quelqu'un pour m'aider ?
Merci.
Ordinateur de bureau :
OS : LMDE 7 Gigi
CPU : Intel© Core™ i7-7700K CPU @ 4.20GHz × 4
RAM : 32 Go
Cartes graphiques : Intel Corporation HD Graphics 630 + NVIDIA Corporation GP106GL [Quadro P2000]
Affichage : 1920 x 1080 - moniteur VIEWSONIC 27"
Son : HDA-Intel
Stockage : SSD Samsung 870 1To + SSD Samsung 500 Go
Avatar du membre
DodoVolant
Messages : 740
Enregistré le : lun. 29 janv. 2018 20:23
Localisation : Salies de Béarn
Contact :

Re: Installation clavier Logitech

Message par DodoVolant »

Désolé, trop pointu pour moi... :l
mais l'une ou l'autre de nos "pointures" devrait te donner signe de vie sans trop tarder. :idea: :geek:
Ordi 1 (2012, bien rajeuni par doublement de la mémoire :idea: )
Desktop : assemblé - Dist : Mint 21.3-cinnamon (sur SSD 'sdb5') - Kernel : 6.8.0-107-generic x86_64
2DD : SSD Kingston 223Go + WD10EZEX-00BN5A0 931Go - CPU : Quad Core/Intel Core i5-4690K
RAM : DDR3 16Go - Carte mère : GigaBytes 4.81M DS2xx
Carte graphique Intel Xeon E3-1200 v3/4th Gen
Tri boot (sur SSD) Debian 13.6 ('sdb6') -Peppermint.11 ('sdb7')
Avatar du membre
tyrry
modérateur
Messages : 6852
Enregistré le : mar. 21 juil. 2015 07:42
Localisation : à l'ouest

Re: Installation clavier Logitech

Message par tyrry »

Slt,
heu et pourquoi tu fait pas simplement

Code : Tout sélectionner

sudo apt install g810-led
@+
Image
Pat-Tar-89
Messages : 101
Enregistré le : jeu. 31 mars 2022 19:12

Re: Installation clavier Logitech

Message par Pat-Tar-89 »

Bonsoir,
Merci pour vos premières réponses.
Mais le "sudo apt ... " a déjà été fait et ça ne produit rien sur mon clavier qui reste invariablement éteint.
À suivre ...
Ordinateur de bureau :
OS : LMDE 7 Gigi
CPU : Intel© Core™ i7-7700K CPU @ 4.20GHz × 4
RAM : 32 Go
Cartes graphiques : Intel Corporation HD Graphics 630 + NVIDIA Corporation GP106GL [Quadro P2000]
Affichage : 1920 x 1080 - moniteur VIEWSONIC 27"
Son : HDA-Intel
Stockage : SSD Samsung 870 1To + SSD Samsung 500 Go
Avatar du membre
tyrry
modérateur
Messages : 6852
Enregistré le : mar. 21 juil. 2015 07:42
Localisation : à l'ouest

Re: Installation clavier Logitech

Message par tyrry »

Et ça dit quoi si tu lance g810-led en terminal ?
@+
Image
Pat-Tar-89
Messages : 101
Enregistré le : jeu. 31 mars 2022 19:12

Re: Installation clavier Logitech

Message par Pat-Tar-89 »

Bonjour,
En fait, j'ai fait un petit script "d'allumage" des diodes clavier. Et ... ça fonctionne !
Allez savoir.
Je le lance au démarrage et mon clavier s'illumine. C'est miraculeux.
Du coup, je me demande à quoi sert toute cette procédure qui ne fonctionne pas.
J'attends encore un peu et indiquerai "résolu" dans quelques temps, car ça me convient comme ça.
Bonne journée à tous.
Ordinateur de bureau :
OS : LMDE 7 Gigi
CPU : Intel© Core™ i7-7700K CPU @ 4.20GHz × 4
RAM : 32 Go
Cartes graphiques : Intel Corporation HD Graphics 630 + NVIDIA Corporation GP106GL [Quadro P2000]
Affichage : 1920 x 1080 - moniteur VIEWSONIC 27"
Son : HDA-Intel
Stockage : SSD Samsung 870 1To + SSD Samsung 500 Go
Pat-Tar-89
Messages : 101
Enregistré le : jeu. 31 mars 2022 19:12

Re: Installation clavier Logitech

Message par Pat-Tar-89 »

Re-Bonjour,
Et pour la commande "g810-led", ça me liste toutes les possibilités de celle-ci du type --help.
Ordinateur de bureau :
OS : LMDE 7 Gigi
CPU : Intel© Core™ i7-7700K CPU @ 4.20GHz × 4
RAM : 32 Go
Cartes graphiques : Intel Corporation HD Graphics 630 + NVIDIA Corporation GP106GL [Quadro P2000]
Affichage : 1920 x 1080 - moniteur VIEWSONIC 27"
Son : HDA-Intel
Stockage : SSD Samsung 870 1To + SSD Samsung 500 Go
Avatar du membre
serged
Messages : 1132
Enregistré le : jeu. 16 juil. 2015 07:59
Localisation : Montrouge (France)

Re: Installation clavier Logitech

Message par serged »

Qu'est-ce qu'il a ce clavier de spécial ? En général les claviers sont "plug'n'play" et il n' y a rien à faire, sinon les brancher...

Pour apparier le clavier avec le récepteur, il y a l'utilitaire Solaar

Sinon RTFM : https://doc.ubuntu-fr.org/logitech
LinuxMint Virginia Cinnamon et d'autres machines en MATE, XFCE... 20.x , 21.x ou 19.x
Tour : Asus F2A55 / AMD A8-5600K APU 3,6GHz / RAM 17Go / SSD 4To /Nvidia GeForce GT610 / LM21.3 Cinnamon
Portable : LDLC Mercure MH :Intel® Pentium(R) Silver N5030 CPU @ 1.10GHz × 4/RAM 8Go / Intel HD graphics 500 i915 / ) - LM22.3 MATE (sur HDD)
Pat-Tar-89
Messages : 101
Enregistré le : jeu. 31 mars 2022 19:12

Re: Installation clavier Logitech

Message par Pat-Tar-89 »

Bonjour,
En réponse à Serged, le clavier "fonctionne". Mais ses attributs propres de rétroéclairage notamment, non. Cela si on le laisse agir uniquement le plug and play.
Il lui faut donc des commandes particulières, mais après avoir installé le paquet g810-led.
De plus, pour ce dernier, une procédure est indiquée sur certains sites comme celui que j'ai mentionné dans un précédent post. Et ça coince au moment d'installer avec la commande make bin.
J'ai résolu sans cela mais je voulais savoir à quoi correspondaient les codes d'erreurs renvoyés lors de mon installation avortée.
Voili, voila.
Bonne continuation à tous.
Ordinateur de bureau :
OS : LMDE 7 Gigi
CPU : Intel© Core™ i7-7700K CPU @ 4.20GHz × 4
RAM : 32 Go
Cartes graphiques : Intel Corporation HD Graphics 630 + NVIDIA Corporation GP106GL [Quadro P2000]
Affichage : 1920 x 1080 - moniteur VIEWSONIC 27"
Son : HDA-Intel
Stockage : SSD Samsung 870 1To + SSD Samsung 500 Go
Répondre