Modifications

Sauter à la navigation Sauter à la recherche
Ligne 4 : Ligne 4 :  
{{traduction}}
 
{{traduction}}
   −
With the Raspberry Pi 3 we saw the introduction of built in WIFI! Yes we no longer need USB dongles to connect. The WIFI chip on the Pi 3 is a BCM43438 which is rated up to Wireless N which gives us plenty of bandwidth to stream video over WIFI.
+
Le Raspberry Pi 3 dispose maintenant d'une WIFI intégré! Oui, plus besoin d'ajouter un clé WiFi pour se connecter sur votre Box. La puce WIFI sur le Raspberry Pi 3 est un BCM43438 prévu pour les réseaux sans fil de type N, ce qui offre une large bande passante pour du streaming vidéo via WIFI.
    
=== Connexion sur le WiFi ===
 
=== Connexion sur le WiFi ===
 
{{ambox|text=Cette étape est optionnelle et peut être ignoré si vous utilisez la connexion filaire via Ethernet}}
 
{{ambox|text=Cette étape est optionnelle et peut être ignoré si vous utilisez la connexion filaire via Ethernet}}
   −
Connecting to WIFI from the terminal is rather easy, but looks rather scary!
+
Se connecter en WIFI depuis le terminal est plutôt facile, même si cela peut paraître intimidant!
 
   
   
 
   
Firstly we need to find out the name of our router, the SSID.
+
Pour commencer, nous allons Firstly we need to find out the name of our router, the SSID.
   −
In a terminal type 
+
In a terminal typez la commande suivante:
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
Ligne 20 : Ligne 19 :  
</syntaxhighlight>
 
</syntaxhighlight>
   −
Look for the name of your router. It should look something like this, replace MY_ROUTER with the name of your router.
+
Cherchez après le nom de votre routeur/box. Suivant les fournisseurs de service internet, le nom du routeur peut être très variable mais disons qu'il contient l'identification "MON_ROUTEUR".
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
ESSID:"MY_ROUTER"
+
ESSID:"MON_ROUTEUR"
 
</syntaxhighlight>
 
</syntaxhighlight>
   −
Next look through the text for your router and see if you can spot a line similar to this.
+
Ensuite, regardez le texte présent sur votre routeur et voyez si vous pouvez identifier une ligne similaire.
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
Ligne 32 : Ligne 31 :  
</syntaxhighlight>
 
</syntaxhighlight>
   −
So now we need to add our network details to a file called wpa-supplicant, in the terminal type.
+
Maintenant, nous allons ajouter les détails de notre réseau dans un fichier appelé {{fname|wpa-supplicant}}.
 +
 
 +
Tapez la commande suivante dans un terminal:
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
Ligne 38 : Ligne 39 :  
</syntaxhighlight>
 
</syntaxhighlight>
   −
In the text editor, navigate to the bottom of the text and add the following. Obviously change the ssid and psk to match the name of your router and the password you use to get online.
+
Dans l'éditeur de texte nano, navigué en bas du texte et ajouter l'information ci-dessous.  
 +
 
 +
Vous devez, bien évidemment, remplacer le '''ssid''' et le '''psk''' pour qu'il correspondent au nom et au mot de passe de votre routeur. Il sera impossible d'établir une connexion WiFi si ces informations ne sont pas correctes.
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
 
network={   
 
network={   
   ssid="MY_ROUTER"   
+
   ssid="MON_ROUTEYR"   
   psk="THE PASSWORD YOUUSE TO CONNECT TO THE ROUTER"   
+
   psk="LE MOT DE PASSE A UTILISER POUR SE CONNECTER SUR LE ROUTEIR"   
 
}   
 
}   
 
</syntaxhighlight>
 
</syntaxhighlight>
   −
Save your work by pressing CTRL + O then press Enter. Next Press CTRL + X to exit the editor.
+
Sauvez vos modifications en pressant CTRL + O puis Enter (retour clavier). Pressez ensuite CTRL + X pour sortir de l'éditeur.
 
     −
The changes should be automatic, but it is prudent to make sure by typing the next two lines one after another.
+
La modification devrait être automatique mais il est plus prudent de s'assurer que la modification soit pris en compte en saisissant les lignes suivantes.
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
Ligne 57 : Ligne 59 :  
</syntaxhighlight>
 
</syntaxhighlight>
   −
You can check your IP address by typing
+
Vous pouvez vérifier votre adresse IP en exécutant la commande suivante
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
29 918

modifications

Menu de navigation