Modifications

Sauter à la navigation Sauter à la recherche
Ligne 8 : Ligne 8 :  
# Démarrez votre Pi
 
# Démarrez votre Pi
 
# Connectez-vous sur votre Pi
 
# Connectez-vous sur votre Pi
** Soit en utilisant un moniteur HDMI + clavier + souris
+
## Soit en utilisant un moniteur HDMI + clavier + souris
** Soit en utilisant une connexion ssh (Secure Shell) pour vous connecter à distance.<br />Voyez [[PI-SSH|ce tutoriel SSH]]
+
## Soit en utilisant une connexion ssh (Secure Shell) pour vous connecter à distance.<br />Voyez [[PI-SSH|ce tutoriel SSH]]
# <font color="red">'''La première chose à faire est d'étendre la partition principale'''</font> pour qu'elle utilise tout l'espace disponible sur la carte.<br />[[PI-Etendre-Partition|Voyez notre tutoriel étendre la partition]]
+
 
 +
=== Optimisez le système d'exploitation ===
 +
<font color="red">'''La première chose à faire est d'étendre la partition principale'''</font> pour qu'elle utilise tout l'espace disponible sur la carte.<br />[[PI-Etendre-Partition|Voyez notre tutoriel étendre la partition]]
 +
 
 +
[[Fichier:RASP-PLEX-MEDIA-SERVER-Installation-00.jpg]]
 +
 
 +
Passez ensuite par les options avancées pour réduire la mémoire allouée au GPU (processeur graphique) au minimum... soit 16Mb.
 +
 
 +
[[Fichier:RASP-PLEX-MEDIA-SERVER-Installation-01a.jpg]]
 +
 
 +
[[Fichier:RASP-PLEX-MEDIA-SERVER-Installation-01.jpg]]
 +
 
 +
Désactiver le démarrage du bureau graphique pour économiser du temps de chargement et les ressources du système.
 +
 
 +
[[Fichier:RASP-PLEX-MEDIA-SERVER-Installation-02a.jpg]]
 +
 
 +
Sélectionner le démarrage en ligne de commande (avec login)
 +
 
 +
[[Fichier:RASP-PLEX-MEDIA-SERVER-Installation-02b.jpg]]
 +
 
 +
== Suggestion ==
 +
Si vous comptez faire l'installation de votre serveur Plex Media via SSH (Secure Shell) il serait peut être opportun de modifier le nom de votre machine Raspberry-Pi pour qu'elle s'annonce avec un nom différent de "raspberrypi" sur votre réseau local.
 +
 
 +
Cela sera d'autant plus pertinent si vous avez plusieurs Raspberry-Pi sur votre réseaux (Box).
 +
 
 +
Nous avons changé le ''hostname'' de notre Raspberry Pi de "raspberrypi" vers "plexserver".
 +
 
 +
Voyez notre tutoriel [[Rasp-Config-Hostname|Modifier le hostname]].
    
== Installation de Plex Media Server ==
 
== Installation de Plex Media Server ==
{{traduction}}
+
Notre but est d'installer les logiciels nécessaires sur note Pi.
   −
Our next goal is to install the software necessary for our Pi.
+
Pour commencer, nous mettons à jour la liste des logiciels disponibles puis nous faisons une mise à jour du logiciel (''upgrade'' en anglais). Nous utilisons l'opérateur && pour joindre deux lignes de commande ensemble. La première commande fait une mise-à-jour de la liste des logiciels disponibles dans les dépôts et si cela se passe bien, la deuxième partie de la commande (après le &&) démarre la mise-à-jour des logiciels.
   −
First we update our list of available software and then upgrade the software. We will use an operator to join two commands together. The first command updates the list of software and if that completes successfully, then the last part of the sequence, a software upgrade is started and any suggested files are auto installed.
+
Tapez la commande suivante dans un terminal.
 
  −
In the terminal type.
      
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
Ligne 25 : Ligne 50 :  
</syntaxhighlight>
 
</syntaxhighlight>
   −
Now we are going to upgrade the distribution, Raspbian, software. To ensure that our operating system is fully up to date. In the terminal type.
+
Nous allons maintenant faire un mise-à-jour de la distribution Raspbian pour nous assurer que le système d'exploitation soit totalement à jour. Tapez la commande suivante dans un terminal.
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
Ligne 31 : Ligne 56 :  
</syntaxhighlight>
 
</syntaxhighlight>
   −
Once completed and the terminal is returned to you enter the next command to install the HTTPS transport package to enable access to HTTPS content over the Internet.
+
Une fois terminée et de retour dans la session terminal, vous pouvez saisir la commande suivante pour installer les paquets supportant la communication HTTPS. Cela rendra possible l'accès HTTPS (sécurisé) via Internet.
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
Ligne 37 : Ligne 62 :  
</syntaxhighlight>
 
</syntaxhighlight>
   −
Next we shall download a key that will authenticate our downloads to ensure they are safe
+
[[Fichier:RASP-PLEX-MEDIA-SERVER-Installation-07.jpg]]
 +
 
 +
Ensuite, nous allons télécharger une partie essentielle qui authentifiera nos futurs téléchargement (et confirmera auprès du système que le contenu est sein)
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
Ligne 43 : Ligne 70 :  
</syntaxhighlight>
 
</syntaxhighlight>
   −
With the key downloaded we now add a new repository to our list, this repository is provided by dev2day.de who has worked on the packages that will power our Plex install.
+
Avec la clé téléchargée, nous ajoutons un nouveau dépôt à la liste. Ce dépôt est maintenu chez {{fname|dev2day.de}} qui a travaillé sur les paquets qui feront fonctionner notre installation Plex.
 +
 
 +
[[Fichier:RASP-PLEX-MEDIA-SERVER-Installation-08.jpg]]
   −
In the terminal type
+
Tapez la commande suivante dans un terminal
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
Ligne 51 : Ligne 80 :  
</syntaxhighlight>
 
</syntaxhighlight>
   −
We now update our list again, to ensure that we now have the latest updates for the Plex Media Server.
+
Nous refaisons une mise-à-jour de la liste pour qu'elle contienne l'ajout des paquets de {{fname|dev2day.de}} nécessaire pour l'installation de Plex Media Server.
 +
 
 +
[[Fichier:RASP-PLEX-MEDIA-SERVER-Installation-09.jpg]]
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
Ligne 57 : Ligne 88 :  
</syntaxhighlight>
 
</syntaxhighlight>
   −
Lastly we install the Plex Media Server software.
+
Pour finir, nous installons le logiciel Plex Media Server.
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
Ligne 63 : Ligne 94 :  
</syntaxhighlight>
 
</syntaxhighlight>
   −
The install will only take a few minutes and once completed the Plex Media Server will automatically start as a background service on your Pi.
+
[[Fichier:RASP-PLEX-MEDIA-SERVER-Installation-10.jpg]]
 +
 
 +
Cela ne prendra que quelques minutes et une fois complété le serveur Plex Media démarrera automatiquement en tâche de fond (arrière plan) sur votre Pi.
   −
At this point it is worth rebooting your Raspberry Pi 3 as proceeding without a reboot caused a bug when trying to configure the Plex server via the browser.
+
A ce point du tutoriel, il est nécessaire de redémarrer votre Raspberry Pi 3. Si vous ne le faites pas, vous rencontrerez des problèmes durant la configuration du Serveur Plex via votre navigateur Internet... problèmes qui provoquerons des bugs dans le fonctionnement du serveur Plex Media.
   −
To reboot in the terminal type.
+
Pour rebooter, saisissez la commande suivante dans un terminal.
    
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
29 917

modifications

Menu de navigation