Différences

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

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
documentation:materiel:raspberry:installation [2023/03/13 09:09] baudryjdocumentation:materiel:raspberry:installation [2023/12/04 09:53] (Version actuelle) – [userconf] baudryj
Ligne 1: Ligne 1:
-====== Installation raspberry pi ======+====== Installation d'un nouveau module ======
  
 {{ :documentation:materiel:raspberry:pasted:20230313-090854.png?0x200 }} {{ :documentation:materiel:raspberry:pasted:20230313-090854.png?0x200 }}
Ligne 42: Ligne 42:
 </code> </code>
  
 +===== userconf =====
 +
 + - créer un fichier userconf (icaging)
 +
 + - générer un mot de passe :
 +
 +<code>
 +echo 'yourpassword' | openssl passwd -6 -stdin
 +</code> 
 +
 +<code>
 +echo 'icaging1234' | openssl passwd -6 -stdin
 +$6$iVsE2XacZgO5w6GX$E25CeM5q0.MAZ9SUsllVqgE9f8avWJ4MPPHHyWg7ie9rdTAq3LUzbWNehHKxszCpK4Yx2EWR5LTt305Uf3g2H/
 +</code>
 +
 +<code>
 +echo 'icaging1234' | openssl passwd -6 -stdin
 +$6$iVsE2XacZgO5w6GX$E25CeM5q0.MAZ9SUsllVqgE9f8avWJ4MPPHHyWg7ie9rdTAq3LUzbWNehHKxszCpK4Yx2EWR5LTt305Uf3g2H/
 +</code> 
 +
 +===== Activer le wifi =====
 +
 + - Créer un fichier sur la parition boot : wpa_supplicant.conf
 +
 +<code>
 +country=FR
 +ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
 +update_config=1
 +
 +network={
 +scan_ssid=1
 +ssid="icaging"
 +psk="icaging$!"
 +}
 +</code>
Haut de page