etc - Versione stampabile +- Forum Informatica Libera (https://www.ergosumracalmuto.org/informaticalibera/forum) +-- Forum: Sistemi Operativi (https://www.ergosumracalmuto.org/informaticalibera/forum/forumdisplay.php?fid=5) +--- Forum: Linux (https://www.ergosumracalmuto.org/informaticalibera/forum/forumdisplay.php?fid=6) +--- Discussione: etc (/showthread.php?tid=1798) |
etc - rob-1 - 19/12/2022 salve a tutti sto usando un dispositivo elettronico che sii chiama digispark un tipo di arduino e lo vorrei usare con ubuntu 18.o4, ecco il link al urorial che ho seguito https://www.youtube.com/watch?v=i4HgjFY974s vado bene fin al minuto 4.29 poi mi da errore in window 10 ho provato e basta istallareil file .exe e fila tutto liscio, invece con linux ci sono sempre rogne!! dovrei mettere il file in /etc/udev/rules.d/49-micronucleus.rules di seguito le istruzioni Hello! You must place the udev rules below into a file named /etc/udev/rules.d/49-micronucleus.rules : # UDEV Rules for Micronucleus boards including the Digispark. # This file must be placed at: # # /etc/udev/rules.d/49-micronucleus.rules (preferred location) # or # /lib/udev/rules.d/49-micronucleus.rules (req'd on some broken systems) # # After this file is copied, physically unplug and reconnect the board. # SUBSYSTEMS=="usb", ATTRS{idVendor}=="16d0", ATTRS{idProduct}=="0753", MODE:="0666" KERNEL=="ttyACM*", ATTRS{idVendor}=="16d0", ATTRS{idProduct}=="0753", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1" # # If you share your linux system with other users, or just don't like the # idea of write permission for everybody, you can replace MODE:="0666" with # OWNER:="yourusername" to create the device owned by you, or with # GROUP:="somegroupname" and mange access using standard unix groups. ho cercato su home aprendo con crtl h i file nascosti nella home, ma non trovo etc. dove si trova etc? grazie a tutti colgo l'occasione per fare gli auguri di buone feste e speriamo felice anno nuovo. RE: etc - m3nhir - 19/12/2022 "etc" è una sottodirectory della directory di sistema "/" il suo percorso è /etc/. per via grafica apri il gestore file apri la cartella "radice" e trovi /etc insieme alle altre directory come /home , /usr/ /var etc. se invece vuoi usare il terminale, in quest'ultimo digiti Codice: cd /etc RE: etc - rob-1 - 20/12/2022 grazie per l'aiuto, ma purtroppo ho trovato questo testo per add udev ruleses, non ho capito cosa devo fare. cosa si ignifica create a text file called 49-miconucleus.rules in /etc/udev/rules.d/ come si fa? se si spiegassero con esempi passo passo farebbero una cosa gradita. 4. Add udev Rules to the System To be able to program the Digispark board from the Arduino IDE in Linux, udev rules must be added to the system. This is done by creating a file in /etc/udev/rules.d/ that contains the rules. Create a text file called 49-micronucleus.rules in /etc/udev/rules.d/ and add the following rules to it. # UDEV Rules for Micronucleus boards including the Digispark. # This file must be placed at:meglio!! # # /etc/udev/rules.d/49-micronucleus.rules (preferred location) # or # /lib/udev/rules.d/49-micronucleus.rules (req'd on some broken systems) # # After this file is copied, physically unplug and reconnect the board. # SUBSYSTEMS=="usb", ATTRS{idVendor}=="16d0", ATTRS{idProduct}=="0753", MODE:="0666" KERNEL=="ttyACM*", ATTRS{idVendor}=="16d0", ATTRS{idProduct}=="0753", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1" # # If you share your linux system with other users, or just don't like the # idea of write permission for everybody, you can replace MODE:="0666" with # OWNER:="yourusername" to create the device owned by you, or with # GROUP:="somegroupname" and mange access using standard unix groups. In order to be able to create this file in the file system, you will need root permission. This can be done by opening a terminal window and entering: sudo nano /etc/udev/rules.d/49-micronucleus.rules The above line opens a new file called 49-micronucleus.rules with root permission from /etc/udev/rules.d/ in the nano command line text editor. After running the above line to start the nano editor, copy all of the udev rules code from the listing above and paste them into the nano editor using the keyboard combination Ctrl + Shift + V. In the nano editor, press Ctrl + O and then press the Enter key save the file and then Ctrl + X to exit the application. Finally enter the following in the terminal window to reload the udev rules. sudo udevadm control --reload-rules RE: etc - footstep11 - 20/12/2022 Le istruzioni passo-passo ti vengono date: Citazione:In order to be able to create this file in the file system, you will need root permission. This can be done by opening a terminal window and entering: Qui un mini esempio sull'uso di nano: https://www.wikihow.it/Creare-e-Modificare-i-File-di-Testo-su-Linux-Usando-il-Terminale Ciao, Mauro RE: etc - Frank - 05/02/2023 "create a text file called in /etc/udev/rules.d/" Ciao, apri il terminale (che lascerai aperto fino alla fine delle operazioni) e scrivi: Codice: sudo touch 49-micronucleus.rules Una volta che si è aperto il file che sara vuoto ci incolli questo testo: Codice: # UDEV Rules for Micronucleus boards including the Digispark. Salvalo e chiudilo (attendi che il terminale finisca e torni operativo), poi da terminale dai: Codice: sudo cp 49-micronucleus.rules /etc/udev/rules.d/49-micronucleus.rules Quando usi comandi con sudo ti verra chiesta la password, inseriscila e dai invio ogni volta che ti sara chiesta. Questo step è fatto se segui queste istruzioni o perlomeno è cio che la guida dice di fare. Sudo devi usarlo perche ti viene chiesto che il file sia di proprieta root ed anche per metterlo nella cartella si aha bisogno di permessi di root. Ciao PS: Una volta fatto tutto puoi cancellare il file sempre da terminale dando il comando: Codice: sudo rm 49-micronucleus.rules |