Bonjour,
Ayant acquis dernièrement du matériel arduino,
je souhaiterais le faire marcher sur ma machine (pardus 2009) !
Celui ci utilise pour etre programmé un logiciel dérivé de "processing", qui est développé en java.
Or pour acceder aux porte séries (ici un usb émulé série sans problème) java utilise la bibliothèque
RXTX.
Lors du chargement du programme, il est indiqué ceci :
please see: How can I use Lock Files with rxtx? in INSTALL
Après recherche, j'ai trouvé qu'il fallait jouer avec les droit sur UUCP (Unix to Unix Copie Protocol)
Mais.cette utilisateur n'existe pas sous ma pardus (pas listé dans les utilisateur système.).
Qqun aurait-il une idée ? j'ai bien pensé a installer UUCP, mais je ne sais pas comment faire (où le trouver !)
Les autres pré requis sont eux ok. Merci.
Merci d'avance
Liens utile :
http://www.arduino.cc/playground/Learning/LinuxVoila ce qui m'a permis de faire le liens RXTX <=> UUCP
Rxtx has support for lock files on Linux only. It may work on other
platforms but read the source before blindly trying it.
Before you use lock files you need to do one of two things:
1. Be the root or uucp user on your machine whenever you use rxtx
2. add the specific user that needs to use rxtx to the group
uucp.
(preferred)
To add a user to the uucp group edit /etc/group as root and change the
following:
uucp::14:uucp
to something like:
uucp::14:uucp,jarvi
In this case jarvi is the login name for the user that needs to use lock
files.
Do not change the number (14). Whatever is in your group file is correct.
User jarvi in this case can now use rxtx with lock files.