[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

no way to compare when less than two revisions

Différences

Ci-dessous, les différences entre deux révisions de la page.


fr:howtos:general_admin:udev_rules [2020/12/01 10:38 (UTC)] (Version actuelle) – créée desiderius
Ligne 1: Ligne 1:
 +<!-- Add your text below. We strongly advise to start with a Headline (see button bar above). -->
 +====== (Pratique ) Règles udev  ======
  
 +
 +====== chmod ttyUSB and ttyACM ======
 +
 +( Utile pour faire tourner des choses comme l'IDE d'Arduino en tant qu'utilisateur normal ) \\
 +
 +1) Créer le fichier de règles udev 
 +
 +Connecté sous l'identité  root:
 +
 +vi /etc/udev/rules.d/50-usb.rules //et ajoutez une de ces lignes // \\
 +Autoriser l'accès à tout le monde ( par très sécurisé)  \\
 +<code>KERNEL=="ttyUSB[0-9]*",MODE="0666"
 +KERNEL=="ttyACM[0-9]*",MODE="0666"</code>
 +
 +Autoriser l'accès par les membres du groupe  'wheel' \\
 +<code>KERNEL=="ttyUSB[0-9]*",GROUP="wheel",MODE="0660"
 +KERNEL=="ttyACM[0-9]*",GROUP="wheel",MODE="0660"</code>
 +
 +
 +====== Sources ======
 +<!-- If you are copying information from another source, then specify that source -->
 +<!-- * Original source: [[http://some.website.org/some/page.html]] -->
 +<!-- Authors are allowed to give credit to themselves! -->
 +  * Originally written by [[wiki:user:arfon | arfon]] 
 +  * Contributions by [[wiki:user:desiderius | desiderius]] -->
 +
 +<!-- Please do not modify anything below, except adding new tags.-->
 +<!-- You must remove the tag-word "template" below before saving your new page -->
 +{{tag>howtos software udev author_arfon}}
 fr:howtos:general_admin:udev_rules ()